theopendictionary 0.10.0__tar.gz → 1.0.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.
Potentially problematic release.
This version of theopendictionary might be problematic. Click here for more details.
- theopendictionary-1.0.0/Cargo.lock +4146 -0
- theopendictionary-1.0.0/Cargo.toml +17 -0
- theopendictionary-1.0.0/PKG-INFO +7 -0
- theopendictionary-1.0.0/lib/CHANGELOG.md +137 -0
- theopendictionary-1.0.0/lib/Cargo.toml +58 -0
- theopendictionary-1.0.0/lib/report.json +5 -0
- theopendictionary-1.0.0/lib/src/config/aliases.rs +79 -0
- theopendictionary-1.0.0/lib/src/config/config.rs +35 -0
- theopendictionary-1.0.0/lib/src/config/mod.rs +24 -0
- theopendictionary-1.0.0/lib/src/core/constants.rs +8 -0
- theopendictionary-1.0.0/lib/src/core/lexicon.rs +20 -0
- theopendictionary-1.0.0/lib/src/core/lookup.rs +173 -0
- theopendictionary-1.0.0/lib/src/core/merge.rs +17 -0
- theopendictionary-1.0.0/lib/src/core/mod.rs +15 -0
- theopendictionary-1.0.0/lib/src/core/preview.rs +69 -0
- theopendictionary-1.0.0/lib/src/core/read.rs +136 -0
- theopendictionary-1.0.0/lib/src/core/semver.rs +72 -0
- theopendictionary-1.0.0/lib/src/core/split.rs +69 -0
- theopendictionary-1.0.0/lib/src/core/write.rs +117 -0
- theopendictionary-1.0.0/lib/src/error.rs +66 -0
- theopendictionary-1.0.0/lib/src/ext.rs +17 -0
- theopendictionary-1.0.0/lib/src/fs.rs +11 -0
- theopendictionary-1.0.0/lib/src/json/definition.rs +37 -0
- theopendictionary-1.0.0/lib/src/json/dictionary.rs +36 -0
- theopendictionary-1.0.0/lib/src/json/entry.rs +41 -0
- theopendictionary-1.0.0/lib/src/json/etymology.rs +46 -0
- theopendictionary-1.0.0/lib/src/json/group.rs +35 -0
- theopendictionary-1.0.0/lib/src/json/json.rs +88 -0
- theopendictionary-1.0.0/lib/src/json/mod.rs +19 -0
- theopendictionary-1.0.0/lib/src/json/note.rs +30 -0
- theopendictionary-1.0.0/lib/src/json/sense.rs +48 -0
- theopendictionary-1.0.0/lib/src/json/utils.rs +14 -0
- theopendictionary-1.0.0/lib/src/lib.rs +27 -0
- theopendictionary-1.0.0/lib/src/lz4.rs +23 -0
- theopendictionary-1.0.0/lib/src/md.rs +121 -0
- theopendictionary-1.0.0/lib/src/models/definition.rs +20 -0
- theopendictionary-1.0.0/lib/src/models/dictionary.rs +82 -0
- theopendictionary-1.0.0/lib/src/models/entry.rs +35 -0
- theopendictionary-1.0.0/lib/src/models/etymology.rs +58 -0
- theopendictionary-1.0.0/lib/src/models/example.rs +8 -0
- theopendictionary-1.0.0/lib/src/models/group.rs +17 -0
- theopendictionary-1.0.0/lib/src/models/id.rs +50 -0
- theopendictionary-1.0.0/lib/src/models/mdstring.rs +123 -0
- theopendictionary-1.0.0/lib/src/models/mod.rs +27 -0
- theopendictionary-1.0.0/lib/src/models/note.rs +17 -0
- theopendictionary-1.0.0/lib/src/models/pos.rs +290 -0
- theopendictionary-1.0.0/lib/src/models/sense.rs +23 -0
- theopendictionary-1.0.0/lib/src/models/serializable.rs +47 -0
- theopendictionary-1.0.0/lib/src/search/charabia.rs +118 -0
- theopendictionary-1.0.0/lib/src/search/constants.rs +22 -0
- theopendictionary-1.0.0/lib/src/search/index.rs +133 -0
- theopendictionary-1.0.0/lib/src/search/mod.rs +13 -0
- theopendictionary-1.0.0/lib/src/search/schema.rs +28 -0
- theopendictionary-1.0.0/lib/src/search/search.rs +134 -0
- theopendictionary-1.0.0/lib/src/sql/definitions.rs +112 -0
- theopendictionary-1.0.0/lib/src/sql/dictionaries.rs +49 -0
- theopendictionary-1.0.0/lib/src/sql/entries.rs +56 -0
- theopendictionary-1.0.0/lib/src/sql/etymologies.rs +73 -0
- theopendictionary-1.0.0/lib/src/sql/examples.rs +93 -0
- theopendictionary-1.0.0/lib/src/sql/groups.rs +61 -0
- theopendictionary-1.0.0/lib/src/sql/mod.rs +13 -0
- theopendictionary-1.0.0/lib/src/sql/notes.rs +60 -0
- theopendictionary-1.0.0/lib/src/sql/senses.rs +66 -0
- theopendictionary-1.0.0/lib/src/sql/sql.rs +40 -0
- theopendictionary-1.0.0/lib/src/sql/utils.rs +60 -0
- theopendictionary-1.0.0/lib/src/xml.rs +33 -0
- theopendictionary-1.0.0/lib/tasks.toml +8 -0
- theopendictionary-1.0.0/pyproject.toml +17 -0
- theopendictionary-1.0.0/python/.gitignore +72 -0
- theopendictionary-1.0.0/python/CHANGELOG.md +23 -0
- theopendictionary-1.0.0/python/Cargo.toml +14 -0
- theopendictionary-1.0.0/python/requirements.txt +5 -0
- theopendictionary-1.0.0/python/setup.cfg +2 -0
- theopendictionary-1.0.0/python/src/dictionary.rs +236 -0
- theopendictionary-1.0.0/python/src/lib.rs +12 -0
- theopendictionary-1.0.0/python/src/types/definition.rs +33 -0
- theopendictionary-1.0.0/python/src/types/entry.rs +47 -0
- theopendictionary-1.0.0/python/src/types/etymology.rs +53 -0
- theopendictionary-1.0.0/python/src/types/example.rs +19 -0
- theopendictionary-1.0.0/python/src/types/group.rs +30 -0
- theopendictionary-1.0.0/python/src/types/mdstring.rs +60 -0
- theopendictionary-1.0.0/python/src/types/mod.rs +12 -0
- theopendictionary-1.0.0/python/src/types/note.rs +30 -0
- theopendictionary-1.0.0/python/src/types/sense.rs +32 -0
- theopendictionary-1.0.0/python/src/utils.rs +6 -0
- theopendictionary-1.0.0/python/tasks.toml +32 -0
- theopendictionary-1.0.0/python/tests/__snapshots__/test_lookup.ambr +27 -0
- theopendictionary-1.0.0/python/tests/test_lookup.py +107 -0
- theopendictionary-0.10.0/PKG-INFO +0 -13
- theopendictionary-0.10.0/pyproject.toml +0 -20
- theopendictionary-0.10.0/theopendictionary/__init__.py +0 -1
- theopendictionary-0.10.0/theopendictionary/odict.py +0 -65
- theopendictionary-0.10.0/theopendictionary/test_odict.py +0 -119
|
@@ -0,0 +1,4146 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "actix-codec"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"bitflags 2.6.0",
|
|
12
|
+
"bytes",
|
|
13
|
+
"futures-core",
|
|
14
|
+
"futures-sink",
|
|
15
|
+
"memchr",
|
|
16
|
+
"pin-project-lite",
|
|
17
|
+
"tokio",
|
|
18
|
+
"tokio-util",
|
|
19
|
+
"tracing",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "actix-http"
|
|
24
|
+
version = "3.9.0"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"actix-codec",
|
|
29
|
+
"actix-rt",
|
|
30
|
+
"actix-service",
|
|
31
|
+
"actix-utils",
|
|
32
|
+
"ahash",
|
|
33
|
+
"base64",
|
|
34
|
+
"bitflags 2.6.0",
|
|
35
|
+
"brotli",
|
|
36
|
+
"bytes",
|
|
37
|
+
"bytestring",
|
|
38
|
+
"derive_more",
|
|
39
|
+
"encoding_rs",
|
|
40
|
+
"flate2",
|
|
41
|
+
"futures-core",
|
|
42
|
+
"h2",
|
|
43
|
+
"http",
|
|
44
|
+
"httparse",
|
|
45
|
+
"httpdate",
|
|
46
|
+
"itoa",
|
|
47
|
+
"language-tags",
|
|
48
|
+
"local-channel",
|
|
49
|
+
"mime",
|
|
50
|
+
"percent-encoding",
|
|
51
|
+
"pin-project-lite",
|
|
52
|
+
"rand",
|
|
53
|
+
"sha1",
|
|
54
|
+
"smallvec",
|
|
55
|
+
"tokio",
|
|
56
|
+
"tokio-util",
|
|
57
|
+
"tracing",
|
|
58
|
+
"zstd",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "actix-macros"
|
|
63
|
+
version = "0.2.4"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"quote",
|
|
68
|
+
"syn 2.0.87",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "actix-router"
|
|
73
|
+
version = "0.5.3"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"bytestring",
|
|
78
|
+
"cfg-if",
|
|
79
|
+
"http",
|
|
80
|
+
"regex",
|
|
81
|
+
"regex-lite",
|
|
82
|
+
"serde",
|
|
83
|
+
"tracing",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "actix-rt"
|
|
88
|
+
version = "2.10.0"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"futures-core",
|
|
93
|
+
"tokio",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "actix-server"
|
|
98
|
+
version = "2.5.0"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"actix-rt",
|
|
103
|
+
"actix-service",
|
|
104
|
+
"actix-utils",
|
|
105
|
+
"futures-core",
|
|
106
|
+
"futures-util",
|
|
107
|
+
"mio",
|
|
108
|
+
"socket2",
|
|
109
|
+
"tokio",
|
|
110
|
+
"tracing",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "actix-service"
|
|
115
|
+
version = "2.0.2"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"futures-core",
|
|
120
|
+
"paste",
|
|
121
|
+
"pin-project-lite",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "actix-utils"
|
|
126
|
+
version = "3.0.1"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"local-waker",
|
|
131
|
+
"pin-project-lite",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "actix-web"
|
|
136
|
+
version = "4.9.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"actix-codec",
|
|
141
|
+
"actix-http",
|
|
142
|
+
"actix-macros",
|
|
143
|
+
"actix-router",
|
|
144
|
+
"actix-rt",
|
|
145
|
+
"actix-server",
|
|
146
|
+
"actix-service",
|
|
147
|
+
"actix-utils",
|
|
148
|
+
"actix-web-codegen",
|
|
149
|
+
"ahash",
|
|
150
|
+
"bytes",
|
|
151
|
+
"bytestring",
|
|
152
|
+
"cfg-if",
|
|
153
|
+
"cookie",
|
|
154
|
+
"derive_more",
|
|
155
|
+
"encoding_rs",
|
|
156
|
+
"futures-core",
|
|
157
|
+
"futures-util",
|
|
158
|
+
"impl-more",
|
|
159
|
+
"itoa",
|
|
160
|
+
"language-tags",
|
|
161
|
+
"log",
|
|
162
|
+
"mime",
|
|
163
|
+
"once_cell",
|
|
164
|
+
"pin-project-lite",
|
|
165
|
+
"regex",
|
|
166
|
+
"regex-lite",
|
|
167
|
+
"serde",
|
|
168
|
+
"serde_json",
|
|
169
|
+
"serde_urlencoded",
|
|
170
|
+
"smallvec",
|
|
171
|
+
"socket2",
|
|
172
|
+
"time",
|
|
173
|
+
"url",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "actix-web-codegen"
|
|
178
|
+
version = "4.3.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"actix-router",
|
|
183
|
+
"proc-macro2",
|
|
184
|
+
"quote",
|
|
185
|
+
"syn 2.0.87",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "addr2line"
|
|
190
|
+
version = "0.24.2"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"gimli",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "adler2"
|
|
199
|
+
version = "2.0.0"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "ahash"
|
|
205
|
+
version = "0.8.11"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"cfg-if",
|
|
210
|
+
"getrandom",
|
|
211
|
+
"once_cell",
|
|
212
|
+
"version_check",
|
|
213
|
+
"zerocopy",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "aho-corasick"
|
|
218
|
+
version = "1.1.3"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"memchr",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "alloc-no-stdlib"
|
|
227
|
+
version = "2.0.4"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "alloc-stdlib"
|
|
233
|
+
version = "0.2.2"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"alloc-no-stdlib",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "allocator-api2"
|
|
242
|
+
version = "0.2.19"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "611cc2ae7d2e242c457e4be7f97036b8ad9ca152b499f53faf99b1ed8fc2553f"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "anes"
|
|
248
|
+
version = "0.1.6"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "anstream"
|
|
254
|
+
version = "0.6.18"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"anstyle",
|
|
259
|
+
"anstyle-parse",
|
|
260
|
+
"anstyle-query",
|
|
261
|
+
"anstyle-wincon",
|
|
262
|
+
"colorchoice",
|
|
263
|
+
"is_terminal_polyfill",
|
|
264
|
+
"utf8parse",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "anstyle"
|
|
269
|
+
version = "1.0.10"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "anstyle-parse"
|
|
275
|
+
version = "0.2.6"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"utf8parse",
|
|
280
|
+
]
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "anstyle-query"
|
|
284
|
+
version = "1.1.2"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"windows-sys 0.59.0",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "anstyle-wincon"
|
|
293
|
+
version = "3.0.6"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"anstyle",
|
|
298
|
+
"windows-sys 0.59.0",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "anyhow"
|
|
303
|
+
version = "1.0.95"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "arc-swap"
|
|
309
|
+
version = "1.7.1"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "arrayvec"
|
|
315
|
+
version = "0.7.6"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "async-trait"
|
|
321
|
+
version = "0.1.83"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"proc-macro2",
|
|
326
|
+
"quote",
|
|
327
|
+
"syn 2.0.87",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "autocfg"
|
|
332
|
+
version = "1.4.0"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "backtrace"
|
|
338
|
+
version = "0.3.74"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"addr2line",
|
|
343
|
+
"cfg-if",
|
|
344
|
+
"libc",
|
|
345
|
+
"miniz_oxide",
|
|
346
|
+
"object",
|
|
347
|
+
"rustc-demangle",
|
|
348
|
+
"windows-targets 0.52.6",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "base64"
|
|
353
|
+
version = "0.22.1"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "bincode"
|
|
359
|
+
version = "1.3.3"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"serde",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "bitflags"
|
|
368
|
+
version = "1.3.2"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "bitflags"
|
|
374
|
+
version = "2.6.0"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "bitpacking"
|
|
380
|
+
version = "0.9.2"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"crunchy",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "block-buffer"
|
|
389
|
+
version = "0.10.4"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"generic-array",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "brotli"
|
|
398
|
+
version = "6.0.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"alloc-no-stdlib",
|
|
403
|
+
"alloc-stdlib",
|
|
404
|
+
"brotli-decompressor",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "brotli-decompressor"
|
|
409
|
+
version = "4.0.1"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"alloc-no-stdlib",
|
|
414
|
+
"alloc-stdlib",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "bumpalo"
|
|
419
|
+
version = "3.16.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "bytecheck"
|
|
425
|
+
version = "0.8.0"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "50c8f430744b23b54ad15161fcbc22d82a29b73eacbe425fea23ec822600bc6f"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"bytecheck_derive",
|
|
430
|
+
"ptr_meta",
|
|
431
|
+
"rancor",
|
|
432
|
+
"simdutf8",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "bytecheck_derive"
|
|
437
|
+
version = "0.8.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "523363cbe1df49b68215efdf500b103ac3b0fb4836aed6d15689a076eadb8fff"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"proc-macro2",
|
|
442
|
+
"quote",
|
|
443
|
+
"syn 2.0.87",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "byteorder"
|
|
448
|
+
version = "1.5.0"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "bytes"
|
|
454
|
+
version = "1.8.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "bytestring"
|
|
460
|
+
version = "1.3.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72"
|
|
463
|
+
dependencies = [
|
|
464
|
+
"bytes",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "cast"
|
|
469
|
+
version = "0.3.0"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "cc"
|
|
475
|
+
version = "1.1.37"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "40545c26d092346d8a8dab71ee48e7685a7a9cba76e634790c215b41a4a7b4cf"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"jobserver",
|
|
480
|
+
"libc",
|
|
481
|
+
"shlex",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "cedarwood"
|
|
486
|
+
version = "0.4.6"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"smallvec",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "census"
|
|
495
|
+
version = "0.4.2"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "cfg-if"
|
|
501
|
+
version = "1.0.0"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "charabia"
|
|
507
|
+
version = "0.9.2"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "cf8921fe4d53ab8f9e8f9b72ce6f91726cfc40fffab1243d27db406b5e2e9cc2"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"aho-corasick",
|
|
512
|
+
"csv",
|
|
513
|
+
"either",
|
|
514
|
+
"fst",
|
|
515
|
+
"irg-kvariants",
|
|
516
|
+
"jieba-rs",
|
|
517
|
+
"lindera",
|
|
518
|
+
"once_cell",
|
|
519
|
+
"serde",
|
|
520
|
+
"slice-group-by",
|
|
521
|
+
"unicode-normalization",
|
|
522
|
+
"wana_kana",
|
|
523
|
+
"whatlang",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "ciborium"
|
|
528
|
+
version = "0.2.2"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"ciborium-io",
|
|
533
|
+
"ciborium-ll",
|
|
534
|
+
"serde",
|
|
535
|
+
]
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "ciborium-io"
|
|
539
|
+
version = "0.2.2"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "ciborium-ll"
|
|
545
|
+
version = "0.2.2"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"ciborium-io",
|
|
550
|
+
"half",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "clap"
|
|
555
|
+
version = "4.5.23"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"clap_builder",
|
|
560
|
+
"clap_derive",
|
|
561
|
+
]
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "clap_builder"
|
|
565
|
+
version = "4.5.23"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
|
|
568
|
+
dependencies = [
|
|
569
|
+
"anstream",
|
|
570
|
+
"anstyle",
|
|
571
|
+
"clap_lex",
|
|
572
|
+
"strsim",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "clap_derive"
|
|
577
|
+
version = "4.5.18"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"heck 0.5.0",
|
|
582
|
+
"proc-macro2",
|
|
583
|
+
"quote",
|
|
584
|
+
"syn 2.0.87",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "clap_lex"
|
|
589
|
+
version = "0.7.4"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "cli"
|
|
595
|
+
version = "2.0.0"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"actix-web",
|
|
598
|
+
"anyhow",
|
|
599
|
+
"clap",
|
|
600
|
+
"console",
|
|
601
|
+
"derive_more",
|
|
602
|
+
"env_logger",
|
|
603
|
+
"humansize",
|
|
604
|
+
"indicatif",
|
|
605
|
+
"num-format",
|
|
606
|
+
"odict",
|
|
607
|
+
"pulldown-cmark",
|
|
608
|
+
"serde",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "colorchoice"
|
|
613
|
+
version = "1.0.3"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "console"
|
|
619
|
+
version = "0.15.8"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"encode_unicode",
|
|
624
|
+
"lazy_static",
|
|
625
|
+
"libc",
|
|
626
|
+
"unicode-width 0.1.14",
|
|
627
|
+
"windows-sys 0.52.0",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "convert_case"
|
|
632
|
+
version = "0.4.0"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "convert_case"
|
|
638
|
+
version = "0.6.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"unicode-segmentation",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "cookie"
|
|
647
|
+
version = "0.16.2"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"percent-encoding",
|
|
652
|
+
"time",
|
|
653
|
+
"version_check",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "cpufeatures"
|
|
658
|
+
version = "0.2.14"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"libc",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "crc32fast"
|
|
667
|
+
version = "1.4.2"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"cfg-if",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "criterion"
|
|
676
|
+
version = "0.5.1"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"anes",
|
|
681
|
+
"cast",
|
|
682
|
+
"ciborium",
|
|
683
|
+
"clap",
|
|
684
|
+
"criterion-plot",
|
|
685
|
+
"is-terminal",
|
|
686
|
+
"itertools 0.10.5",
|
|
687
|
+
"num-traits",
|
|
688
|
+
"once_cell",
|
|
689
|
+
"oorandom",
|
|
690
|
+
"plotters",
|
|
691
|
+
"rayon",
|
|
692
|
+
"regex",
|
|
693
|
+
"serde",
|
|
694
|
+
"serde_derive",
|
|
695
|
+
"serde_json",
|
|
696
|
+
"tinytemplate",
|
|
697
|
+
"walkdir",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "criterion-plot"
|
|
702
|
+
version = "0.5.0"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"cast",
|
|
707
|
+
"itertools 0.10.5",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "crossbeam-channel"
|
|
712
|
+
version = "0.5.13"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"crossbeam-utils",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "crossbeam-deque"
|
|
721
|
+
version = "0.8.5"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
724
|
+
dependencies = [
|
|
725
|
+
"crossbeam-epoch",
|
|
726
|
+
"crossbeam-utils",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "crossbeam-epoch"
|
|
731
|
+
version = "0.9.18"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"crossbeam-utils",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "crossbeam-utils"
|
|
740
|
+
version = "0.8.20"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "crunchy"
|
|
746
|
+
version = "0.2.2"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "crypto-common"
|
|
752
|
+
version = "0.1.6"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"generic-array",
|
|
757
|
+
"typenum",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "csv"
|
|
762
|
+
version = "1.3.0"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"csv-core",
|
|
767
|
+
"itoa",
|
|
768
|
+
"ryu",
|
|
769
|
+
"serde",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "csv-core"
|
|
774
|
+
version = "0.1.11"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"memchr",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "ctor"
|
|
783
|
+
version = "0.2.8"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"quote",
|
|
788
|
+
"syn 2.0.87",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "darling"
|
|
793
|
+
version = "0.20.10"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"darling_core",
|
|
798
|
+
"darling_macro",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "darling_core"
|
|
803
|
+
version = "0.20.10"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"fnv",
|
|
808
|
+
"ident_case",
|
|
809
|
+
"proc-macro2",
|
|
810
|
+
"quote",
|
|
811
|
+
"strsim",
|
|
812
|
+
"syn 2.0.87",
|
|
813
|
+
]
|
|
814
|
+
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "darling_macro"
|
|
817
|
+
version = "0.20.10"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"darling_core",
|
|
822
|
+
"quote",
|
|
823
|
+
"syn 2.0.87",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "deranged"
|
|
828
|
+
version = "0.3.11"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"powerfmt",
|
|
833
|
+
"serde",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "derive_builder"
|
|
838
|
+
version = "0.20.2"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"derive_builder_macro",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "derive_builder_core"
|
|
847
|
+
version = "0.20.2"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
850
|
+
dependencies = [
|
|
851
|
+
"darling",
|
|
852
|
+
"proc-macro2",
|
|
853
|
+
"quote",
|
|
854
|
+
"syn 2.0.87",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "derive_builder_macro"
|
|
859
|
+
version = "0.20.2"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"derive_builder_core",
|
|
864
|
+
"syn 2.0.87",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "derive_more"
|
|
869
|
+
version = "0.99.18"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"convert_case 0.4.0",
|
|
874
|
+
"proc-macro2",
|
|
875
|
+
"quote",
|
|
876
|
+
"rustc_version",
|
|
877
|
+
"syn 2.0.87",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "digest"
|
|
882
|
+
version = "0.10.7"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"block-buffer",
|
|
887
|
+
"crypto-common",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "dirs"
|
|
892
|
+
version = "5.0.1"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"dirs-sys",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "dirs-sys"
|
|
901
|
+
version = "0.4.1"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"libc",
|
|
906
|
+
"option-ext",
|
|
907
|
+
"redox_users",
|
|
908
|
+
"windows-sys 0.48.0",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "displaydoc"
|
|
913
|
+
version = "0.2.5"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"proc-macro2",
|
|
918
|
+
"quote",
|
|
919
|
+
"syn 2.0.87",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "downcast-rs"
|
|
924
|
+
version = "1.2.1"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "either"
|
|
930
|
+
version = "1.13.0"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "encode_unicode"
|
|
936
|
+
version = "0.3.6"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "encoding"
|
|
942
|
+
version = "0.2.33"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"encoding-index-japanese",
|
|
947
|
+
"encoding-index-korean",
|
|
948
|
+
"encoding-index-simpchinese",
|
|
949
|
+
"encoding-index-singlebyte",
|
|
950
|
+
"encoding-index-tradchinese",
|
|
951
|
+
]
|
|
952
|
+
|
|
953
|
+
[[package]]
|
|
954
|
+
name = "encoding-index-japanese"
|
|
955
|
+
version = "1.20141219.5"
|
|
956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
+
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
|
|
958
|
+
dependencies = [
|
|
959
|
+
"encoding_index_tests",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "encoding-index-korean"
|
|
964
|
+
version = "1.20141219.5"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"encoding_index_tests",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "encoding-index-simpchinese"
|
|
973
|
+
version = "1.20141219.5"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"encoding_index_tests",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "encoding-index-singlebyte"
|
|
982
|
+
version = "1.20141219.5"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
|
|
985
|
+
dependencies = [
|
|
986
|
+
"encoding_index_tests",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "encoding-index-tradchinese"
|
|
991
|
+
version = "1.20141219.5"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"encoding_index_tests",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "encoding_index_tests"
|
|
1000
|
+
version = "0.1.4"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "encoding_rs"
|
|
1006
|
+
version = "0.8.35"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"cfg-if",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "encoding_rs_io"
|
|
1015
|
+
version = "0.1.7"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"encoding_rs",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "env_filter"
|
|
1024
|
+
version = "0.1.2"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"log",
|
|
1029
|
+
"regex",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "env_logger"
|
|
1034
|
+
version = "0.11.5"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"anstream",
|
|
1039
|
+
"anstyle",
|
|
1040
|
+
"env_filter",
|
|
1041
|
+
"humantime",
|
|
1042
|
+
"log",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "equivalent"
|
|
1047
|
+
version = "1.0.1"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "errno"
|
|
1053
|
+
version = "0.3.9"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"libc",
|
|
1058
|
+
"windows-sys 0.52.0",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "fastdivide"
|
|
1063
|
+
version = "0.4.2"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "fastrand"
|
|
1069
|
+
version = "2.2.0"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "filetime"
|
|
1075
|
+
version = "0.2.25"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"cfg-if",
|
|
1080
|
+
"libc",
|
|
1081
|
+
"libredox",
|
|
1082
|
+
"windows-sys 0.59.0",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "flate2"
|
|
1087
|
+
version = "1.0.34"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"crc32fast",
|
|
1092
|
+
"miniz_oxide",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "fnv"
|
|
1097
|
+
version = "1.0.7"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "foldhash"
|
|
1103
|
+
version = "0.1.3"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "form_urlencoded"
|
|
1109
|
+
version = "1.2.1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"percent-encoding",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "fs4"
|
|
1118
|
+
version = "0.8.4"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"rustix",
|
|
1123
|
+
"windows-sys 0.52.0",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "fst"
|
|
1128
|
+
version = "0.4.7"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "futures-core"
|
|
1134
|
+
version = "0.3.31"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "futures-sink"
|
|
1140
|
+
version = "0.3.31"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "futures-task"
|
|
1146
|
+
version = "0.3.31"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "futures-util"
|
|
1152
|
+
version = "0.3.31"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"futures-core",
|
|
1157
|
+
"futures-task",
|
|
1158
|
+
"pin-project-lite",
|
|
1159
|
+
"pin-utils",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "fxhash"
|
|
1164
|
+
version = "0.2.1"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"byteorder",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "generic-array"
|
|
1173
|
+
version = "0.14.7"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"typenum",
|
|
1178
|
+
"version_check",
|
|
1179
|
+
]
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "getopts"
|
|
1183
|
+
version = "0.2.21"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
|
|
1186
|
+
dependencies = [
|
|
1187
|
+
"unicode-width 0.1.14",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "getrandom"
|
|
1192
|
+
version = "0.2.15"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"cfg-if",
|
|
1197
|
+
"libc",
|
|
1198
|
+
"wasi",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "gimli"
|
|
1203
|
+
version = "0.31.1"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "glob"
|
|
1209
|
+
version = "0.3.1"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "h2"
|
|
1215
|
+
version = "0.3.26"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"bytes",
|
|
1220
|
+
"fnv",
|
|
1221
|
+
"futures-core",
|
|
1222
|
+
"futures-sink",
|
|
1223
|
+
"futures-util",
|
|
1224
|
+
"http",
|
|
1225
|
+
"indexmap",
|
|
1226
|
+
"slab",
|
|
1227
|
+
"tokio",
|
|
1228
|
+
"tokio-util",
|
|
1229
|
+
"tracing",
|
|
1230
|
+
]
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "half"
|
|
1234
|
+
version = "2.4.1"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
|
|
1237
|
+
dependencies = [
|
|
1238
|
+
"cfg-if",
|
|
1239
|
+
"crunchy",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "hashbrown"
|
|
1244
|
+
version = "0.14.5"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"ahash",
|
|
1249
|
+
"allocator-api2",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "hashbrown"
|
|
1254
|
+
version = "0.15.1"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"allocator-api2",
|
|
1259
|
+
"equivalent",
|
|
1260
|
+
"foldhash",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "heck"
|
|
1265
|
+
version = "0.4.1"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "heck"
|
|
1271
|
+
version = "0.5.0"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "hermit-abi"
|
|
1277
|
+
version = "0.3.9"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "hermit-abi"
|
|
1283
|
+
version = "0.4.0"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "htmlescape"
|
|
1289
|
+
version = "0.3.1"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "http"
|
|
1295
|
+
version = "0.2.12"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"bytes",
|
|
1300
|
+
"fnv",
|
|
1301
|
+
"itoa",
|
|
1302
|
+
]
|
|
1303
|
+
|
|
1304
|
+
[[package]]
|
|
1305
|
+
name = "httparse"
|
|
1306
|
+
version = "1.9.5"
|
|
1307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
+
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "httpdate"
|
|
1312
|
+
version = "1.0.3"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "humansize"
|
|
1318
|
+
version = "2.1.3"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"libm",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "humantime"
|
|
1327
|
+
version = "2.1.0"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "icu_collections"
|
|
1333
|
+
version = "1.5.0"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"displaydoc",
|
|
1338
|
+
"yoke",
|
|
1339
|
+
"zerofrom",
|
|
1340
|
+
"zerovec",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "icu_locid"
|
|
1345
|
+
version = "1.5.0"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"displaydoc",
|
|
1350
|
+
"litemap",
|
|
1351
|
+
"tinystr",
|
|
1352
|
+
"writeable",
|
|
1353
|
+
"zerovec",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "icu_locid_transform"
|
|
1358
|
+
version = "1.5.0"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"displaydoc",
|
|
1363
|
+
"icu_locid",
|
|
1364
|
+
"icu_locid_transform_data",
|
|
1365
|
+
"icu_provider",
|
|
1366
|
+
"tinystr",
|
|
1367
|
+
"zerovec",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "icu_locid_transform_data"
|
|
1372
|
+
version = "1.5.0"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
1375
|
+
|
|
1376
|
+
[[package]]
|
|
1377
|
+
name = "icu_normalizer"
|
|
1378
|
+
version = "1.5.0"
|
|
1379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
1381
|
+
dependencies = [
|
|
1382
|
+
"displaydoc",
|
|
1383
|
+
"icu_collections",
|
|
1384
|
+
"icu_normalizer_data",
|
|
1385
|
+
"icu_properties",
|
|
1386
|
+
"icu_provider",
|
|
1387
|
+
"smallvec",
|
|
1388
|
+
"utf16_iter",
|
|
1389
|
+
"utf8_iter",
|
|
1390
|
+
"write16",
|
|
1391
|
+
"zerovec",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "icu_normalizer_data"
|
|
1396
|
+
version = "1.5.0"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "icu_properties"
|
|
1402
|
+
version = "1.5.1"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"displaydoc",
|
|
1407
|
+
"icu_collections",
|
|
1408
|
+
"icu_locid_transform",
|
|
1409
|
+
"icu_properties_data",
|
|
1410
|
+
"icu_provider",
|
|
1411
|
+
"tinystr",
|
|
1412
|
+
"zerovec",
|
|
1413
|
+
]
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "icu_properties_data"
|
|
1417
|
+
version = "1.5.0"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "icu_provider"
|
|
1423
|
+
version = "1.5.0"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1426
|
+
dependencies = [
|
|
1427
|
+
"displaydoc",
|
|
1428
|
+
"icu_locid",
|
|
1429
|
+
"icu_provider_macros",
|
|
1430
|
+
"stable_deref_trait",
|
|
1431
|
+
"tinystr",
|
|
1432
|
+
"writeable",
|
|
1433
|
+
"yoke",
|
|
1434
|
+
"zerofrom",
|
|
1435
|
+
"zerovec",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "icu_provider_macros"
|
|
1440
|
+
version = "1.5.0"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"proc-macro2",
|
|
1445
|
+
"quote",
|
|
1446
|
+
"syn 2.0.87",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "ident_case"
|
|
1451
|
+
version = "1.0.1"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "idna"
|
|
1457
|
+
version = "1.0.3"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"idna_adapter",
|
|
1462
|
+
"smallvec",
|
|
1463
|
+
"utf8_iter",
|
|
1464
|
+
]
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "idna_adapter"
|
|
1468
|
+
version = "1.2.0"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"icu_normalizer",
|
|
1473
|
+
"icu_properties",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "impl-more"
|
|
1478
|
+
version = "0.1.8"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "indexmap"
|
|
1484
|
+
version = "2.6.0"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"equivalent",
|
|
1489
|
+
"hashbrown 0.15.1",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "indicatif"
|
|
1494
|
+
version = "0.17.9"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"console",
|
|
1499
|
+
"number_prefix",
|
|
1500
|
+
"portable-atomic",
|
|
1501
|
+
"unicode-width 0.2.0",
|
|
1502
|
+
"web-time",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "indoc"
|
|
1507
|
+
version = "2.0.5"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "inherent"
|
|
1513
|
+
version = "1.0.11"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "0122b7114117e64a63ac49f752a5ca4624d534c7b1c7de796ac196381cd2d947"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"proc-macro2",
|
|
1518
|
+
"quote",
|
|
1519
|
+
"syn 2.0.87",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "insta"
|
|
1524
|
+
version = "1.41.1"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"console",
|
|
1529
|
+
"lazy_static",
|
|
1530
|
+
"linked-hash-map",
|
|
1531
|
+
"similar",
|
|
1532
|
+
]
|
|
1533
|
+
|
|
1534
|
+
[[package]]
|
|
1535
|
+
name = "instant"
|
|
1536
|
+
version = "0.1.13"
|
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1539
|
+
dependencies = [
|
|
1540
|
+
"cfg-if",
|
|
1541
|
+
"js-sys",
|
|
1542
|
+
"wasm-bindgen",
|
|
1543
|
+
"web-sys",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "irg-kvariants"
|
|
1548
|
+
version = "0.1.1"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "ef2af7c331f2536964a32b78a7d2e0963d78b42f4a76323b16cc7d94b1ddce26"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"csv",
|
|
1553
|
+
"once_cell",
|
|
1554
|
+
"serde",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "is-terminal"
|
|
1559
|
+
version = "0.4.13"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"hermit-abi 0.4.0",
|
|
1564
|
+
"libc",
|
|
1565
|
+
"windows-sys 0.52.0",
|
|
1566
|
+
]
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "is_terminal_polyfill"
|
|
1570
|
+
version = "1.70.1"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "itertools"
|
|
1576
|
+
version = "0.10.5"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"either",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "itertools"
|
|
1585
|
+
version = "0.12.1"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"either",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "itoa"
|
|
1594
|
+
version = "1.0.11"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
1597
|
+
|
|
1598
|
+
[[package]]
|
|
1599
|
+
name = "jieba-rs"
|
|
1600
|
+
version = "0.7.0"
|
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
+
checksum = "c1e2b0210dc78b49337af9e49d7ae41a39dceac6e5985613f1cf7763e2f76a25"
|
|
1603
|
+
dependencies = [
|
|
1604
|
+
"cedarwood",
|
|
1605
|
+
"derive_builder",
|
|
1606
|
+
"fxhash",
|
|
1607
|
+
"lazy_static",
|
|
1608
|
+
"phf",
|
|
1609
|
+
"phf_codegen",
|
|
1610
|
+
"regex",
|
|
1611
|
+
]
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "jobserver"
|
|
1615
|
+
version = "0.1.32"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"libc",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "js-sys"
|
|
1624
|
+
version = "0.3.72"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"wasm-bindgen",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "kanaria"
|
|
1633
|
+
version = "0.2.0"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "c0f9d9652540055ac4fded998a73aca97d965899077ab1212587437da44196ff"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"bitflags 1.3.2",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "language-tags"
|
|
1642
|
+
version = "0.3.2"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
|
|
1645
|
+
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "lazy_static"
|
|
1648
|
+
version = "1.5.0"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "levenshtein_automata"
|
|
1654
|
+
version = "0.2.1"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "libc"
|
|
1660
|
+
version = "0.2.162"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398"
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "libloading"
|
|
1666
|
+
version = "0.8.5"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"cfg-if",
|
|
1671
|
+
"windows-targets 0.52.6",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "libm"
|
|
1676
|
+
version = "0.2.11"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "libredox"
|
|
1682
|
+
version = "0.1.3"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1685
|
+
dependencies = [
|
|
1686
|
+
"bitflags 2.6.0",
|
|
1687
|
+
"libc",
|
|
1688
|
+
"redox_syscall",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "lindera"
|
|
1693
|
+
version = "0.32.2"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "c6cbc1aad631a7da0a7e9bc4b8669fa92ac9ca8eeb7b35a807376dd3034443ff"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"lindera-analyzer",
|
|
1698
|
+
"lindera-core",
|
|
1699
|
+
"lindera-dictionary",
|
|
1700
|
+
"lindera-filter",
|
|
1701
|
+
"lindera-tokenizer",
|
|
1702
|
+
]
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "lindera-analyzer"
|
|
1706
|
+
version = "0.32.2"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "74508ffbb24e36905d1718b261460e378a748029b07bcd7e06f0d18500b8194c"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"anyhow",
|
|
1711
|
+
"bincode",
|
|
1712
|
+
"byteorder",
|
|
1713
|
+
"encoding",
|
|
1714
|
+
"kanaria",
|
|
1715
|
+
"lindera-cc-cedict-builder",
|
|
1716
|
+
"lindera-core",
|
|
1717
|
+
"lindera-dictionary",
|
|
1718
|
+
"lindera-filter",
|
|
1719
|
+
"lindera-ipadic-builder",
|
|
1720
|
+
"lindera-ko-dic-builder",
|
|
1721
|
+
"lindera-tokenizer",
|
|
1722
|
+
"lindera-unidic-builder",
|
|
1723
|
+
"once_cell",
|
|
1724
|
+
"regex",
|
|
1725
|
+
"serde",
|
|
1726
|
+
"serde_json",
|
|
1727
|
+
"thiserror 1.0.68",
|
|
1728
|
+
"unicode-blocks",
|
|
1729
|
+
"unicode-normalization",
|
|
1730
|
+
"unicode-segmentation",
|
|
1731
|
+
"yada",
|
|
1732
|
+
]
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "lindera-assets"
|
|
1736
|
+
version = "0.32.2"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "6a677c371ecb3bd02b751be306ea09876cd47cf426303ad5f10a3fd6f9a4ded6"
|
|
1739
|
+
dependencies = [
|
|
1740
|
+
"encoding",
|
|
1741
|
+
"flate2",
|
|
1742
|
+
"lindera-core",
|
|
1743
|
+
"tar",
|
|
1744
|
+
"ureq",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "lindera-cc-cedict"
|
|
1749
|
+
version = "0.32.2"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "c35944000d05a177e981f037b5f0805f283b32f05a0c35713003bef136ca8cb4"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"bincode",
|
|
1754
|
+
"byteorder",
|
|
1755
|
+
"lindera-cc-cedict-builder",
|
|
1756
|
+
"lindera-core",
|
|
1757
|
+
"lindera-decompress",
|
|
1758
|
+
"once_cell",
|
|
1759
|
+
]
|
|
1760
|
+
|
|
1761
|
+
[[package]]
|
|
1762
|
+
name = "lindera-cc-cedict-builder"
|
|
1763
|
+
version = "0.32.2"
|
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
+
checksum = "85b8f642bc9c9130682569975772a17336c6aab26d11fc0f823f3e663167ace6"
|
|
1766
|
+
dependencies = [
|
|
1767
|
+
"anyhow",
|
|
1768
|
+
"lindera-core",
|
|
1769
|
+
"lindera-decompress",
|
|
1770
|
+
"lindera-dictionary-builder",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "lindera-compress"
|
|
1775
|
+
version = "0.32.2"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "a7825d8d63592aa5727d67bd209170ac82df56c369533efbf0ddbac277bb68ec"
|
|
1778
|
+
dependencies = [
|
|
1779
|
+
"anyhow",
|
|
1780
|
+
"flate2",
|
|
1781
|
+
"lindera-decompress",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "lindera-core"
|
|
1786
|
+
version = "0.32.2"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "0c28191456debc98af6aa5f7db77872471983e9fa2a737b1c232b6ef543aed62"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"anyhow",
|
|
1791
|
+
"bincode",
|
|
1792
|
+
"byteorder",
|
|
1793
|
+
"encoding_rs",
|
|
1794
|
+
"log",
|
|
1795
|
+
"once_cell",
|
|
1796
|
+
"serde",
|
|
1797
|
+
"thiserror 1.0.68",
|
|
1798
|
+
"yada",
|
|
1799
|
+
]
|
|
1800
|
+
|
|
1801
|
+
[[package]]
|
|
1802
|
+
name = "lindera-decompress"
|
|
1803
|
+
version = "0.32.2"
|
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
+
checksum = "4788a1ead2f63f3fc2888109272921dedd86a87b7d0bf05e9daab46600daac51"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"anyhow",
|
|
1808
|
+
"flate2",
|
|
1809
|
+
"serde",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "lindera-dictionary"
|
|
1814
|
+
version = "0.32.2"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "bdf5f91725e32b9a21b1656baa7030766c9bafc4de4b4ddeb8ffdde7224dd2f6"
|
|
1817
|
+
dependencies = [
|
|
1818
|
+
"anyhow",
|
|
1819
|
+
"bincode",
|
|
1820
|
+
"byteorder",
|
|
1821
|
+
"lindera-cc-cedict",
|
|
1822
|
+
"lindera-cc-cedict-builder",
|
|
1823
|
+
"lindera-core",
|
|
1824
|
+
"lindera-ipadic",
|
|
1825
|
+
"lindera-ipadic-builder",
|
|
1826
|
+
"lindera-ipadic-neologd",
|
|
1827
|
+
"lindera-ipadic-neologd-builder",
|
|
1828
|
+
"lindera-ko-dic",
|
|
1829
|
+
"lindera-ko-dic-builder",
|
|
1830
|
+
"lindera-unidic",
|
|
1831
|
+
"lindera-unidic-builder",
|
|
1832
|
+
"serde",
|
|
1833
|
+
"strum",
|
|
1834
|
+
"strum_macros",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "lindera-dictionary-builder"
|
|
1839
|
+
version = "0.32.2"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "e41f00ba7ac541b0ffd8c30e7a73f2dd197546cc5780462ec4f2e4782945a780"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"anyhow",
|
|
1844
|
+
"bincode",
|
|
1845
|
+
"byteorder",
|
|
1846
|
+
"csv",
|
|
1847
|
+
"derive_builder",
|
|
1848
|
+
"encoding",
|
|
1849
|
+
"encoding_rs",
|
|
1850
|
+
"encoding_rs_io",
|
|
1851
|
+
"glob",
|
|
1852
|
+
"lindera-compress",
|
|
1853
|
+
"lindera-core",
|
|
1854
|
+
"lindera-decompress",
|
|
1855
|
+
"log",
|
|
1856
|
+
"yada",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "lindera-filter"
|
|
1861
|
+
version = "0.32.2"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "273d27e01e1377e2647314a4a5b9bdca4b52a867b319069ebae8c10191146eca"
|
|
1864
|
+
dependencies = [
|
|
1865
|
+
"anyhow",
|
|
1866
|
+
"csv",
|
|
1867
|
+
"kanaria",
|
|
1868
|
+
"lindera-cc-cedict-builder",
|
|
1869
|
+
"lindera-core",
|
|
1870
|
+
"lindera-dictionary",
|
|
1871
|
+
"lindera-ipadic-builder",
|
|
1872
|
+
"lindera-ko-dic-builder",
|
|
1873
|
+
"lindera-unidic-builder",
|
|
1874
|
+
"once_cell",
|
|
1875
|
+
"regex",
|
|
1876
|
+
"serde",
|
|
1877
|
+
"serde_json",
|
|
1878
|
+
"unicode-blocks",
|
|
1879
|
+
"unicode-normalization",
|
|
1880
|
+
"unicode-segmentation",
|
|
1881
|
+
"yada",
|
|
1882
|
+
]
|
|
1883
|
+
|
|
1884
|
+
[[package]]
|
|
1885
|
+
name = "lindera-ipadic"
|
|
1886
|
+
version = "0.32.2"
|
|
1887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
+
checksum = "b97a52ff0af5acb700093badaf7078051ab9ffd9071859724445a60193995f1f"
|
|
1889
|
+
dependencies = [
|
|
1890
|
+
"bincode",
|
|
1891
|
+
"byteorder",
|
|
1892
|
+
"lindera-core",
|
|
1893
|
+
"lindera-decompress",
|
|
1894
|
+
"lindera-ipadic-builder",
|
|
1895
|
+
"once_cell",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "lindera-ipadic-builder"
|
|
1900
|
+
version = "0.32.2"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "bf5031c52686128db13f774b2c5a8abfd52b4cc1f904041d8411aa19d630ce4d"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"anyhow",
|
|
1905
|
+
"lindera-core",
|
|
1906
|
+
"lindera-decompress",
|
|
1907
|
+
"lindera-dictionary-builder",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "lindera-ipadic-neologd"
|
|
1912
|
+
version = "0.32.2"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "d6b36764b27b169aa11d24888141f206a6c246a5b195c1e67127485bac512fb6"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"bincode",
|
|
1917
|
+
"byteorder",
|
|
1918
|
+
"lindera-core",
|
|
1919
|
+
"lindera-decompress",
|
|
1920
|
+
"lindera-ipadic-neologd-builder",
|
|
1921
|
+
"once_cell",
|
|
1922
|
+
]
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "lindera-ipadic-neologd-builder"
|
|
1926
|
+
version = "0.32.2"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "abf36e40ace904741efdd883ed5c4dba6425f65156a0fb5d3f73a386335950dc"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"anyhow",
|
|
1931
|
+
"lindera-core",
|
|
1932
|
+
"lindera-decompress",
|
|
1933
|
+
"lindera-dictionary-builder",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "lindera-ko-dic"
|
|
1938
|
+
version = "0.32.2"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "4c92a1a3564b531953f0238cbcea392f2905f7b27b449978cf9e702a80e1086d"
|
|
1941
|
+
dependencies = [
|
|
1942
|
+
"bincode",
|
|
1943
|
+
"byteorder",
|
|
1944
|
+
"lindera-assets",
|
|
1945
|
+
"lindera-core",
|
|
1946
|
+
"lindera-decompress",
|
|
1947
|
+
"lindera-ko-dic-builder",
|
|
1948
|
+
"once_cell",
|
|
1949
|
+
]
|
|
1950
|
+
|
|
1951
|
+
[[package]]
|
|
1952
|
+
name = "lindera-ko-dic-builder"
|
|
1953
|
+
version = "0.32.2"
|
|
1954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
+
checksum = "9f2c60425abc1548570c2568858f74a1f042105ecd89faa39c651b4315350fd9"
|
|
1956
|
+
dependencies = [
|
|
1957
|
+
"anyhow",
|
|
1958
|
+
"lindera-core",
|
|
1959
|
+
"lindera-decompress",
|
|
1960
|
+
"lindera-dictionary-builder",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "lindera-tokenizer"
|
|
1965
|
+
version = "0.32.2"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "903e558981bcb6f59870aa7d6b4bcb09e8f7db778886a6a70f67fd74c9fa2ca3"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"bincode",
|
|
1970
|
+
"lindera-core",
|
|
1971
|
+
"lindera-dictionary",
|
|
1972
|
+
"once_cell",
|
|
1973
|
+
"serde",
|
|
1974
|
+
"serde_json",
|
|
1975
|
+
]
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "lindera-unidic"
|
|
1979
|
+
version = "0.32.2"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "d227c3ce9cbd905f865c46c65a0470fd04e89b71104d7f92baa71a212ffe1d4b"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"bincode",
|
|
1984
|
+
"byteorder",
|
|
1985
|
+
"lindera-assets",
|
|
1986
|
+
"lindera-core",
|
|
1987
|
+
"lindera-decompress",
|
|
1988
|
+
"lindera-unidic-builder",
|
|
1989
|
+
"once_cell",
|
|
1990
|
+
]
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "lindera-unidic-builder"
|
|
1994
|
+
version = "0.32.2"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "99e2c50015c242e02c451acb6748667ac6fd1d3d667cd7db48cd89e2f2d2377e"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"anyhow",
|
|
1999
|
+
"lindera-core",
|
|
2000
|
+
"lindera-decompress",
|
|
2001
|
+
"lindera-dictionary-builder",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "linked-hash-map"
|
|
2006
|
+
version = "0.5.6"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "linux-raw-sys"
|
|
2012
|
+
version = "0.4.14"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "litemap"
|
|
2018
|
+
version = "0.7.3"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "local-channel"
|
|
2024
|
+
version = "0.1.5"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"futures-core",
|
|
2029
|
+
"futures-sink",
|
|
2030
|
+
"local-waker",
|
|
2031
|
+
]
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "local-waker"
|
|
2035
|
+
version = "0.1.4"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "lock_api"
|
|
2041
|
+
version = "0.4.12"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
2044
|
+
dependencies = [
|
|
2045
|
+
"autocfg",
|
|
2046
|
+
"scopeguard",
|
|
2047
|
+
]
|
|
2048
|
+
|
|
2049
|
+
[[package]]
|
|
2050
|
+
name = "log"
|
|
2051
|
+
version = "0.4.22"
|
|
2052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
|
2054
|
+
|
|
2055
|
+
[[package]]
|
|
2056
|
+
name = "lru"
|
|
2057
|
+
version = "0.12.5"
|
|
2058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
2060
|
+
dependencies = [
|
|
2061
|
+
"hashbrown 0.15.1",
|
|
2062
|
+
]
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "lz4_flex"
|
|
2066
|
+
version = "0.11.3"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
2069
|
+
dependencies = [
|
|
2070
|
+
"twox-hash",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "map-macro"
|
|
2075
|
+
version = "0.3.0"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "fb950a42259642e5a3483115aca87eebed2a64886993463af9c9739c205b8d3a"
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "measure_time"
|
|
2081
|
+
version = "0.8.3"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc"
|
|
2084
|
+
dependencies = [
|
|
2085
|
+
"instant",
|
|
2086
|
+
"log",
|
|
2087
|
+
]
|
|
2088
|
+
|
|
2089
|
+
[[package]]
|
|
2090
|
+
name = "memchr"
|
|
2091
|
+
version = "2.7.4"
|
|
2092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
2094
|
+
|
|
2095
|
+
[[package]]
|
|
2096
|
+
name = "memmap2"
|
|
2097
|
+
version = "0.9.5"
|
|
2098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2099
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
2100
|
+
dependencies = [
|
|
2101
|
+
"libc",
|
|
2102
|
+
]
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "memoffset"
|
|
2106
|
+
version = "0.9.1"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"autocfg",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "merge"
|
|
2115
|
+
version = "0.1.0"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "10bbef93abb1da61525bbc45eeaff6473a41907d19f8f9aa5168d214e10693e9"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"merge_derive",
|
|
2120
|
+
"num-traits",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "merge_derive"
|
|
2125
|
+
version = "0.1.0"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "209d075476da2e63b4b29e72a2ef627b840589588e71400a25e3565c4f849d07"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"proc-macro-error",
|
|
2130
|
+
"proc-macro2",
|
|
2131
|
+
"quote",
|
|
2132
|
+
"syn 1.0.109",
|
|
2133
|
+
]
|
|
2134
|
+
|
|
2135
|
+
[[package]]
|
|
2136
|
+
name = "mime"
|
|
2137
|
+
version = "0.3.17"
|
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2139
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2140
|
+
|
|
2141
|
+
[[package]]
|
|
2142
|
+
name = "minimal-lexical"
|
|
2143
|
+
version = "0.2.1"
|
|
2144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "miniz_oxide"
|
|
2149
|
+
version = "0.8.0"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
|
|
2152
|
+
dependencies = [
|
|
2153
|
+
"adler2",
|
|
2154
|
+
]
|
|
2155
|
+
|
|
2156
|
+
[[package]]
|
|
2157
|
+
name = "mio"
|
|
2158
|
+
version = "1.0.2"
|
|
2159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
|
|
2161
|
+
dependencies = [
|
|
2162
|
+
"hermit-abi 0.3.9",
|
|
2163
|
+
"libc",
|
|
2164
|
+
"log",
|
|
2165
|
+
"wasi",
|
|
2166
|
+
"windows-sys 0.52.0",
|
|
2167
|
+
]
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "munge"
|
|
2171
|
+
version = "0.4.1"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "64142d38c84badf60abf06ff9bd80ad2174306a5b11bd4706535090a30a419df"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"munge_macro",
|
|
2176
|
+
]
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "munge_macro"
|
|
2180
|
+
version = "0.4.1"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "1bb5c1d8184f13f7d0ccbeeca0def2f9a181bce2624302793005f5ca8aa62e5e"
|
|
2183
|
+
dependencies = [
|
|
2184
|
+
"proc-macro2",
|
|
2185
|
+
"quote",
|
|
2186
|
+
"syn 2.0.87",
|
|
2187
|
+
]
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "murmurhash32"
|
|
2191
|
+
version = "0.3.1"
|
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
+
checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
|
|
2194
|
+
|
|
2195
|
+
[[package]]
|
|
2196
|
+
name = "napi"
|
|
2197
|
+
version = "2.16.13"
|
|
2198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
+
checksum = "214f07a80874bb96a8433b3cdfc84980d56c7b02e1a0d7ba4ba0db5cef785e2b"
|
|
2200
|
+
dependencies = [
|
|
2201
|
+
"bitflags 2.6.0",
|
|
2202
|
+
"ctor",
|
|
2203
|
+
"napi-derive",
|
|
2204
|
+
"napi-sys",
|
|
2205
|
+
"once_cell",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "napi-build"
|
|
2210
|
+
version = "2.1.3"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a"
|
|
2213
|
+
|
|
2214
|
+
[[package]]
|
|
2215
|
+
name = "napi-derive"
|
|
2216
|
+
version = "2.16.13"
|
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
2219
|
+
dependencies = [
|
|
2220
|
+
"cfg-if",
|
|
2221
|
+
"convert_case 0.6.0",
|
|
2222
|
+
"napi-derive-backend",
|
|
2223
|
+
"proc-macro2",
|
|
2224
|
+
"quote",
|
|
2225
|
+
"syn 2.0.87",
|
|
2226
|
+
]
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "napi-derive-backend"
|
|
2230
|
+
version = "1.0.75"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"convert_case 0.6.0",
|
|
2235
|
+
"once_cell",
|
|
2236
|
+
"proc-macro2",
|
|
2237
|
+
"quote",
|
|
2238
|
+
"regex",
|
|
2239
|
+
"semver",
|
|
2240
|
+
"syn 2.0.87",
|
|
2241
|
+
]
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "napi-sys"
|
|
2245
|
+
version = "2.4.0"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"libloading",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "nom"
|
|
2254
|
+
version = "7.1.3"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"memchr",
|
|
2259
|
+
"minimal-lexical",
|
|
2260
|
+
]
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "num-conv"
|
|
2264
|
+
version = "0.1.0"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
2267
|
+
|
|
2268
|
+
[[package]]
|
|
2269
|
+
name = "num-format"
|
|
2270
|
+
version = "0.4.4"
|
|
2271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2272
|
+
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
|
|
2273
|
+
dependencies = [
|
|
2274
|
+
"arrayvec",
|
|
2275
|
+
"itoa",
|
|
2276
|
+
]
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "num-traits"
|
|
2280
|
+
version = "0.2.19"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"autocfg",
|
|
2285
|
+
"libm",
|
|
2286
|
+
]
|
|
2287
|
+
|
|
2288
|
+
[[package]]
|
|
2289
|
+
name = "num_cpus"
|
|
2290
|
+
version = "1.16.0"
|
|
2291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
2293
|
+
dependencies = [
|
|
2294
|
+
"hermit-abi 0.3.9",
|
|
2295
|
+
"libc",
|
|
2296
|
+
]
|
|
2297
|
+
|
|
2298
|
+
[[package]]
|
|
2299
|
+
name = "number_prefix"
|
|
2300
|
+
version = "0.4.0"
|
|
2301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2302
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
2303
|
+
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "object"
|
|
2306
|
+
version = "0.36.5"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"memchr",
|
|
2311
|
+
]
|
|
2312
|
+
|
|
2313
|
+
[[package]]
|
|
2314
|
+
name = "odict"
|
|
2315
|
+
version = "2.0.0"
|
|
2316
|
+
dependencies = [
|
|
2317
|
+
"anyhow",
|
|
2318
|
+
"byteorder",
|
|
2319
|
+
"charabia",
|
|
2320
|
+
"criterion",
|
|
2321
|
+
"dirs",
|
|
2322
|
+
"insta",
|
|
2323
|
+
"lz4_flex",
|
|
2324
|
+
"map-macro",
|
|
2325
|
+
"pulldown-cmark",
|
|
2326
|
+
"quick-xml",
|
|
2327
|
+
"rayon",
|
|
2328
|
+
"regex",
|
|
2329
|
+
"rkyv",
|
|
2330
|
+
"sea-query",
|
|
2331
|
+
"serde",
|
|
2332
|
+
"serde_json",
|
|
2333
|
+
"tantivy",
|
|
2334
|
+
"tempfile",
|
|
2335
|
+
"thiserror 2.0.9",
|
|
2336
|
+
"uuid",
|
|
2337
|
+
"validation",
|
|
2338
|
+
]
|
|
2339
|
+
|
|
2340
|
+
[[package]]
|
|
2341
|
+
name = "odict_node"
|
|
2342
|
+
version = "0.0.2"
|
|
2343
|
+
dependencies = [
|
|
2344
|
+
"merge",
|
|
2345
|
+
"napi",
|
|
2346
|
+
"napi-build",
|
|
2347
|
+
"napi-derive",
|
|
2348
|
+
"odict",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "odict_python"
|
|
2353
|
+
version = "1.0.0"
|
|
2354
|
+
dependencies = [
|
|
2355
|
+
"either",
|
|
2356
|
+
"odict",
|
|
2357
|
+
"pyo3",
|
|
2358
|
+
]
|
|
2359
|
+
|
|
2360
|
+
[[package]]
|
|
2361
|
+
name = "once_cell"
|
|
2362
|
+
version = "1.20.2"
|
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
2365
|
+
|
|
2366
|
+
[[package]]
|
|
2367
|
+
name = "oneshot"
|
|
2368
|
+
version = "0.1.8"
|
|
2369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
+
checksum = "e296cf87e61c9cfc1a61c3c63a0f7f286ed4554e0e22be84e8a38e1d264a2a29"
|
|
2371
|
+
|
|
2372
|
+
[[package]]
|
|
2373
|
+
name = "oorandom"
|
|
2374
|
+
version = "11.1.4"
|
|
2375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
+
checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "option-ext"
|
|
2380
|
+
version = "0.2.0"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2383
|
+
|
|
2384
|
+
[[package]]
|
|
2385
|
+
name = "ownedbytes"
|
|
2386
|
+
version = "0.7.0"
|
|
2387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2388
|
+
checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558"
|
|
2389
|
+
dependencies = [
|
|
2390
|
+
"stable_deref_trait",
|
|
2391
|
+
]
|
|
2392
|
+
|
|
2393
|
+
[[package]]
|
|
2394
|
+
name = "parking_lot"
|
|
2395
|
+
version = "0.12.3"
|
|
2396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2397
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
|
2398
|
+
dependencies = [
|
|
2399
|
+
"lock_api",
|
|
2400
|
+
"parking_lot_core",
|
|
2401
|
+
]
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "parking_lot_core"
|
|
2405
|
+
version = "0.9.10"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
2408
|
+
dependencies = [
|
|
2409
|
+
"cfg-if",
|
|
2410
|
+
"libc",
|
|
2411
|
+
"redox_syscall",
|
|
2412
|
+
"smallvec",
|
|
2413
|
+
"windows-targets 0.52.6",
|
|
2414
|
+
]
|
|
2415
|
+
|
|
2416
|
+
[[package]]
|
|
2417
|
+
name = "paste"
|
|
2418
|
+
version = "1.0.15"
|
|
2419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2421
|
+
|
|
2422
|
+
[[package]]
|
|
2423
|
+
name = "percent-encoding"
|
|
2424
|
+
version = "2.3.1"
|
|
2425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "phf"
|
|
2430
|
+
version = "0.11.2"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"phf_shared",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "phf_codegen"
|
|
2439
|
+
version = "0.11.2"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"phf_generator",
|
|
2444
|
+
"phf_shared",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "phf_generator"
|
|
2449
|
+
version = "0.11.2"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"phf_shared",
|
|
2454
|
+
"rand",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "phf_shared"
|
|
2459
|
+
version = "0.11.2"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"siphasher",
|
|
2464
|
+
]
|
|
2465
|
+
|
|
2466
|
+
[[package]]
|
|
2467
|
+
name = "pin-project-lite"
|
|
2468
|
+
version = "0.2.15"
|
|
2469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
+
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "pin-utils"
|
|
2474
|
+
version = "0.1.0"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2477
|
+
|
|
2478
|
+
[[package]]
|
|
2479
|
+
name = "pkg-config"
|
|
2480
|
+
version = "0.3.31"
|
|
2481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2482
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
|
2483
|
+
|
|
2484
|
+
[[package]]
|
|
2485
|
+
name = "plotters"
|
|
2486
|
+
version = "0.3.7"
|
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2489
|
+
dependencies = [
|
|
2490
|
+
"num-traits",
|
|
2491
|
+
"plotters-backend",
|
|
2492
|
+
"plotters-svg",
|
|
2493
|
+
"wasm-bindgen",
|
|
2494
|
+
"web-sys",
|
|
2495
|
+
]
|
|
2496
|
+
|
|
2497
|
+
[[package]]
|
|
2498
|
+
name = "plotters-backend"
|
|
2499
|
+
version = "0.3.7"
|
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2502
|
+
|
|
2503
|
+
[[package]]
|
|
2504
|
+
name = "plotters-svg"
|
|
2505
|
+
version = "0.3.7"
|
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2508
|
+
dependencies = [
|
|
2509
|
+
"plotters-backend",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "portable-atomic"
|
|
2514
|
+
version = "1.9.0"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
|
2517
|
+
|
|
2518
|
+
[[package]]
|
|
2519
|
+
name = "powerfmt"
|
|
2520
|
+
version = "0.2.0"
|
|
2521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2523
|
+
|
|
2524
|
+
[[package]]
|
|
2525
|
+
name = "ppv-lite86"
|
|
2526
|
+
version = "0.2.20"
|
|
2527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
+
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
|
2529
|
+
dependencies = [
|
|
2530
|
+
"zerocopy",
|
|
2531
|
+
]
|
|
2532
|
+
|
|
2533
|
+
[[package]]
|
|
2534
|
+
name = "proc-macro-error"
|
|
2535
|
+
version = "1.0.4"
|
|
2536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2537
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
2538
|
+
dependencies = [
|
|
2539
|
+
"proc-macro-error-attr",
|
|
2540
|
+
"proc-macro2",
|
|
2541
|
+
"quote",
|
|
2542
|
+
"syn 1.0.109",
|
|
2543
|
+
"version_check",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "proc-macro-error-attr"
|
|
2548
|
+
version = "1.0.4"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"proc-macro2",
|
|
2553
|
+
"quote",
|
|
2554
|
+
"version_check",
|
|
2555
|
+
]
|
|
2556
|
+
|
|
2557
|
+
[[package]]
|
|
2558
|
+
name = "proc-macro2"
|
|
2559
|
+
version = "1.0.89"
|
|
2560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2561
|
+
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
|
|
2562
|
+
dependencies = [
|
|
2563
|
+
"unicode-ident",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "ptr_meta"
|
|
2568
|
+
version = "0.3.0"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "fe9e76f66d3f9606f44e45598d155cb13ecf09f4a28199e48daf8c8fc937ea90"
|
|
2571
|
+
dependencies = [
|
|
2572
|
+
"ptr_meta_derive",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "ptr_meta_derive"
|
|
2577
|
+
version = "0.3.0"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
|
|
2580
|
+
dependencies = [
|
|
2581
|
+
"proc-macro2",
|
|
2582
|
+
"quote",
|
|
2583
|
+
"syn 2.0.87",
|
|
2584
|
+
]
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "pulldown-cmark"
|
|
2588
|
+
version = "0.12.2"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14"
|
|
2591
|
+
dependencies = [
|
|
2592
|
+
"bitflags 2.6.0",
|
|
2593
|
+
"getopts",
|
|
2594
|
+
"memchr",
|
|
2595
|
+
"pulldown-cmark-escape",
|
|
2596
|
+
"unicase",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "pulldown-cmark-escape"
|
|
2601
|
+
version = "0.11.0"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "pyo3"
|
|
2607
|
+
version = "0.23.3"
|
|
2608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
+
checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
|
|
2610
|
+
dependencies = [
|
|
2611
|
+
"cfg-if",
|
|
2612
|
+
"either",
|
|
2613
|
+
"indoc",
|
|
2614
|
+
"libc",
|
|
2615
|
+
"memoffset",
|
|
2616
|
+
"once_cell",
|
|
2617
|
+
"portable-atomic",
|
|
2618
|
+
"pyo3-build-config",
|
|
2619
|
+
"pyo3-ffi",
|
|
2620
|
+
"pyo3-macros",
|
|
2621
|
+
"unindent",
|
|
2622
|
+
]
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "pyo3-build-config"
|
|
2626
|
+
version = "0.23.3"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"once_cell",
|
|
2631
|
+
"target-lexicon",
|
|
2632
|
+
]
|
|
2633
|
+
|
|
2634
|
+
[[package]]
|
|
2635
|
+
name = "pyo3-ffi"
|
|
2636
|
+
version = "0.23.3"
|
|
2637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
+
checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
|
|
2639
|
+
dependencies = [
|
|
2640
|
+
"libc",
|
|
2641
|
+
"pyo3-build-config",
|
|
2642
|
+
]
|
|
2643
|
+
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "pyo3-macros"
|
|
2646
|
+
version = "0.23.3"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"proc-macro2",
|
|
2651
|
+
"pyo3-macros-backend",
|
|
2652
|
+
"quote",
|
|
2653
|
+
"syn 2.0.87",
|
|
2654
|
+
]
|
|
2655
|
+
|
|
2656
|
+
[[package]]
|
|
2657
|
+
name = "pyo3-macros-backend"
|
|
2658
|
+
version = "0.23.3"
|
|
2659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
+
checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
|
|
2661
|
+
dependencies = [
|
|
2662
|
+
"heck 0.5.0",
|
|
2663
|
+
"proc-macro2",
|
|
2664
|
+
"pyo3-build-config",
|
|
2665
|
+
"quote",
|
|
2666
|
+
"syn 2.0.87",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "quick-xml"
|
|
2671
|
+
version = "0.37.1"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"memchr",
|
|
2676
|
+
"serde",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "quote"
|
|
2681
|
+
version = "1.0.37"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"proc-macro2",
|
|
2686
|
+
]
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "rancor"
|
|
2690
|
+
version = "0.1.0"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "caf5f7161924b9d1cea0e4cabc97c372cea92b5f927fc13c6bca67157a0ad947"
|
|
2693
|
+
dependencies = [
|
|
2694
|
+
"ptr_meta",
|
|
2695
|
+
]
|
|
2696
|
+
|
|
2697
|
+
[[package]]
|
|
2698
|
+
name = "rand"
|
|
2699
|
+
version = "0.8.5"
|
|
2700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2702
|
+
dependencies = [
|
|
2703
|
+
"libc",
|
|
2704
|
+
"rand_chacha",
|
|
2705
|
+
"rand_core",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "rand_chacha"
|
|
2710
|
+
version = "0.3.1"
|
|
2711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2712
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2713
|
+
dependencies = [
|
|
2714
|
+
"ppv-lite86",
|
|
2715
|
+
"rand_core",
|
|
2716
|
+
]
|
|
2717
|
+
|
|
2718
|
+
[[package]]
|
|
2719
|
+
name = "rand_core"
|
|
2720
|
+
version = "0.6.4"
|
|
2721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2723
|
+
dependencies = [
|
|
2724
|
+
"getrandom",
|
|
2725
|
+
]
|
|
2726
|
+
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "rand_distr"
|
|
2729
|
+
version = "0.4.3"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2732
|
+
dependencies = [
|
|
2733
|
+
"num-traits",
|
|
2734
|
+
"rand",
|
|
2735
|
+
]
|
|
2736
|
+
|
|
2737
|
+
[[package]]
|
|
2738
|
+
name = "rayon"
|
|
2739
|
+
version = "1.10.0"
|
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
2742
|
+
dependencies = [
|
|
2743
|
+
"either",
|
|
2744
|
+
"rayon-core",
|
|
2745
|
+
]
|
|
2746
|
+
|
|
2747
|
+
[[package]]
|
|
2748
|
+
name = "rayon-core"
|
|
2749
|
+
version = "1.12.1"
|
|
2750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2752
|
+
dependencies = [
|
|
2753
|
+
"crossbeam-deque",
|
|
2754
|
+
"crossbeam-utils",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "redox_syscall"
|
|
2759
|
+
version = "0.5.7"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"bitflags 2.6.0",
|
|
2764
|
+
]
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "redox_users"
|
|
2768
|
+
version = "0.4.6"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2771
|
+
dependencies = [
|
|
2772
|
+
"getrandom",
|
|
2773
|
+
"libredox",
|
|
2774
|
+
"thiserror 1.0.68",
|
|
2775
|
+
]
|
|
2776
|
+
|
|
2777
|
+
[[package]]
|
|
2778
|
+
name = "regex"
|
|
2779
|
+
version = "1.11.1"
|
|
2780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
2782
|
+
dependencies = [
|
|
2783
|
+
"aho-corasick",
|
|
2784
|
+
"memchr",
|
|
2785
|
+
"regex-automata",
|
|
2786
|
+
"regex-syntax",
|
|
2787
|
+
]
|
|
2788
|
+
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "regex-automata"
|
|
2791
|
+
version = "0.4.8"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
|
|
2794
|
+
dependencies = [
|
|
2795
|
+
"aho-corasick",
|
|
2796
|
+
"memchr",
|
|
2797
|
+
"regex-syntax",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "regex-lite"
|
|
2802
|
+
version = "0.1.6"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
|
|
2805
|
+
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "regex-syntax"
|
|
2808
|
+
version = "0.8.5"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "rend"
|
|
2814
|
+
version = "0.5.2"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "a35e8a6bf28cd121053a66aa2e6a2e3eaffad4a60012179f0e864aa5ffeff215"
|
|
2817
|
+
dependencies = [
|
|
2818
|
+
"bytecheck",
|
|
2819
|
+
]
|
|
2820
|
+
|
|
2821
|
+
[[package]]
|
|
2822
|
+
name = "ring"
|
|
2823
|
+
version = "0.17.8"
|
|
2824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
|
2826
|
+
dependencies = [
|
|
2827
|
+
"cc",
|
|
2828
|
+
"cfg-if",
|
|
2829
|
+
"getrandom",
|
|
2830
|
+
"libc",
|
|
2831
|
+
"spin",
|
|
2832
|
+
"untrusted",
|
|
2833
|
+
"windows-sys 0.52.0",
|
|
2834
|
+
]
|
|
2835
|
+
|
|
2836
|
+
[[package]]
|
|
2837
|
+
name = "rkyv"
|
|
2838
|
+
version = "0.8.9"
|
|
2839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
+
checksum = "b11a153aec4a6ab60795f8ebe2923c597b16b05bb1504377451e705ef1a45323"
|
|
2841
|
+
dependencies = [
|
|
2842
|
+
"bytecheck",
|
|
2843
|
+
"bytes",
|
|
2844
|
+
"hashbrown 0.15.1",
|
|
2845
|
+
"indexmap",
|
|
2846
|
+
"munge",
|
|
2847
|
+
"ptr_meta",
|
|
2848
|
+
"rancor",
|
|
2849
|
+
"rend",
|
|
2850
|
+
"rkyv_derive",
|
|
2851
|
+
"tinyvec",
|
|
2852
|
+
"uuid",
|
|
2853
|
+
]
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "rkyv_derive"
|
|
2857
|
+
version = "0.8.9"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "beb382a4d9f53bd5c0be86b10d8179c3f8a14c30bf774ff77096ed6581e35981"
|
|
2860
|
+
dependencies = [
|
|
2861
|
+
"proc-macro2",
|
|
2862
|
+
"quote",
|
|
2863
|
+
"syn 2.0.87",
|
|
2864
|
+
]
|
|
2865
|
+
|
|
2866
|
+
[[package]]
|
|
2867
|
+
name = "rust-stemmers"
|
|
2868
|
+
version = "1.2.0"
|
|
2869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
+
checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
|
|
2871
|
+
dependencies = [
|
|
2872
|
+
"serde",
|
|
2873
|
+
"serde_derive",
|
|
2874
|
+
]
|
|
2875
|
+
|
|
2876
|
+
[[package]]
|
|
2877
|
+
name = "rustc-demangle"
|
|
2878
|
+
version = "0.1.24"
|
|
2879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
2881
|
+
|
|
2882
|
+
[[package]]
|
|
2883
|
+
name = "rustc-hash"
|
|
2884
|
+
version = "1.1.0"
|
|
2885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "rustc_version"
|
|
2890
|
+
version = "0.4.1"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2893
|
+
dependencies = [
|
|
2894
|
+
"semver",
|
|
2895
|
+
]
|
|
2896
|
+
|
|
2897
|
+
[[package]]
|
|
2898
|
+
name = "rustix"
|
|
2899
|
+
version = "0.38.39"
|
|
2900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
+
checksum = "375116bee2be9ed569afe2154ea6a99dfdffd257f533f187498c2a8f5feaf4ee"
|
|
2902
|
+
dependencies = [
|
|
2903
|
+
"bitflags 2.6.0",
|
|
2904
|
+
"errno",
|
|
2905
|
+
"libc",
|
|
2906
|
+
"linux-raw-sys",
|
|
2907
|
+
"windows-sys 0.52.0",
|
|
2908
|
+
]
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "rustls"
|
|
2912
|
+
version = "0.23.16"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
|
|
2915
|
+
dependencies = [
|
|
2916
|
+
"log",
|
|
2917
|
+
"once_cell",
|
|
2918
|
+
"ring",
|
|
2919
|
+
"rustls-pki-types",
|
|
2920
|
+
"rustls-webpki",
|
|
2921
|
+
"subtle",
|
|
2922
|
+
"zeroize",
|
|
2923
|
+
]
|
|
2924
|
+
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "rustls-pki-types"
|
|
2927
|
+
version = "1.10.0"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "rustls-webpki"
|
|
2933
|
+
version = "0.102.8"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"ring",
|
|
2938
|
+
"rustls-pki-types",
|
|
2939
|
+
"untrusted",
|
|
2940
|
+
]
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "rustversion"
|
|
2944
|
+
version = "1.0.18"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
|
|
2947
|
+
|
|
2948
|
+
[[package]]
|
|
2949
|
+
name = "ryu"
|
|
2950
|
+
version = "1.0.18"
|
|
2951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
2953
|
+
|
|
2954
|
+
[[package]]
|
|
2955
|
+
name = "same-file"
|
|
2956
|
+
version = "1.0.6"
|
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2959
|
+
dependencies = [
|
|
2960
|
+
"winapi-util",
|
|
2961
|
+
]
|
|
2962
|
+
|
|
2963
|
+
[[package]]
|
|
2964
|
+
name = "scopeguard"
|
|
2965
|
+
version = "1.2.0"
|
|
2966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2968
|
+
|
|
2969
|
+
[[package]]
|
|
2970
|
+
name = "sea-query"
|
|
2971
|
+
version = "0.32.1"
|
|
2972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
+
checksum = "085e94f7d7271c0393ac2d164a39994b1dff1b06bc40cd9a0da04f3d672b0fee"
|
|
2974
|
+
dependencies = [
|
|
2975
|
+
"inherent",
|
|
2976
|
+
"sea-query-derive",
|
|
2977
|
+
]
|
|
2978
|
+
|
|
2979
|
+
[[package]]
|
|
2980
|
+
name = "sea-query-derive"
|
|
2981
|
+
version = "0.4.2"
|
|
2982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
+
checksum = "9834af2c4bd8c5162f00c89f1701fb6886119a88062cf76fe842ea9e232b9839"
|
|
2984
|
+
dependencies = [
|
|
2985
|
+
"darling",
|
|
2986
|
+
"heck 0.4.1",
|
|
2987
|
+
"proc-macro2",
|
|
2988
|
+
"quote",
|
|
2989
|
+
"syn 2.0.87",
|
|
2990
|
+
"thiserror 1.0.68",
|
|
2991
|
+
]
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "semver"
|
|
2995
|
+
version = "1.0.23"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "serde"
|
|
3001
|
+
version = "1.0.216"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
|
|
3004
|
+
dependencies = [
|
|
3005
|
+
"serde_derive",
|
|
3006
|
+
]
|
|
3007
|
+
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "serde_derive"
|
|
3010
|
+
version = "1.0.216"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
|
|
3013
|
+
dependencies = [
|
|
3014
|
+
"proc-macro2",
|
|
3015
|
+
"quote",
|
|
3016
|
+
"syn 2.0.87",
|
|
3017
|
+
]
|
|
3018
|
+
|
|
3019
|
+
[[package]]
|
|
3020
|
+
name = "serde_json"
|
|
3021
|
+
version = "1.0.133"
|
|
3022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
+
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
|
|
3024
|
+
dependencies = [
|
|
3025
|
+
"itoa",
|
|
3026
|
+
"memchr",
|
|
3027
|
+
"ryu",
|
|
3028
|
+
"serde",
|
|
3029
|
+
]
|
|
3030
|
+
|
|
3031
|
+
[[package]]
|
|
3032
|
+
name = "serde_urlencoded"
|
|
3033
|
+
version = "0.7.1"
|
|
3034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3035
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3036
|
+
dependencies = [
|
|
3037
|
+
"form_urlencoded",
|
|
3038
|
+
"itoa",
|
|
3039
|
+
"ryu",
|
|
3040
|
+
"serde",
|
|
3041
|
+
]
|
|
3042
|
+
|
|
3043
|
+
[[package]]
|
|
3044
|
+
name = "sha1"
|
|
3045
|
+
version = "0.10.6"
|
|
3046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3048
|
+
dependencies = [
|
|
3049
|
+
"cfg-if",
|
|
3050
|
+
"cpufeatures",
|
|
3051
|
+
"digest",
|
|
3052
|
+
]
|
|
3053
|
+
|
|
3054
|
+
[[package]]
|
|
3055
|
+
name = "shlex"
|
|
3056
|
+
version = "1.3.0"
|
|
3057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3058
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3059
|
+
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "signal-hook-registry"
|
|
3062
|
+
version = "1.4.2"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
|
3065
|
+
dependencies = [
|
|
3066
|
+
"libc",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
3069
|
+
[[package]]
|
|
3070
|
+
name = "simdutf8"
|
|
3071
|
+
version = "0.1.5"
|
|
3072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3073
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3074
|
+
|
|
3075
|
+
[[package]]
|
|
3076
|
+
name = "similar"
|
|
3077
|
+
version = "2.6.0"
|
|
3078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
+
checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e"
|
|
3080
|
+
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "siphasher"
|
|
3083
|
+
version = "0.3.11"
|
|
3084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
3086
|
+
|
|
3087
|
+
[[package]]
|
|
3088
|
+
name = "sketches-ddsketch"
|
|
3089
|
+
version = "0.2.2"
|
|
3090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
+
checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
|
|
3092
|
+
dependencies = [
|
|
3093
|
+
"serde",
|
|
3094
|
+
]
|
|
3095
|
+
|
|
3096
|
+
[[package]]
|
|
3097
|
+
name = "slab"
|
|
3098
|
+
version = "0.4.9"
|
|
3099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3100
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
3101
|
+
dependencies = [
|
|
3102
|
+
"autocfg",
|
|
3103
|
+
]
|
|
3104
|
+
|
|
3105
|
+
[[package]]
|
|
3106
|
+
name = "slice-group-by"
|
|
3107
|
+
version = "0.3.1"
|
|
3108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3109
|
+
checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
3110
|
+
|
|
3111
|
+
[[package]]
|
|
3112
|
+
name = "smallvec"
|
|
3113
|
+
version = "1.13.2"
|
|
3114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
|
3116
|
+
|
|
3117
|
+
[[package]]
|
|
3118
|
+
name = "socket2"
|
|
3119
|
+
version = "0.5.7"
|
|
3120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
|
3122
|
+
dependencies = [
|
|
3123
|
+
"libc",
|
|
3124
|
+
"windows-sys 0.52.0",
|
|
3125
|
+
]
|
|
3126
|
+
|
|
3127
|
+
[[package]]
|
|
3128
|
+
name = "spin"
|
|
3129
|
+
version = "0.9.8"
|
|
3130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3132
|
+
|
|
3133
|
+
[[package]]
|
|
3134
|
+
name = "stable_deref_trait"
|
|
3135
|
+
version = "1.2.0"
|
|
3136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3138
|
+
|
|
3139
|
+
[[package]]
|
|
3140
|
+
name = "static_assertions"
|
|
3141
|
+
version = "1.1.0"
|
|
3142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3144
|
+
|
|
3145
|
+
[[package]]
|
|
3146
|
+
name = "strsim"
|
|
3147
|
+
version = "0.11.1"
|
|
3148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3150
|
+
|
|
3151
|
+
[[package]]
|
|
3152
|
+
name = "strum"
|
|
3153
|
+
version = "0.26.3"
|
|
3154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3156
|
+
dependencies = [
|
|
3157
|
+
"strum_macros",
|
|
3158
|
+
]
|
|
3159
|
+
|
|
3160
|
+
[[package]]
|
|
3161
|
+
name = "strum_macros"
|
|
3162
|
+
version = "0.26.4"
|
|
3163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3164
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
3165
|
+
dependencies = [
|
|
3166
|
+
"heck 0.5.0",
|
|
3167
|
+
"proc-macro2",
|
|
3168
|
+
"quote",
|
|
3169
|
+
"rustversion",
|
|
3170
|
+
"syn 2.0.87",
|
|
3171
|
+
]
|
|
3172
|
+
|
|
3173
|
+
[[package]]
|
|
3174
|
+
name = "subtle"
|
|
3175
|
+
version = "2.6.1"
|
|
3176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3178
|
+
|
|
3179
|
+
[[package]]
|
|
3180
|
+
name = "syn"
|
|
3181
|
+
version = "1.0.109"
|
|
3182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3183
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3184
|
+
dependencies = [
|
|
3185
|
+
"proc-macro2",
|
|
3186
|
+
"quote",
|
|
3187
|
+
"unicode-ident",
|
|
3188
|
+
]
|
|
3189
|
+
|
|
3190
|
+
[[package]]
|
|
3191
|
+
name = "syn"
|
|
3192
|
+
version = "2.0.87"
|
|
3193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
+
checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
|
|
3195
|
+
dependencies = [
|
|
3196
|
+
"proc-macro2",
|
|
3197
|
+
"quote",
|
|
3198
|
+
"unicode-ident",
|
|
3199
|
+
]
|
|
3200
|
+
|
|
3201
|
+
[[package]]
|
|
3202
|
+
name = "synstructure"
|
|
3203
|
+
version = "0.13.1"
|
|
3204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
3206
|
+
dependencies = [
|
|
3207
|
+
"proc-macro2",
|
|
3208
|
+
"quote",
|
|
3209
|
+
"syn 2.0.87",
|
|
3210
|
+
]
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "tantivy"
|
|
3214
|
+
version = "0.22.0"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "f8d0582f186c0a6d55655d24543f15e43607299425c5ad8352c242b914b31856"
|
|
3217
|
+
dependencies = [
|
|
3218
|
+
"aho-corasick",
|
|
3219
|
+
"arc-swap",
|
|
3220
|
+
"base64",
|
|
3221
|
+
"bitpacking",
|
|
3222
|
+
"byteorder",
|
|
3223
|
+
"census",
|
|
3224
|
+
"crc32fast",
|
|
3225
|
+
"crossbeam-channel",
|
|
3226
|
+
"downcast-rs",
|
|
3227
|
+
"fastdivide",
|
|
3228
|
+
"fnv",
|
|
3229
|
+
"fs4",
|
|
3230
|
+
"htmlescape",
|
|
3231
|
+
"itertools 0.12.1",
|
|
3232
|
+
"levenshtein_automata",
|
|
3233
|
+
"log",
|
|
3234
|
+
"lru",
|
|
3235
|
+
"lz4_flex",
|
|
3236
|
+
"measure_time",
|
|
3237
|
+
"memmap2",
|
|
3238
|
+
"num_cpus",
|
|
3239
|
+
"once_cell",
|
|
3240
|
+
"oneshot",
|
|
3241
|
+
"rayon",
|
|
3242
|
+
"regex",
|
|
3243
|
+
"rust-stemmers",
|
|
3244
|
+
"rustc-hash",
|
|
3245
|
+
"serde",
|
|
3246
|
+
"serde_json",
|
|
3247
|
+
"sketches-ddsketch",
|
|
3248
|
+
"smallvec",
|
|
3249
|
+
"tantivy-bitpacker",
|
|
3250
|
+
"tantivy-columnar",
|
|
3251
|
+
"tantivy-common",
|
|
3252
|
+
"tantivy-fst",
|
|
3253
|
+
"tantivy-query-grammar",
|
|
3254
|
+
"tantivy-stacker",
|
|
3255
|
+
"tantivy-tokenizer-api",
|
|
3256
|
+
"tempfile",
|
|
3257
|
+
"thiserror 1.0.68",
|
|
3258
|
+
"time",
|
|
3259
|
+
"uuid",
|
|
3260
|
+
"winapi",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "tantivy-bitpacker"
|
|
3265
|
+
version = "0.6.0"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df"
|
|
3268
|
+
dependencies = [
|
|
3269
|
+
"bitpacking",
|
|
3270
|
+
]
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "tantivy-columnar"
|
|
3274
|
+
version = "0.3.0"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e"
|
|
3277
|
+
dependencies = [
|
|
3278
|
+
"downcast-rs",
|
|
3279
|
+
"fastdivide",
|
|
3280
|
+
"itertools 0.12.1",
|
|
3281
|
+
"serde",
|
|
3282
|
+
"tantivy-bitpacker",
|
|
3283
|
+
"tantivy-common",
|
|
3284
|
+
"tantivy-sstable",
|
|
3285
|
+
"tantivy-stacker",
|
|
3286
|
+
]
|
|
3287
|
+
|
|
3288
|
+
[[package]]
|
|
3289
|
+
name = "tantivy-common"
|
|
3290
|
+
version = "0.7.0"
|
|
3291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3292
|
+
checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4"
|
|
3293
|
+
dependencies = [
|
|
3294
|
+
"async-trait",
|
|
3295
|
+
"byteorder",
|
|
3296
|
+
"ownedbytes",
|
|
3297
|
+
"serde",
|
|
3298
|
+
"time",
|
|
3299
|
+
]
|
|
3300
|
+
|
|
3301
|
+
[[package]]
|
|
3302
|
+
name = "tantivy-fst"
|
|
3303
|
+
version = "0.5.0"
|
|
3304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3305
|
+
checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
|
|
3306
|
+
dependencies = [
|
|
3307
|
+
"byteorder",
|
|
3308
|
+
"regex-syntax",
|
|
3309
|
+
"utf8-ranges",
|
|
3310
|
+
]
|
|
3311
|
+
|
|
3312
|
+
[[package]]
|
|
3313
|
+
name = "tantivy-query-grammar"
|
|
3314
|
+
version = "0.22.0"
|
|
3315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
+
checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82"
|
|
3317
|
+
dependencies = [
|
|
3318
|
+
"nom",
|
|
3319
|
+
]
|
|
3320
|
+
|
|
3321
|
+
[[package]]
|
|
3322
|
+
name = "tantivy-sstable"
|
|
3323
|
+
version = "0.3.0"
|
|
3324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3325
|
+
checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e"
|
|
3326
|
+
dependencies = [
|
|
3327
|
+
"tantivy-bitpacker",
|
|
3328
|
+
"tantivy-common",
|
|
3329
|
+
"tantivy-fst",
|
|
3330
|
+
"zstd",
|
|
3331
|
+
]
|
|
3332
|
+
|
|
3333
|
+
[[package]]
|
|
3334
|
+
name = "tantivy-stacker"
|
|
3335
|
+
version = "0.3.0"
|
|
3336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
+
checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8"
|
|
3338
|
+
dependencies = [
|
|
3339
|
+
"murmurhash32",
|
|
3340
|
+
"rand_distr",
|
|
3341
|
+
"tantivy-common",
|
|
3342
|
+
]
|
|
3343
|
+
|
|
3344
|
+
[[package]]
|
|
3345
|
+
name = "tantivy-tokenizer-api"
|
|
3346
|
+
version = "0.3.0"
|
|
3347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3348
|
+
checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04"
|
|
3349
|
+
dependencies = [
|
|
3350
|
+
"serde",
|
|
3351
|
+
]
|
|
3352
|
+
|
|
3353
|
+
[[package]]
|
|
3354
|
+
name = "tar"
|
|
3355
|
+
version = "0.4.43"
|
|
3356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
+
checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6"
|
|
3358
|
+
dependencies = [
|
|
3359
|
+
"filetime",
|
|
3360
|
+
"libc",
|
|
3361
|
+
"xattr",
|
|
3362
|
+
]
|
|
3363
|
+
|
|
3364
|
+
[[package]]
|
|
3365
|
+
name = "target-lexicon"
|
|
3366
|
+
version = "0.12.16"
|
|
3367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3369
|
+
|
|
3370
|
+
[[package]]
|
|
3371
|
+
name = "tempfile"
|
|
3372
|
+
version = "3.14.0"
|
|
3373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
+
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
|
|
3375
|
+
dependencies = [
|
|
3376
|
+
"cfg-if",
|
|
3377
|
+
"fastrand",
|
|
3378
|
+
"once_cell",
|
|
3379
|
+
"rustix",
|
|
3380
|
+
"windows-sys 0.59.0",
|
|
3381
|
+
]
|
|
3382
|
+
|
|
3383
|
+
[[package]]
|
|
3384
|
+
name = "thiserror"
|
|
3385
|
+
version = "1.0.68"
|
|
3386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
+
checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892"
|
|
3388
|
+
dependencies = [
|
|
3389
|
+
"thiserror-impl 1.0.68",
|
|
3390
|
+
]
|
|
3391
|
+
|
|
3392
|
+
[[package]]
|
|
3393
|
+
name = "thiserror"
|
|
3394
|
+
version = "2.0.9"
|
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
+
checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
|
|
3397
|
+
dependencies = [
|
|
3398
|
+
"thiserror-impl 2.0.9",
|
|
3399
|
+
]
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "thiserror-impl"
|
|
3403
|
+
version = "1.0.68"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e"
|
|
3406
|
+
dependencies = [
|
|
3407
|
+
"proc-macro2",
|
|
3408
|
+
"quote",
|
|
3409
|
+
"syn 2.0.87",
|
|
3410
|
+
]
|
|
3411
|
+
|
|
3412
|
+
[[package]]
|
|
3413
|
+
name = "thiserror-impl"
|
|
3414
|
+
version = "2.0.9"
|
|
3415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
|
+
checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
|
|
3417
|
+
dependencies = [
|
|
3418
|
+
"proc-macro2",
|
|
3419
|
+
"quote",
|
|
3420
|
+
"syn 2.0.87",
|
|
3421
|
+
]
|
|
3422
|
+
|
|
3423
|
+
[[package]]
|
|
3424
|
+
name = "time"
|
|
3425
|
+
version = "0.3.36"
|
|
3426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
|
3428
|
+
dependencies = [
|
|
3429
|
+
"deranged",
|
|
3430
|
+
"itoa",
|
|
3431
|
+
"num-conv",
|
|
3432
|
+
"powerfmt",
|
|
3433
|
+
"serde",
|
|
3434
|
+
"time-core",
|
|
3435
|
+
"time-macros",
|
|
3436
|
+
]
|
|
3437
|
+
|
|
3438
|
+
[[package]]
|
|
3439
|
+
name = "time-core"
|
|
3440
|
+
version = "0.1.2"
|
|
3441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
3443
|
+
|
|
3444
|
+
[[package]]
|
|
3445
|
+
name = "time-macros"
|
|
3446
|
+
version = "0.2.18"
|
|
3447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
|
3449
|
+
dependencies = [
|
|
3450
|
+
"num-conv",
|
|
3451
|
+
"time-core",
|
|
3452
|
+
]
|
|
3453
|
+
|
|
3454
|
+
[[package]]
|
|
3455
|
+
name = "tinystr"
|
|
3456
|
+
version = "0.7.6"
|
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
3459
|
+
dependencies = [
|
|
3460
|
+
"displaydoc",
|
|
3461
|
+
"zerovec",
|
|
3462
|
+
]
|
|
3463
|
+
|
|
3464
|
+
[[package]]
|
|
3465
|
+
name = "tinytemplate"
|
|
3466
|
+
version = "1.2.1"
|
|
3467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3468
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3469
|
+
dependencies = [
|
|
3470
|
+
"serde",
|
|
3471
|
+
"serde_json",
|
|
3472
|
+
]
|
|
3473
|
+
|
|
3474
|
+
[[package]]
|
|
3475
|
+
name = "tinyvec"
|
|
3476
|
+
version = "1.8.0"
|
|
3477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
|
3479
|
+
dependencies = [
|
|
3480
|
+
"tinyvec_macros",
|
|
3481
|
+
]
|
|
3482
|
+
|
|
3483
|
+
[[package]]
|
|
3484
|
+
name = "tinyvec_macros"
|
|
3485
|
+
version = "0.1.1"
|
|
3486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3488
|
+
|
|
3489
|
+
[[package]]
|
|
3490
|
+
name = "tokio"
|
|
3491
|
+
version = "1.41.1"
|
|
3492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
+
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
|
|
3494
|
+
dependencies = [
|
|
3495
|
+
"backtrace",
|
|
3496
|
+
"bytes",
|
|
3497
|
+
"libc",
|
|
3498
|
+
"mio",
|
|
3499
|
+
"parking_lot",
|
|
3500
|
+
"pin-project-lite",
|
|
3501
|
+
"signal-hook-registry",
|
|
3502
|
+
"socket2",
|
|
3503
|
+
"windows-sys 0.52.0",
|
|
3504
|
+
]
|
|
3505
|
+
|
|
3506
|
+
[[package]]
|
|
3507
|
+
name = "tokio-util"
|
|
3508
|
+
version = "0.7.12"
|
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
+
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
|
|
3511
|
+
dependencies = [
|
|
3512
|
+
"bytes",
|
|
3513
|
+
"futures-core",
|
|
3514
|
+
"futures-sink",
|
|
3515
|
+
"pin-project-lite",
|
|
3516
|
+
"tokio",
|
|
3517
|
+
]
|
|
3518
|
+
|
|
3519
|
+
[[package]]
|
|
3520
|
+
name = "tracing"
|
|
3521
|
+
version = "0.1.40"
|
|
3522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
3524
|
+
dependencies = [
|
|
3525
|
+
"log",
|
|
3526
|
+
"pin-project-lite",
|
|
3527
|
+
"tracing-core",
|
|
3528
|
+
]
|
|
3529
|
+
|
|
3530
|
+
[[package]]
|
|
3531
|
+
name = "tracing-core"
|
|
3532
|
+
version = "0.1.32"
|
|
3533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
3535
|
+
dependencies = [
|
|
3536
|
+
"once_cell",
|
|
3537
|
+
]
|
|
3538
|
+
|
|
3539
|
+
[[package]]
|
|
3540
|
+
name = "twox-hash"
|
|
3541
|
+
version = "1.6.3"
|
|
3542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
3544
|
+
dependencies = [
|
|
3545
|
+
"cfg-if",
|
|
3546
|
+
"static_assertions",
|
|
3547
|
+
]
|
|
3548
|
+
|
|
3549
|
+
[[package]]
|
|
3550
|
+
name = "typenum"
|
|
3551
|
+
version = "1.17.0"
|
|
3552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
3554
|
+
|
|
3555
|
+
[[package]]
|
|
3556
|
+
name = "unicase"
|
|
3557
|
+
version = "2.8.0"
|
|
3558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
+
checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
|
|
3560
|
+
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "unicode-blocks"
|
|
3563
|
+
version = "0.1.9"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "unicode-ident"
|
|
3569
|
+
version = "1.0.13"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|
3572
|
+
|
|
3573
|
+
[[package]]
|
|
3574
|
+
name = "unicode-normalization"
|
|
3575
|
+
version = "0.1.24"
|
|
3576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3577
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
3578
|
+
dependencies = [
|
|
3579
|
+
"tinyvec",
|
|
3580
|
+
]
|
|
3581
|
+
|
|
3582
|
+
[[package]]
|
|
3583
|
+
name = "unicode-segmentation"
|
|
3584
|
+
version = "1.12.0"
|
|
3585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3587
|
+
|
|
3588
|
+
[[package]]
|
|
3589
|
+
name = "unicode-width"
|
|
3590
|
+
version = "0.1.14"
|
|
3591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3592
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3593
|
+
|
|
3594
|
+
[[package]]
|
|
3595
|
+
name = "unicode-width"
|
|
3596
|
+
version = "0.2.0"
|
|
3597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3598
|
+
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3599
|
+
|
|
3600
|
+
[[package]]
|
|
3601
|
+
name = "unindent"
|
|
3602
|
+
version = "0.2.3"
|
|
3603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
3605
|
+
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "untrusted"
|
|
3608
|
+
version = "0.9.0"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "ureq"
|
|
3614
|
+
version = "2.10.1"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"base64",
|
|
3619
|
+
"log",
|
|
3620
|
+
"once_cell",
|
|
3621
|
+
"rustls",
|
|
3622
|
+
"rustls-pki-types",
|
|
3623
|
+
"url",
|
|
3624
|
+
"webpki-roots",
|
|
3625
|
+
]
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "url"
|
|
3629
|
+
version = "2.5.3"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada"
|
|
3632
|
+
dependencies = [
|
|
3633
|
+
"form_urlencoded",
|
|
3634
|
+
"idna",
|
|
3635
|
+
"percent-encoding",
|
|
3636
|
+
]
|
|
3637
|
+
|
|
3638
|
+
[[package]]
|
|
3639
|
+
name = "utf16_iter"
|
|
3640
|
+
version = "1.0.5"
|
|
3641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3642
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "utf8-ranges"
|
|
3646
|
+
version = "1.0.5"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
|
|
3649
|
+
|
|
3650
|
+
[[package]]
|
|
3651
|
+
name = "utf8_iter"
|
|
3652
|
+
version = "1.0.4"
|
|
3653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3654
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3655
|
+
|
|
3656
|
+
[[package]]
|
|
3657
|
+
name = "utf8parse"
|
|
3658
|
+
version = "0.2.2"
|
|
3659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3660
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3661
|
+
|
|
3662
|
+
[[package]]
|
|
3663
|
+
name = "uuid"
|
|
3664
|
+
version = "1.11.0"
|
|
3665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
+
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
|
3667
|
+
dependencies = [
|
|
3668
|
+
"getrandom",
|
|
3669
|
+
"rand",
|
|
3670
|
+
"serde",
|
|
3671
|
+
"uuid-macro-internal",
|
|
3672
|
+
]
|
|
3673
|
+
|
|
3674
|
+
[[package]]
|
|
3675
|
+
name = "uuid-macro-internal"
|
|
3676
|
+
version = "1.11.0"
|
|
3677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
+
checksum = "6b91f57fe13a38d0ce9e28a03463d8d3c2468ed03d75375110ec71d93b449a08"
|
|
3679
|
+
dependencies = [
|
|
3680
|
+
"proc-macro2",
|
|
3681
|
+
"quote",
|
|
3682
|
+
"syn 2.0.87",
|
|
3683
|
+
]
|
|
3684
|
+
|
|
3685
|
+
[[package]]
|
|
3686
|
+
name = "validation"
|
|
3687
|
+
version = "0.0.1"
|
|
3688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
+
checksum = "3fb8044f0b8a3e94bc8cd089c6a2e42e435553093800b76762418d4bbc3289cc"
|
|
3690
|
+
|
|
3691
|
+
[[package]]
|
|
3692
|
+
name = "version_check"
|
|
3693
|
+
version = "0.9.5"
|
|
3694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "walkdir"
|
|
3699
|
+
version = "2.5.0"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3702
|
+
dependencies = [
|
|
3703
|
+
"same-file",
|
|
3704
|
+
"winapi-util",
|
|
3705
|
+
]
|
|
3706
|
+
|
|
3707
|
+
[[package]]
|
|
3708
|
+
name = "wana_kana"
|
|
3709
|
+
version = "4.0.0"
|
|
3710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3711
|
+
checksum = "a74666202acfcb4f9b995be2e3e9f7f530deb65e05a1407b8d0b30c9c451238a"
|
|
3712
|
+
dependencies = [
|
|
3713
|
+
"fnv",
|
|
3714
|
+
"itertools 0.10.5",
|
|
3715
|
+
"lazy_static",
|
|
3716
|
+
]
|
|
3717
|
+
|
|
3718
|
+
[[package]]
|
|
3719
|
+
name = "wasi"
|
|
3720
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "wasm-bindgen"
|
|
3726
|
+
version = "0.2.95"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"cfg-if",
|
|
3731
|
+
"once_cell",
|
|
3732
|
+
"wasm-bindgen-macro",
|
|
3733
|
+
]
|
|
3734
|
+
|
|
3735
|
+
[[package]]
|
|
3736
|
+
name = "wasm-bindgen-backend"
|
|
3737
|
+
version = "0.2.95"
|
|
3738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
+
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
|
3740
|
+
dependencies = [
|
|
3741
|
+
"bumpalo",
|
|
3742
|
+
"log",
|
|
3743
|
+
"once_cell",
|
|
3744
|
+
"proc-macro2",
|
|
3745
|
+
"quote",
|
|
3746
|
+
"syn 2.0.87",
|
|
3747
|
+
"wasm-bindgen-shared",
|
|
3748
|
+
]
|
|
3749
|
+
|
|
3750
|
+
[[package]]
|
|
3751
|
+
name = "wasm-bindgen-macro"
|
|
3752
|
+
version = "0.2.95"
|
|
3753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
+
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
|
3755
|
+
dependencies = [
|
|
3756
|
+
"quote",
|
|
3757
|
+
"wasm-bindgen-macro-support",
|
|
3758
|
+
]
|
|
3759
|
+
|
|
3760
|
+
[[package]]
|
|
3761
|
+
name = "wasm-bindgen-macro-support"
|
|
3762
|
+
version = "0.2.95"
|
|
3763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
+
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
|
3765
|
+
dependencies = [
|
|
3766
|
+
"proc-macro2",
|
|
3767
|
+
"quote",
|
|
3768
|
+
"syn 2.0.87",
|
|
3769
|
+
"wasm-bindgen-backend",
|
|
3770
|
+
"wasm-bindgen-shared",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "wasm-bindgen-shared"
|
|
3775
|
+
version = "0.2.95"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
|
3778
|
+
|
|
3779
|
+
[[package]]
|
|
3780
|
+
name = "web-sys"
|
|
3781
|
+
version = "0.3.72"
|
|
3782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3783
|
+
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
|
|
3784
|
+
dependencies = [
|
|
3785
|
+
"js-sys",
|
|
3786
|
+
"wasm-bindgen",
|
|
3787
|
+
]
|
|
3788
|
+
|
|
3789
|
+
[[package]]
|
|
3790
|
+
name = "web-time"
|
|
3791
|
+
version = "1.1.0"
|
|
3792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3793
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3794
|
+
dependencies = [
|
|
3795
|
+
"js-sys",
|
|
3796
|
+
"wasm-bindgen",
|
|
3797
|
+
]
|
|
3798
|
+
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "webpki-roots"
|
|
3801
|
+
version = "0.26.6"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958"
|
|
3804
|
+
dependencies = [
|
|
3805
|
+
"rustls-pki-types",
|
|
3806
|
+
]
|
|
3807
|
+
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "whatlang"
|
|
3810
|
+
version = "0.16.4"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "471d1c1645d361eb782a1650b1786a8fb58dd625e681a04c09f5ff7c8764a7b0"
|
|
3813
|
+
dependencies = [
|
|
3814
|
+
"hashbrown 0.14.5",
|
|
3815
|
+
"once_cell",
|
|
3816
|
+
]
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "winapi"
|
|
3820
|
+
version = "0.3.9"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3823
|
+
dependencies = [
|
|
3824
|
+
"winapi-i686-pc-windows-gnu",
|
|
3825
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3826
|
+
]
|
|
3827
|
+
|
|
3828
|
+
[[package]]
|
|
3829
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3830
|
+
version = "0.4.0"
|
|
3831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3832
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3833
|
+
|
|
3834
|
+
[[package]]
|
|
3835
|
+
name = "winapi-util"
|
|
3836
|
+
version = "0.1.9"
|
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
3839
|
+
dependencies = [
|
|
3840
|
+
"windows-sys 0.59.0",
|
|
3841
|
+
]
|
|
3842
|
+
|
|
3843
|
+
[[package]]
|
|
3844
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3845
|
+
version = "0.4.0"
|
|
3846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3848
|
+
|
|
3849
|
+
[[package]]
|
|
3850
|
+
name = "windows-sys"
|
|
3851
|
+
version = "0.48.0"
|
|
3852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3853
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3854
|
+
dependencies = [
|
|
3855
|
+
"windows-targets 0.48.5",
|
|
3856
|
+
]
|
|
3857
|
+
|
|
3858
|
+
[[package]]
|
|
3859
|
+
name = "windows-sys"
|
|
3860
|
+
version = "0.52.0"
|
|
3861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3863
|
+
dependencies = [
|
|
3864
|
+
"windows-targets 0.52.6",
|
|
3865
|
+
]
|
|
3866
|
+
|
|
3867
|
+
[[package]]
|
|
3868
|
+
name = "windows-sys"
|
|
3869
|
+
version = "0.59.0"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3872
|
+
dependencies = [
|
|
3873
|
+
"windows-targets 0.52.6",
|
|
3874
|
+
]
|
|
3875
|
+
|
|
3876
|
+
[[package]]
|
|
3877
|
+
name = "windows-targets"
|
|
3878
|
+
version = "0.48.5"
|
|
3879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3880
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3881
|
+
dependencies = [
|
|
3882
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3883
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3884
|
+
"windows_i686_gnu 0.48.5",
|
|
3885
|
+
"windows_i686_msvc 0.48.5",
|
|
3886
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3887
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3888
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3889
|
+
]
|
|
3890
|
+
|
|
3891
|
+
[[package]]
|
|
3892
|
+
name = "windows-targets"
|
|
3893
|
+
version = "0.52.6"
|
|
3894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3896
|
+
dependencies = [
|
|
3897
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3898
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3899
|
+
"windows_i686_gnu 0.52.6",
|
|
3900
|
+
"windows_i686_gnullvm",
|
|
3901
|
+
"windows_i686_msvc 0.52.6",
|
|
3902
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3903
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3904
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3905
|
+
]
|
|
3906
|
+
|
|
3907
|
+
[[package]]
|
|
3908
|
+
name = "windows_aarch64_gnullvm"
|
|
3909
|
+
version = "0.48.5"
|
|
3910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3911
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3912
|
+
|
|
3913
|
+
[[package]]
|
|
3914
|
+
name = "windows_aarch64_gnullvm"
|
|
3915
|
+
version = "0.52.6"
|
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3918
|
+
|
|
3919
|
+
[[package]]
|
|
3920
|
+
name = "windows_aarch64_msvc"
|
|
3921
|
+
version = "0.48.5"
|
|
3922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3923
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3924
|
+
|
|
3925
|
+
[[package]]
|
|
3926
|
+
name = "windows_aarch64_msvc"
|
|
3927
|
+
version = "0.52.6"
|
|
3928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3929
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3930
|
+
|
|
3931
|
+
[[package]]
|
|
3932
|
+
name = "windows_i686_gnu"
|
|
3933
|
+
version = "0.48.5"
|
|
3934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3936
|
+
|
|
3937
|
+
[[package]]
|
|
3938
|
+
name = "windows_i686_gnu"
|
|
3939
|
+
version = "0.52.6"
|
|
3940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3941
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "windows_i686_gnullvm"
|
|
3945
|
+
version = "0.52.6"
|
|
3946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3948
|
+
|
|
3949
|
+
[[package]]
|
|
3950
|
+
name = "windows_i686_msvc"
|
|
3951
|
+
version = "0.48.5"
|
|
3952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3954
|
+
|
|
3955
|
+
[[package]]
|
|
3956
|
+
name = "windows_i686_msvc"
|
|
3957
|
+
version = "0.52.6"
|
|
3958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3959
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3960
|
+
|
|
3961
|
+
[[package]]
|
|
3962
|
+
name = "windows_x86_64_gnu"
|
|
3963
|
+
version = "0.48.5"
|
|
3964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3965
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3966
|
+
|
|
3967
|
+
[[package]]
|
|
3968
|
+
name = "windows_x86_64_gnu"
|
|
3969
|
+
version = "0.52.6"
|
|
3970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3971
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3972
|
+
|
|
3973
|
+
[[package]]
|
|
3974
|
+
name = "windows_x86_64_gnullvm"
|
|
3975
|
+
version = "0.48.5"
|
|
3976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3977
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3978
|
+
|
|
3979
|
+
[[package]]
|
|
3980
|
+
name = "windows_x86_64_gnullvm"
|
|
3981
|
+
version = "0.52.6"
|
|
3982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3983
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3984
|
+
|
|
3985
|
+
[[package]]
|
|
3986
|
+
name = "windows_x86_64_msvc"
|
|
3987
|
+
version = "0.48.5"
|
|
3988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3990
|
+
|
|
3991
|
+
[[package]]
|
|
3992
|
+
name = "windows_x86_64_msvc"
|
|
3993
|
+
version = "0.52.6"
|
|
3994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3995
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3996
|
+
|
|
3997
|
+
[[package]]
|
|
3998
|
+
name = "write16"
|
|
3999
|
+
version = "1.0.0"
|
|
4000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4001
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
4002
|
+
|
|
4003
|
+
[[package]]
|
|
4004
|
+
name = "writeable"
|
|
4005
|
+
version = "0.5.5"
|
|
4006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4007
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
4008
|
+
|
|
4009
|
+
[[package]]
|
|
4010
|
+
name = "xattr"
|
|
4011
|
+
version = "1.3.1"
|
|
4012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4013
|
+
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
|
|
4014
|
+
dependencies = [
|
|
4015
|
+
"libc",
|
|
4016
|
+
"linux-raw-sys",
|
|
4017
|
+
"rustix",
|
|
4018
|
+
]
|
|
4019
|
+
|
|
4020
|
+
[[package]]
|
|
4021
|
+
name = "yada"
|
|
4022
|
+
version = "0.5.1"
|
|
4023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
|
+
checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
|
|
4025
|
+
|
|
4026
|
+
[[package]]
|
|
4027
|
+
name = "yoke"
|
|
4028
|
+
version = "0.7.4"
|
|
4029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
+
checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
|
|
4031
|
+
dependencies = [
|
|
4032
|
+
"serde",
|
|
4033
|
+
"stable_deref_trait",
|
|
4034
|
+
"yoke-derive",
|
|
4035
|
+
"zerofrom",
|
|
4036
|
+
]
|
|
4037
|
+
|
|
4038
|
+
[[package]]
|
|
4039
|
+
name = "yoke-derive"
|
|
4040
|
+
version = "0.7.4"
|
|
4041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
+
checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
|
|
4043
|
+
dependencies = [
|
|
4044
|
+
"proc-macro2",
|
|
4045
|
+
"quote",
|
|
4046
|
+
"syn 2.0.87",
|
|
4047
|
+
"synstructure",
|
|
4048
|
+
]
|
|
4049
|
+
|
|
4050
|
+
[[package]]
|
|
4051
|
+
name = "zerocopy"
|
|
4052
|
+
version = "0.7.35"
|
|
4053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4054
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4055
|
+
dependencies = [
|
|
4056
|
+
"byteorder",
|
|
4057
|
+
"zerocopy-derive",
|
|
4058
|
+
]
|
|
4059
|
+
|
|
4060
|
+
[[package]]
|
|
4061
|
+
name = "zerocopy-derive"
|
|
4062
|
+
version = "0.7.35"
|
|
4063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4064
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
4065
|
+
dependencies = [
|
|
4066
|
+
"proc-macro2",
|
|
4067
|
+
"quote",
|
|
4068
|
+
"syn 2.0.87",
|
|
4069
|
+
]
|
|
4070
|
+
|
|
4071
|
+
[[package]]
|
|
4072
|
+
name = "zerofrom"
|
|
4073
|
+
version = "0.1.4"
|
|
4074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
+
checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
|
|
4076
|
+
dependencies = [
|
|
4077
|
+
"zerofrom-derive",
|
|
4078
|
+
]
|
|
4079
|
+
|
|
4080
|
+
[[package]]
|
|
4081
|
+
name = "zerofrom-derive"
|
|
4082
|
+
version = "0.1.4"
|
|
4083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4084
|
+
checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
|
|
4085
|
+
dependencies = [
|
|
4086
|
+
"proc-macro2",
|
|
4087
|
+
"quote",
|
|
4088
|
+
"syn 2.0.87",
|
|
4089
|
+
"synstructure",
|
|
4090
|
+
]
|
|
4091
|
+
|
|
4092
|
+
[[package]]
|
|
4093
|
+
name = "zeroize"
|
|
4094
|
+
version = "1.8.1"
|
|
4095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4096
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4097
|
+
|
|
4098
|
+
[[package]]
|
|
4099
|
+
name = "zerovec"
|
|
4100
|
+
version = "0.10.4"
|
|
4101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4102
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
4103
|
+
dependencies = [
|
|
4104
|
+
"yoke",
|
|
4105
|
+
"zerofrom",
|
|
4106
|
+
"zerovec-derive",
|
|
4107
|
+
]
|
|
4108
|
+
|
|
4109
|
+
[[package]]
|
|
4110
|
+
name = "zerovec-derive"
|
|
4111
|
+
version = "0.10.3"
|
|
4112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
4114
|
+
dependencies = [
|
|
4115
|
+
"proc-macro2",
|
|
4116
|
+
"quote",
|
|
4117
|
+
"syn 2.0.87",
|
|
4118
|
+
]
|
|
4119
|
+
|
|
4120
|
+
[[package]]
|
|
4121
|
+
name = "zstd"
|
|
4122
|
+
version = "0.13.2"
|
|
4123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
|
4125
|
+
dependencies = [
|
|
4126
|
+
"zstd-safe",
|
|
4127
|
+
]
|
|
4128
|
+
|
|
4129
|
+
[[package]]
|
|
4130
|
+
name = "zstd-safe"
|
|
4131
|
+
version = "7.2.1"
|
|
4132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4133
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
|
4134
|
+
dependencies = [
|
|
4135
|
+
"zstd-sys",
|
|
4136
|
+
]
|
|
4137
|
+
|
|
4138
|
+
[[package]]
|
|
4139
|
+
name = "zstd-sys"
|
|
4140
|
+
version = "2.0.13+zstd.1.5.6"
|
|
4141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4142
|
+
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
|
4143
|
+
dependencies = [
|
|
4144
|
+
"cc",
|
|
4145
|
+
"pkg-config",
|
|
4146
|
+
]
|