theopendictionary 1.0.0__tar.gz → 1.1.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 → theopendictionary-1.1.0}/Cargo.lock +732 -593
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/Cargo.toml +2 -1
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/PKG-INFO +1 -1
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/CHANGELOG.md +14 -60
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/Cargo.toml +33 -12
- theopendictionary-1.1.0/lib/src/compress.rs +60 -0
- theopendictionary-1.0.0/lib/src/core/constants.rs → theopendictionary-1.1.0/lib/src/core/io/consts.rs +1 -1
- theopendictionary-1.1.0/lib/src/core/io/mod.rs +6 -0
- {theopendictionary-1.0.0/lib/src/core → theopendictionary-1.1.0/lib/src/core/io}/read.rs +20 -13
- {theopendictionary-1.0.0/lib/src/core → theopendictionary-1.1.0/lib/src/core/io}/write.rs +62 -7
- theopendictionary-1.1.0/lib/src/core/lookup/mod.rs +120 -0
- theopendictionary-1.1.0/lib/src/core/lookup/options.rs +36 -0
- theopendictionary-1.1.0/lib/src/core/lookup/tokenize.rs +122 -0
- theopendictionary-1.1.0/lib/src/core/mod.rs +16 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/core/preview.rs +10 -12
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/error.rs +5 -3
- theopendictionary-1.1.0/lib/src/format/html/html.rs +39 -0
- theopendictionary-1.1.0/lib/src/format/html/mod.rs +3 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/definition.rs +3 -3
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/etymology.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/group.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/json.rs +27 -10
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/mod.rs +2 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/note.rs +4 -4
- theopendictionary-1.1.0/lib/src/format/json/token.rs +50 -0
- theopendictionary-1.1.0/lib/src/format/md/definition.rs +32 -0
- theopendictionary-1.1.0/lib/src/format/md/entry.rs +21 -0
- theopendictionary-1.1.0/lib/src/format/md/etymology.rs +19 -0
- theopendictionary-1.1.0/lib/src/format/md/example.rs +20 -0
- theopendictionary-1.1.0/lib/src/format/md/group.rs +20 -0
- theopendictionary-1.1.0/lib/src/format/md/md.rs +41 -0
- theopendictionary-1.1.0/lib/src/format/md/mod.rs +11 -0
- theopendictionary-1.1.0/lib/src/format/md/note.rs +17 -0
- theopendictionary-1.1.0/lib/src/format/md/pprint.rs +224 -0
- theopendictionary-1.1.0/lib/src/format/md/sense.rs +16 -0
- theopendictionary-1.1.0/lib/src/format/md/utils.rs +34 -0
- theopendictionary-1.1.0/lib/src/format/mod.rs +9 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/definitions.rs +4 -6
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/etymologies.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/examples.rs +4 -5
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/groups.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/notes.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/sql.rs +1 -1
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/lib.rs +5 -9
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/md.rs +2 -7
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/definition.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/entry.rs +6 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/etymology.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/example.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/group.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/mod.rs +0 -2
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/note.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/search/mod.rs +1 -5
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/CHANGELOG.md +9 -7
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/Cargo.toml +9 -3
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/dictionary.rs +55 -44
- theopendictionary-1.1.0/python/src/types/definition.rs +34 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/types/entry.rs +14 -9
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/types/etymology.rs +14 -12
- theopendictionary-1.1.0/python/src/types/example.rs +18 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/types/group.rs +12 -9
- theopendictionary-1.1.0/python/src/types/lookup.rs +41 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/types/mod.rs +4 -2
- theopendictionary-1.1.0/python/src/types/note.rs +30 -0
- theopendictionary-1.1.0/python/src/types/sense.rs +30 -0
- theopendictionary-1.1.0/python/src/types/token.rs +42 -0
- theopendictionary-1.1.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
- theopendictionary-1.1.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/tests/test_lookup.py +3 -10
- theopendictionary-1.1.0/python/tests/test_tokenize.py +30 -0
- theopendictionary-1.0.0/lib/src/core/lookup.rs +0 -173
- theopendictionary-1.0.0/lib/src/core/mod.rs +0 -15
- theopendictionary-1.0.0/lib/src/core/split.rs +0 -69
- theopendictionary-1.0.0/lib/src/lz4.rs +0 -23
- theopendictionary-1.0.0/lib/src/models/mdstring.rs +0 -123
- theopendictionary-1.0.0/python/src/types/definition.rs +0 -33
- theopendictionary-1.0.0/python/src/types/example.rs +0 -19
- theopendictionary-1.0.0/python/src/types/mdstring.rs +0 -60
- theopendictionary-1.0.0/python/src/types/note.rs +0 -30
- theopendictionary-1.0.0/python/src/types/sense.rs +0 -32
- theopendictionary-1.0.0/python/tests/__snapshots__/test_lookup.ambr +0 -27
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/report.json +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/config/aliases.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/config/config.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/config/mod.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/core/lexicon.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/core/merge.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/core/semver.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/ext.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/dictionary.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/entry.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/sense.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/json/utils.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/dictionaries.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/entries.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/mod.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/senses.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/sql/utils.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.1.0/lib/src/format}/xml.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/fs.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/dictionary.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/id.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/pos.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/sense.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/models/serializable.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/search/charabia.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/search/constants.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/search/index.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/search/schema.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/src/search/search.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/lib/tasks.toml +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/pyproject.toml +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/.gitignore +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/requirements.txt +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/setup.cfg +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/lib.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/src/utils.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.1.0}/python/tasks.toml +0 -0
|
@@ -8,7 +8,7 @@ version = "0.5.2"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"bitflags 2.
|
|
11
|
+
"bitflags 2.9.0",
|
|
12
12
|
"bytes",
|
|
13
13
|
"futures-core",
|
|
14
14
|
"futures-sink",
|
|
@@ -21,23 +21,23 @@ dependencies = [
|
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
23
23
|
name = "actix-http"
|
|
24
|
-
version = "3.
|
|
24
|
+
version = "3.10.0"
|
|
25
25
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
26
|
+
checksum = "0fa882656b67966045e4152c634051e70346939fced7117d5f0b52146a7c74c9"
|
|
27
27
|
dependencies = [
|
|
28
28
|
"actix-codec",
|
|
29
29
|
"actix-rt",
|
|
30
30
|
"actix-service",
|
|
31
31
|
"actix-utils",
|
|
32
|
-
"ahash",
|
|
33
32
|
"base64",
|
|
34
|
-
"bitflags 2.
|
|
33
|
+
"bitflags 2.9.0",
|
|
35
34
|
"brotli",
|
|
36
35
|
"bytes",
|
|
37
36
|
"bytestring",
|
|
38
37
|
"derive_more",
|
|
39
38
|
"encoding_rs",
|
|
40
39
|
"flate2",
|
|
40
|
+
"foldhash",
|
|
41
41
|
"futures-core",
|
|
42
42
|
"h2",
|
|
43
43
|
"http",
|
|
@@ -49,7 +49,7 @@ dependencies = [
|
|
|
49
49
|
"mime",
|
|
50
50
|
"percent-encoding",
|
|
51
51
|
"pin-project-lite",
|
|
52
|
-
"rand",
|
|
52
|
+
"rand 0.9.0",
|
|
53
53
|
"sha1",
|
|
54
54
|
"smallvec",
|
|
55
55
|
"tokio",
|
|
@@ -65,7 +65,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
65
65
|
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
|
|
66
66
|
dependencies = [
|
|
67
67
|
"quote",
|
|
68
|
-
"syn 2.0.
|
|
68
|
+
"syn 2.0.100",
|
|
69
69
|
]
|
|
70
70
|
|
|
71
71
|
[[package]]
|
|
@@ -95,9 +95,9 @@ dependencies = [
|
|
|
95
95
|
|
|
96
96
|
[[package]]
|
|
97
97
|
name = "actix-server"
|
|
98
|
-
version = "2.5.
|
|
98
|
+
version = "2.5.1"
|
|
99
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
100
|
+
checksum = "6398974fd4284f4768af07965701efbbb5fdc0616bff20cade1bb14b77675e24"
|
|
101
101
|
dependencies = [
|
|
102
102
|
"actix-rt",
|
|
103
103
|
"actix-service",
|
|
@@ -112,12 +112,11 @@ dependencies = [
|
|
|
112
112
|
|
|
113
113
|
[[package]]
|
|
114
114
|
name = "actix-service"
|
|
115
|
-
version = "2.0.
|
|
115
|
+
version = "2.0.3"
|
|
116
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
117
|
+
checksum = "9e46f36bf0e5af44bdc4bdb36fbbd421aa98c79a9bce724e1edeb3894e10dc7f"
|
|
118
118
|
dependencies = [
|
|
119
119
|
"futures-core",
|
|
120
|
-
"paste",
|
|
121
120
|
"pin-project-lite",
|
|
122
121
|
]
|
|
123
122
|
|
|
@@ -133,9 +132,9 @@ dependencies = [
|
|
|
133
132
|
|
|
134
133
|
[[package]]
|
|
135
134
|
name = "actix-web"
|
|
136
|
-
version = "4.
|
|
135
|
+
version = "4.10.2"
|
|
137
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
-
checksum = "
|
|
137
|
+
checksum = "f2e3b15b3dc6c6ed996e4032389e9849d4ab002b1e92fbfe85b5f307d1479b4d"
|
|
139
138
|
dependencies = [
|
|
140
139
|
"actix-codec",
|
|
141
140
|
"actix-http",
|
|
@@ -146,13 +145,13 @@ dependencies = [
|
|
|
146
145
|
"actix-service",
|
|
147
146
|
"actix-utils",
|
|
148
147
|
"actix-web-codegen",
|
|
149
|
-
"ahash",
|
|
150
148
|
"bytes",
|
|
151
149
|
"bytestring",
|
|
152
150
|
"cfg-if",
|
|
153
151
|
"cookie",
|
|
154
152
|
"derive_more",
|
|
155
153
|
"encoding_rs",
|
|
154
|
+
"foldhash",
|
|
156
155
|
"futures-core",
|
|
157
156
|
"futures-util",
|
|
158
157
|
"impl-more",
|
|
@@ -170,6 +169,7 @@ dependencies = [
|
|
|
170
169
|
"smallvec",
|
|
171
170
|
"socket2",
|
|
172
171
|
"time",
|
|
172
|
+
"tracing",
|
|
173
173
|
"url",
|
|
174
174
|
]
|
|
175
175
|
|
|
@@ -182,7 +182,7 @@ dependencies = [
|
|
|
182
182
|
"actix-router",
|
|
183
183
|
"proc-macro2",
|
|
184
184
|
"quote",
|
|
185
|
-
"syn 2.0.
|
|
185
|
+
"syn 2.0.100",
|
|
186
186
|
]
|
|
187
187
|
|
|
188
188
|
[[package]]
|
|
@@ -200,6 +200,12 @@ version = "2.0.0"
|
|
|
200
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
201
|
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
202
202
|
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "adler32"
|
|
205
|
+
version = "1.2.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
208
|
+
|
|
203
209
|
[[package]]
|
|
204
210
|
name = "ahash"
|
|
205
211
|
version = "0.8.11"
|
|
@@ -207,10 +213,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
207
213
|
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
208
214
|
dependencies = [
|
|
209
215
|
"cfg-if",
|
|
210
|
-
"getrandom",
|
|
211
216
|
"once_cell",
|
|
212
217
|
"version_check",
|
|
213
|
-
"zerocopy",
|
|
218
|
+
"zerocopy 0.7.35",
|
|
214
219
|
]
|
|
215
220
|
|
|
216
221
|
[[package]]
|
|
@@ -239,9 +244,9 @@ dependencies = [
|
|
|
239
244
|
|
|
240
245
|
[[package]]
|
|
241
246
|
name = "allocator-api2"
|
|
242
|
-
version = "0.2.
|
|
247
|
+
version = "0.2.21"
|
|
243
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
-
checksum = "
|
|
249
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
245
250
|
|
|
246
251
|
[[package]]
|
|
247
252
|
name = "anes"
|
|
@@ -290,19 +295,20 @@ dependencies = [
|
|
|
290
295
|
|
|
291
296
|
[[package]]
|
|
292
297
|
name = "anstyle-wincon"
|
|
293
|
-
version = "3.0.
|
|
298
|
+
version = "3.0.7"
|
|
294
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
-
checksum = "
|
|
300
|
+
checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
|
|
296
301
|
dependencies = [
|
|
297
302
|
"anstyle",
|
|
303
|
+
"once_cell",
|
|
298
304
|
"windows-sys 0.59.0",
|
|
299
305
|
]
|
|
300
306
|
|
|
301
307
|
[[package]]
|
|
302
308
|
name = "anyhow"
|
|
303
|
-
version = "1.0.
|
|
309
|
+
version = "1.0.97"
|
|
304
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
-
checksum = "
|
|
311
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
306
312
|
|
|
307
313
|
[[package]]
|
|
308
314
|
name = "arc-swap"
|
|
@@ -318,13 +324,13 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
|
318
324
|
|
|
319
325
|
[[package]]
|
|
320
326
|
name = "async-trait"
|
|
321
|
-
version = "0.1.
|
|
327
|
+
version = "0.1.88"
|
|
322
328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
329
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
324
330
|
dependencies = [
|
|
325
331
|
"proc-macro2",
|
|
326
332
|
"quote",
|
|
327
|
-
"syn 2.0.
|
|
333
|
+
"syn 2.0.100",
|
|
328
334
|
]
|
|
329
335
|
|
|
330
336
|
[[package]]
|
|
@@ -345,7 +351,7 @@ dependencies = [
|
|
|
345
351
|
"miniz_oxide",
|
|
346
352
|
"object",
|
|
347
353
|
"rustc-demangle",
|
|
348
|
-
"windows-targets
|
|
354
|
+
"windows-targets",
|
|
349
355
|
]
|
|
350
356
|
|
|
351
357
|
[[package]]
|
|
@@ -371,9 +377,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
371
377
|
|
|
372
378
|
[[package]]
|
|
373
379
|
name = "bitflags"
|
|
374
|
-
version = "2.
|
|
380
|
+
version = "2.9.0"
|
|
375
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
-
checksum = "
|
|
382
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
377
383
|
|
|
378
384
|
[[package]]
|
|
379
385
|
name = "bitpacking"
|
|
@@ -395,9 +401,9 @@ dependencies = [
|
|
|
395
401
|
|
|
396
402
|
[[package]]
|
|
397
403
|
name = "brotli"
|
|
398
|
-
version = "
|
|
404
|
+
version = "7.0.0"
|
|
399
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
-
checksum = "
|
|
406
|
+
checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
|
|
401
407
|
dependencies = [
|
|
402
408
|
"alloc-no-stdlib",
|
|
403
409
|
"alloc-stdlib",
|
|
@@ -406,9 +412,9 @@ dependencies = [
|
|
|
406
412
|
|
|
407
413
|
[[package]]
|
|
408
414
|
name = "brotli-decompressor"
|
|
409
|
-
version = "4.0.
|
|
415
|
+
version = "4.0.2"
|
|
410
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "
|
|
417
|
+
checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
|
|
412
418
|
dependencies = [
|
|
413
419
|
"alloc-no-stdlib",
|
|
414
420
|
"alloc-stdlib",
|
|
@@ -416,15 +422,15 @@ dependencies = [
|
|
|
416
422
|
|
|
417
423
|
[[package]]
|
|
418
424
|
name = "bumpalo"
|
|
419
|
-
version = "3.
|
|
425
|
+
version = "3.17.0"
|
|
420
426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
-
checksum = "
|
|
427
|
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
422
428
|
|
|
423
429
|
[[package]]
|
|
424
430
|
name = "bytecheck"
|
|
425
|
-
version = "0.8.
|
|
431
|
+
version = "0.8.1"
|
|
426
432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
-
checksum = "
|
|
433
|
+
checksum = "50690fb3370fb9fe3550372746084c46f2ac8c9685c583d2be10eefd89d3d1a3"
|
|
428
434
|
dependencies = [
|
|
429
435
|
"bytecheck_derive",
|
|
430
436
|
"ptr_meta",
|
|
@@ -434,13 +440,13 @@ dependencies = [
|
|
|
434
440
|
|
|
435
441
|
[[package]]
|
|
436
442
|
name = "bytecheck_derive"
|
|
437
|
-
version = "0.8.
|
|
443
|
+
version = "0.8.1"
|
|
438
444
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "
|
|
445
|
+
checksum = "efb7846e0cb180355c2dec69e721edafa36919850f1a9f52ffba4ebc0393cb71"
|
|
440
446
|
dependencies = [
|
|
441
447
|
"proc-macro2",
|
|
442
448
|
"quote",
|
|
443
|
-
"syn 2.0.
|
|
449
|
+
"syn 2.0.100",
|
|
444
450
|
]
|
|
445
451
|
|
|
446
452
|
[[package]]
|
|
@@ -451,15 +457,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
451
457
|
|
|
452
458
|
[[package]]
|
|
453
459
|
name = "bytes"
|
|
454
|
-
version = "1.
|
|
460
|
+
version = "1.10.1"
|
|
455
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
-
checksum = "
|
|
462
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
457
463
|
|
|
458
464
|
[[package]]
|
|
459
465
|
name = "bytestring"
|
|
460
|
-
version = "1.
|
|
466
|
+
version = "1.4.0"
|
|
461
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
-
checksum = "
|
|
468
|
+
checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
|
|
463
469
|
dependencies = [
|
|
464
470
|
"bytes",
|
|
465
471
|
]
|
|
@@ -472,9 +478,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
472
478
|
|
|
473
479
|
[[package]]
|
|
474
480
|
name = "cc"
|
|
475
|
-
version = "1.
|
|
481
|
+
version = "1.2.17"
|
|
476
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
-
checksum = "
|
|
483
|
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
|
|
478
484
|
dependencies = [
|
|
479
485
|
"jobserver",
|
|
480
486
|
"libc",
|
|
@@ -504,9 +510,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
504
510
|
|
|
505
511
|
[[package]]
|
|
506
512
|
name = "charabia"
|
|
507
|
-
version = "0.9.
|
|
513
|
+
version = "0.9.3"
|
|
508
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
-
checksum = "
|
|
515
|
+
checksum = "650d52f87a36472ea1c803dee49d6bfd23d426efa9363e2f4c4a0e6a236d3407"
|
|
510
516
|
dependencies = [
|
|
511
517
|
"aho-corasick",
|
|
512
518
|
"csv",
|
|
@@ -519,7 +525,6 @@ dependencies = [
|
|
|
519
525
|
"serde",
|
|
520
526
|
"slice-group-by",
|
|
521
527
|
"unicode-normalization",
|
|
522
|
-
"wana_kana",
|
|
523
528
|
"whatlang",
|
|
524
529
|
]
|
|
525
530
|
|
|
@@ -552,9 +557,9 @@ dependencies = [
|
|
|
552
557
|
|
|
553
558
|
[[package]]
|
|
554
559
|
name = "clap"
|
|
555
|
-
version = "4.5.
|
|
560
|
+
version = "4.5.34"
|
|
556
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
-
checksum = "
|
|
562
|
+
checksum = "e958897981290da2a852763fe9cdb89cd36977a5d729023127095fa94d95e2ff"
|
|
558
563
|
dependencies = [
|
|
559
564
|
"clap_builder",
|
|
560
565
|
"clap_derive",
|
|
@@ -562,9 +567,9 @@ dependencies = [
|
|
|
562
567
|
|
|
563
568
|
[[package]]
|
|
564
569
|
name = "clap_builder"
|
|
565
|
-
version = "4.5.
|
|
570
|
+
version = "4.5.34"
|
|
566
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
572
|
+
checksum = "83b0f35019843db2160b5bb19ae09b4e6411ac33fc6a712003c33e03090e2489"
|
|
568
573
|
dependencies = [
|
|
569
574
|
"anstream",
|
|
570
575
|
"anstyle",
|
|
@@ -574,14 +579,14 @@ dependencies = [
|
|
|
574
579
|
|
|
575
580
|
[[package]]
|
|
576
581
|
name = "clap_derive"
|
|
577
|
-
version = "4.5.
|
|
582
|
+
version = "4.5.32"
|
|
578
583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
584
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
|
580
585
|
dependencies = [
|
|
581
586
|
"heck 0.5.0",
|
|
582
587
|
"proc-macro2",
|
|
583
588
|
"quote",
|
|
584
|
-
"syn 2.0.
|
|
589
|
+
"syn 2.0.100",
|
|
585
590
|
]
|
|
586
591
|
|
|
587
592
|
[[package]]
|
|
@@ -590,24 +595,6 @@ version = "0.7.4"
|
|
|
590
595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
596
|
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
592
597
|
|
|
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
598
|
[[package]]
|
|
612
599
|
name = "colorchoice"
|
|
613
600
|
version = "1.0.3"
|
|
@@ -616,23 +603,17 @@ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
|
|
616
603
|
|
|
617
604
|
[[package]]
|
|
618
605
|
name = "console"
|
|
619
|
-
version = "0.15.
|
|
606
|
+
version = "0.15.11"
|
|
620
607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
608
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
622
609
|
dependencies = [
|
|
623
610
|
"encode_unicode",
|
|
624
|
-
"lazy_static",
|
|
625
611
|
"libc",
|
|
626
|
-
"
|
|
627
|
-
"
|
|
612
|
+
"once_cell",
|
|
613
|
+
"unicode-width 0.2.0",
|
|
614
|
+
"windows-sys 0.59.0",
|
|
628
615
|
]
|
|
629
616
|
|
|
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
617
|
[[package]]
|
|
637
618
|
name = "convert_case"
|
|
638
619
|
version = "0.6.0"
|
|
@@ -653,11 +634,20 @@ dependencies = [
|
|
|
653
634
|
"version_check",
|
|
654
635
|
]
|
|
655
636
|
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "core2"
|
|
639
|
+
version = "0.4.0"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"memchr",
|
|
644
|
+
]
|
|
645
|
+
|
|
656
646
|
[[package]]
|
|
657
647
|
name = "cpufeatures"
|
|
658
|
-
version = "0.2.
|
|
648
|
+
version = "0.2.17"
|
|
659
649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
-
checksum = "
|
|
650
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
661
651
|
dependencies = [
|
|
662
652
|
"libc",
|
|
663
653
|
]
|
|
@@ -709,18 +699,18 @@ dependencies = [
|
|
|
709
699
|
|
|
710
700
|
[[package]]
|
|
711
701
|
name = "crossbeam-channel"
|
|
712
|
-
version = "0.5.
|
|
702
|
+
version = "0.5.14"
|
|
713
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
-
checksum = "
|
|
704
|
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
|
715
705
|
dependencies = [
|
|
716
706
|
"crossbeam-utils",
|
|
717
707
|
]
|
|
718
708
|
|
|
719
709
|
[[package]]
|
|
720
710
|
name = "crossbeam-deque"
|
|
721
|
-
version = "0.8.
|
|
711
|
+
version = "0.8.6"
|
|
722
712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
-
checksum = "
|
|
713
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
724
714
|
dependencies = [
|
|
725
715
|
"crossbeam-epoch",
|
|
726
716
|
"crossbeam-utils",
|
|
@@ -737,15 +727,15 @@ dependencies = [
|
|
|
737
727
|
|
|
738
728
|
[[package]]
|
|
739
729
|
name = "crossbeam-utils"
|
|
740
|
-
version = "0.8.
|
|
730
|
+
version = "0.8.21"
|
|
741
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
-
checksum = "
|
|
732
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
743
733
|
|
|
744
734
|
[[package]]
|
|
745
735
|
name = "crunchy"
|
|
746
|
-
version = "0.2.
|
|
736
|
+
version = "0.2.3"
|
|
747
737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
-
checksum = "
|
|
738
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
749
739
|
|
|
750
740
|
[[package]]
|
|
751
741
|
name = "crypto-common"
|
|
@@ -759,9 +749,9 @@ dependencies = [
|
|
|
759
749
|
|
|
760
750
|
[[package]]
|
|
761
751
|
name = "csv"
|
|
762
|
-
version = "1.3.
|
|
752
|
+
version = "1.3.1"
|
|
763
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "
|
|
754
|
+
checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
|
|
765
755
|
dependencies = [
|
|
766
756
|
"csv-core",
|
|
767
757
|
"itoa",
|
|
@@ -771,21 +761,21 @@ dependencies = [
|
|
|
771
761
|
|
|
772
762
|
[[package]]
|
|
773
763
|
name = "csv-core"
|
|
774
|
-
version = "0.1.
|
|
764
|
+
version = "0.1.12"
|
|
775
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
766
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
|
777
767
|
dependencies = [
|
|
778
768
|
"memchr",
|
|
779
769
|
]
|
|
780
770
|
|
|
781
771
|
[[package]]
|
|
782
772
|
name = "ctor"
|
|
783
|
-
version = "0.2.
|
|
773
|
+
version = "0.2.9"
|
|
784
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
775
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
786
776
|
dependencies = [
|
|
787
777
|
"quote",
|
|
788
|
-
"syn 2.0.
|
|
778
|
+
"syn 2.0.100",
|
|
789
779
|
]
|
|
790
780
|
|
|
791
781
|
[[package]]
|
|
@@ -809,7 +799,7 @@ dependencies = [
|
|
|
809
799
|
"proc-macro2",
|
|
810
800
|
"quote",
|
|
811
801
|
"strsim",
|
|
812
|
-
"syn 2.0.
|
|
802
|
+
"syn 2.0.100",
|
|
813
803
|
]
|
|
814
804
|
|
|
815
805
|
[[package]]
|
|
@@ -820,14 +810,20 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
|
820
810
|
dependencies = [
|
|
821
811
|
"darling_core",
|
|
822
812
|
"quote",
|
|
823
|
-
"syn 2.0.
|
|
813
|
+
"syn 2.0.100",
|
|
824
814
|
]
|
|
825
815
|
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "dary_heap"
|
|
818
|
+
version = "0.3.7"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
|
|
821
|
+
|
|
826
822
|
[[package]]
|
|
827
823
|
name = "deranged"
|
|
828
|
-
version = "0.
|
|
824
|
+
version = "0.4.0"
|
|
829
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
826
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
831
827
|
dependencies = [
|
|
832
828
|
"powerfmt",
|
|
833
829
|
"serde",
|
|
@@ -851,7 +847,7 @@ dependencies = [
|
|
|
851
847
|
"darling",
|
|
852
848
|
"proc-macro2",
|
|
853
849
|
"quote",
|
|
854
|
-
"syn 2.0.
|
|
850
|
+
"syn 2.0.100",
|
|
855
851
|
]
|
|
856
852
|
|
|
857
853
|
[[package]]
|
|
@@ -861,20 +857,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
861
857
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
862
858
|
dependencies = [
|
|
863
859
|
"derive_builder_core",
|
|
864
|
-
"syn 2.0.
|
|
860
|
+
"syn 2.0.100",
|
|
865
861
|
]
|
|
866
862
|
|
|
867
863
|
[[package]]
|
|
868
864
|
name = "derive_more"
|
|
869
|
-
version = "0.
|
|
865
|
+
version = "2.0.1"
|
|
870
866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
-
checksum = "
|
|
867
|
+
checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"derive_more-impl",
|
|
870
|
+
]
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "derive_more-impl"
|
|
874
|
+
version = "2.0.1"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
|
872
877
|
dependencies = [
|
|
873
|
-
"convert_case 0.4.0",
|
|
874
878
|
"proc-macro2",
|
|
875
879
|
"quote",
|
|
876
|
-
"
|
|
877
|
-
"
|
|
880
|
+
"syn 2.0.100",
|
|
881
|
+
"unicode-xid",
|
|
878
882
|
]
|
|
879
883
|
|
|
880
884
|
[[package]]
|
|
@@ -889,23 +893,23 @@ dependencies = [
|
|
|
889
893
|
|
|
890
894
|
[[package]]
|
|
891
895
|
name = "dirs"
|
|
892
|
-
version = "
|
|
896
|
+
version = "6.0.0"
|
|
893
897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
-
checksum = "
|
|
898
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
895
899
|
dependencies = [
|
|
896
900
|
"dirs-sys",
|
|
897
901
|
]
|
|
898
902
|
|
|
899
903
|
[[package]]
|
|
900
904
|
name = "dirs-sys"
|
|
901
|
-
version = "0.
|
|
905
|
+
version = "0.5.0"
|
|
902
906
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
-
checksum = "
|
|
907
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
904
908
|
dependencies = [
|
|
905
909
|
"libc",
|
|
906
910
|
"option-ext",
|
|
907
911
|
"redox_users",
|
|
908
|
-
"windows-sys 0.
|
|
912
|
+
"windows-sys 0.59.0",
|
|
909
913
|
]
|
|
910
914
|
|
|
911
915
|
[[package]]
|
|
@@ -916,7 +920,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
916
920
|
dependencies = [
|
|
917
921
|
"proc-macro2",
|
|
918
922
|
"quote",
|
|
919
|
-
"syn 2.0.
|
|
923
|
+
"syn 2.0.100",
|
|
920
924
|
]
|
|
921
925
|
|
|
922
926
|
[[package]]
|
|
@@ -927,15 +931,15 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
|
927
931
|
|
|
928
932
|
[[package]]
|
|
929
933
|
name = "either"
|
|
930
|
-
version = "1.
|
|
934
|
+
version = "1.15.0"
|
|
931
935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
-
checksum = "
|
|
936
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
933
937
|
|
|
934
938
|
[[package]]
|
|
935
939
|
name = "encode_unicode"
|
|
936
|
-
version = "0.
|
|
940
|
+
version = "1.0.0"
|
|
937
941
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
-
checksum = "
|
|
942
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
939
943
|
|
|
940
944
|
[[package]]
|
|
941
945
|
name = "encoding"
|
|
@@ -1021,9 +1025,9 @@ dependencies = [
|
|
|
1021
1025
|
|
|
1022
1026
|
[[package]]
|
|
1023
1027
|
name = "env_filter"
|
|
1024
|
-
version = "0.1.
|
|
1028
|
+
version = "0.1.3"
|
|
1025
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
-
checksum = "
|
|
1030
|
+
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
|
|
1027
1031
|
dependencies = [
|
|
1028
1032
|
"log",
|
|
1029
1033
|
"regex",
|
|
@@ -1031,28 +1035,28 @@ dependencies = [
|
|
|
1031
1035
|
|
|
1032
1036
|
[[package]]
|
|
1033
1037
|
name = "env_logger"
|
|
1034
|
-
version = "0.11.
|
|
1038
|
+
version = "0.11.7"
|
|
1035
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1040
|
+
checksum = "c3716d7a920fb4fac5d84e9d4bce8ceb321e9414b4409da61b07b75c1e3d0697"
|
|
1037
1041
|
dependencies = [
|
|
1038
1042
|
"anstream",
|
|
1039
1043
|
"anstyle",
|
|
1040
1044
|
"env_filter",
|
|
1041
|
-
"
|
|
1045
|
+
"jiff",
|
|
1042
1046
|
"log",
|
|
1043
1047
|
]
|
|
1044
1048
|
|
|
1045
1049
|
[[package]]
|
|
1046
1050
|
name = "equivalent"
|
|
1047
|
-
version = "1.0.
|
|
1051
|
+
version = "1.0.2"
|
|
1048
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
-
checksum = "
|
|
1053
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1050
1054
|
|
|
1051
1055
|
[[package]]
|
|
1052
1056
|
name = "errno"
|
|
1053
|
-
version = "0.3.
|
|
1057
|
+
version = "0.3.10"
|
|
1054
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1059
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
1056
1060
|
dependencies = [
|
|
1057
1061
|
"libc",
|
|
1058
1062
|
"windows-sys 0.52.0",
|
|
@@ -1066,9 +1070,9 @@ checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
|
|
|
1066
1070
|
|
|
1067
1071
|
[[package]]
|
|
1068
1072
|
name = "fastrand"
|
|
1069
|
-
version = "2.
|
|
1073
|
+
version = "2.3.0"
|
|
1070
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
-
checksum = "
|
|
1075
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1072
1076
|
|
|
1073
1077
|
[[package]]
|
|
1074
1078
|
name = "filetime"
|
|
@@ -1084,9 +1088,9 @@ dependencies = [
|
|
|
1084
1088
|
|
|
1085
1089
|
[[package]]
|
|
1086
1090
|
name = "flate2"
|
|
1087
|
-
version = "1.0
|
|
1091
|
+
version = "1.1.0"
|
|
1088
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
-
checksum = "
|
|
1093
|
+
checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
|
|
1090
1094
|
dependencies = [
|
|
1091
1095
|
"crc32fast",
|
|
1092
1096
|
"miniz_oxide",
|
|
@@ -1100,9 +1104,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
1100
1104
|
|
|
1101
1105
|
[[package]]
|
|
1102
1106
|
name = "foldhash"
|
|
1103
|
-
version = "0.1.
|
|
1107
|
+
version = "0.1.5"
|
|
1104
1108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1109
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1106
1110
|
|
|
1107
1111
|
[[package]]
|
|
1108
1112
|
name = "form_urlencoded"
|
|
@@ -1119,7 +1123,7 @@ version = "0.8.4"
|
|
|
1119
1123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
1124
|
checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
|
|
1121
1125
|
dependencies = [
|
|
1122
|
-
"rustix",
|
|
1126
|
+
"rustix 0.38.44",
|
|
1123
1127
|
"windows-sys 0.52.0",
|
|
1124
1128
|
]
|
|
1125
1129
|
|
|
@@ -1195,7 +1199,19 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
|
1195
1199
|
dependencies = [
|
|
1196
1200
|
"cfg-if",
|
|
1197
1201
|
"libc",
|
|
1198
|
-
"wasi",
|
|
1202
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "getrandom"
|
|
1207
|
+
version = "0.3.2"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"cfg-if",
|
|
1212
|
+
"libc",
|
|
1213
|
+
"r-efi",
|
|
1214
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
1199
1215
|
]
|
|
1200
1216
|
|
|
1201
1217
|
[[package]]
|
|
@@ -1206,9 +1222,9 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
|
1206
1222
|
|
|
1207
1223
|
[[package]]
|
|
1208
1224
|
name = "glob"
|
|
1209
|
-
version = "0.3.
|
|
1225
|
+
version = "0.3.2"
|
|
1210
1226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
-
checksum = "
|
|
1227
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
1212
1228
|
|
|
1213
1229
|
[[package]]
|
|
1214
1230
|
name = "h2"
|
|
@@ -1231,9 +1247,9 @@ dependencies = [
|
|
|
1231
1247
|
|
|
1232
1248
|
[[package]]
|
|
1233
1249
|
name = "half"
|
|
1234
|
-
version = "2.
|
|
1250
|
+
version = "2.5.0"
|
|
1235
1251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
-
checksum = "
|
|
1252
|
+
checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1"
|
|
1237
1253
|
dependencies = [
|
|
1238
1254
|
"cfg-if",
|
|
1239
1255
|
"crunchy",
|
|
@@ -1251,9 +1267,9 @@ dependencies = [
|
|
|
1251
1267
|
|
|
1252
1268
|
[[package]]
|
|
1253
1269
|
name = "hashbrown"
|
|
1254
|
-
version = "0.15.
|
|
1270
|
+
version = "0.15.2"
|
|
1255
1271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
-
checksum = "
|
|
1272
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
1257
1273
|
dependencies = [
|
|
1258
1274
|
"allocator-api2",
|
|
1259
1275
|
"equivalent",
|
|
@@ -1280,9 +1296,9 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
|
|
1280
1296
|
|
|
1281
1297
|
[[package]]
|
|
1282
1298
|
name = "hermit-abi"
|
|
1283
|
-
version = "0.
|
|
1299
|
+
version = "0.5.0"
|
|
1284
1300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
-
checksum = "
|
|
1301
|
+
checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
|
|
1286
1302
|
|
|
1287
1303
|
[[package]]
|
|
1288
1304
|
name = "htmlescape"
|
|
@@ -1303,9 +1319,9 @@ dependencies = [
|
|
|
1303
1319
|
|
|
1304
1320
|
[[package]]
|
|
1305
1321
|
name = "httparse"
|
|
1306
|
-
version = "1.
|
|
1322
|
+
version = "1.10.1"
|
|
1307
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1308
|
-
checksum = "
|
|
1324
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1309
1325
|
|
|
1310
1326
|
[[package]]
|
|
1311
1327
|
name = "httpdate"
|
|
@@ -1322,12 +1338,6 @@ dependencies = [
|
|
|
1322
1338
|
"libm",
|
|
1323
1339
|
]
|
|
1324
1340
|
|
|
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
1341
|
[[package]]
|
|
1332
1342
|
name = "icu_collections"
|
|
1333
1343
|
version = "1.5.0"
|
|
@@ -1443,7 +1453,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
|
1443
1453
|
dependencies = [
|
|
1444
1454
|
"proc-macro2",
|
|
1445
1455
|
"quote",
|
|
1446
|
-
"syn 2.0.
|
|
1456
|
+
"syn 2.0.100",
|
|
1447
1457
|
]
|
|
1448
1458
|
|
|
1449
1459
|
[[package]]
|
|
@@ -1475,25 +1485,48 @@ dependencies = [
|
|
|
1475
1485
|
|
|
1476
1486
|
[[package]]
|
|
1477
1487
|
name = "impl-more"
|
|
1478
|
-
version = "0.1.
|
|
1488
|
+
version = "0.1.9"
|
|
1479
1489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "
|
|
1490
|
+
checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "include-flate"
|
|
1494
|
+
version = "0.3.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"include-flate-codegen",
|
|
1499
|
+
"lazy_static",
|
|
1500
|
+
"libflate",
|
|
1501
|
+
]
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "include-flate-codegen"
|
|
1505
|
+
version = "0.2.0"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"libflate",
|
|
1510
|
+
"proc-macro2",
|
|
1511
|
+
"quote",
|
|
1512
|
+
"syn 2.0.100",
|
|
1513
|
+
]
|
|
1481
1514
|
|
|
1482
1515
|
[[package]]
|
|
1483
1516
|
name = "indexmap"
|
|
1484
|
-
version = "2.
|
|
1517
|
+
version = "2.8.0"
|
|
1485
1518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1519
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
|
1487
1520
|
dependencies = [
|
|
1488
1521
|
"equivalent",
|
|
1489
|
-
"hashbrown 0.15.
|
|
1522
|
+
"hashbrown 0.15.2",
|
|
1490
1523
|
]
|
|
1491
1524
|
|
|
1492
1525
|
[[package]]
|
|
1493
1526
|
name = "indicatif"
|
|
1494
|
-
version = "0.17.
|
|
1527
|
+
version = "0.17.11"
|
|
1495
1528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
-
checksum = "
|
|
1529
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
1497
1530
|
dependencies = [
|
|
1498
1531
|
"console",
|
|
1499
1532
|
"number_prefix",
|
|
@@ -1504,30 +1537,31 @@ dependencies = [
|
|
|
1504
1537
|
|
|
1505
1538
|
[[package]]
|
|
1506
1539
|
name = "indoc"
|
|
1507
|
-
version = "2.0.
|
|
1540
|
+
version = "2.0.6"
|
|
1508
1541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "
|
|
1542
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1510
1543
|
|
|
1511
1544
|
[[package]]
|
|
1512
1545
|
name = "inherent"
|
|
1513
|
-
version = "1.0.
|
|
1546
|
+
version = "1.0.12"
|
|
1514
1547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
-
checksum = "
|
|
1548
|
+
checksum = "6c38228f24186d9cc68c729accb4d413be9eaed6ad07ff79e0270d9e56f3de13"
|
|
1516
1549
|
dependencies = [
|
|
1517
1550
|
"proc-macro2",
|
|
1518
1551
|
"quote",
|
|
1519
|
-
"syn 2.0.
|
|
1552
|
+
"syn 2.0.100",
|
|
1520
1553
|
]
|
|
1521
1554
|
|
|
1522
1555
|
[[package]]
|
|
1523
1556
|
name = "insta"
|
|
1524
|
-
version = "1.
|
|
1557
|
+
version = "1.42.2"
|
|
1525
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
-
checksum = "
|
|
1559
|
+
checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
|
|
1527
1560
|
dependencies = [
|
|
1528
1561
|
"console",
|
|
1529
|
-
"lazy_static",
|
|
1530
1562
|
"linked-hash-map",
|
|
1563
|
+
"once_cell",
|
|
1564
|
+
"pin-project",
|
|
1531
1565
|
"similar",
|
|
1532
1566
|
]
|
|
1533
1567
|
|
|
@@ -1556,11 +1590,11 @@ dependencies = [
|
|
|
1556
1590
|
|
|
1557
1591
|
[[package]]
|
|
1558
1592
|
name = "is-terminal"
|
|
1559
|
-
version = "0.4.
|
|
1593
|
+
version = "0.4.16"
|
|
1560
1594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
1595
|
+
checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
|
1562
1596
|
dependencies = [
|
|
1563
|
-
"hermit-abi 0.
|
|
1597
|
+
"hermit-abi 0.5.0",
|
|
1564
1598
|
"libc",
|
|
1565
1599
|
"windows-sys 0.52.0",
|
|
1566
1600
|
]
|
|
@@ -1591,25 +1625,58 @@ dependencies = [
|
|
|
1591
1625
|
|
|
1592
1626
|
[[package]]
|
|
1593
1627
|
name = "itoa"
|
|
1594
|
-
version = "1.0.
|
|
1628
|
+
version = "1.0.15"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "jieba-macros"
|
|
1634
|
+
version = "0.7.1"
|
|
1595
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
-
checksum = "
|
|
1636
|
+
checksum = "7c676b32a471d3cfae8dac2ad2f8334cd52e53377733cca8c1fb0a5062fec192"
|
|
1637
|
+
dependencies = [
|
|
1638
|
+
"phf_codegen",
|
|
1639
|
+
]
|
|
1597
1640
|
|
|
1598
1641
|
[[package]]
|
|
1599
1642
|
name = "jieba-rs"
|
|
1600
|
-
version = "0.7.
|
|
1643
|
+
version = "0.7.2"
|
|
1601
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
-
checksum = "
|
|
1645
|
+
checksum = "6d1bcad6332969e4d48ee568d430e14ee6dea70740c2549d005d87677ebefb0c"
|
|
1603
1646
|
dependencies = [
|
|
1604
1647
|
"cedarwood",
|
|
1605
|
-
"derive_builder",
|
|
1606
1648
|
"fxhash",
|
|
1649
|
+
"include-flate",
|
|
1650
|
+
"jieba-macros",
|
|
1607
1651
|
"lazy_static",
|
|
1608
1652
|
"phf",
|
|
1609
|
-
"phf_codegen",
|
|
1610
1653
|
"regex",
|
|
1611
1654
|
]
|
|
1612
1655
|
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "jiff"
|
|
1658
|
+
version = "0.2.4"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "d699bc6dfc879fb1bf9bdff0d4c56f0884fc6f0d0eb0fba397a6d00cd9a6b85e"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"jiff-static",
|
|
1663
|
+
"log",
|
|
1664
|
+
"portable-atomic",
|
|
1665
|
+
"portable-atomic-util",
|
|
1666
|
+
"serde",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "jiff-static"
|
|
1671
|
+
version = "0.2.4"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "8d16e75759ee0aa64c57a56acbf43916987b20c77373cb7e808979e02b93c9f9"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"proc-macro2",
|
|
1676
|
+
"quote",
|
|
1677
|
+
"syn 2.0.100",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1613
1680
|
[[package]]
|
|
1614
1681
|
name = "jobserver"
|
|
1615
1682
|
version = "0.1.32"
|
|
@@ -1621,10 +1688,11 @@ dependencies = [
|
|
|
1621
1688
|
|
|
1622
1689
|
[[package]]
|
|
1623
1690
|
name = "js-sys"
|
|
1624
|
-
version = "0.3.
|
|
1691
|
+
version = "0.3.77"
|
|
1625
1692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
-
checksum = "
|
|
1693
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1627
1694
|
dependencies = [
|
|
1695
|
+
"once_cell",
|
|
1628
1696
|
"wasm-bindgen",
|
|
1629
1697
|
]
|
|
1630
1698
|
|
|
@@ -1657,18 +1725,42 @@ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
|
|
|
1657
1725
|
|
|
1658
1726
|
[[package]]
|
|
1659
1727
|
name = "libc"
|
|
1660
|
-
version = "0.2.
|
|
1728
|
+
version = "0.2.171"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "libflate"
|
|
1734
|
+
version = "2.1.0"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
|
|
1737
|
+
dependencies = [
|
|
1738
|
+
"adler32",
|
|
1739
|
+
"core2",
|
|
1740
|
+
"crc32fast",
|
|
1741
|
+
"dary_heap",
|
|
1742
|
+
"libflate_lz77",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "libflate_lz77"
|
|
1747
|
+
version = "2.1.0"
|
|
1661
1748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
-
checksum = "
|
|
1749
|
+
checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"core2",
|
|
1752
|
+
"hashbrown 0.14.5",
|
|
1753
|
+
"rle-decode-fast",
|
|
1754
|
+
]
|
|
1663
1755
|
|
|
1664
1756
|
[[package]]
|
|
1665
1757
|
name = "libloading"
|
|
1666
|
-
version = "0.8.
|
|
1758
|
+
version = "0.8.6"
|
|
1667
1759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
-
checksum = "
|
|
1760
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
1669
1761
|
dependencies = [
|
|
1670
1762
|
"cfg-if",
|
|
1671
|
-
"windows-targets
|
|
1763
|
+
"windows-targets",
|
|
1672
1764
|
]
|
|
1673
1765
|
|
|
1674
1766
|
[[package]]
|
|
@@ -1683,16 +1775,16 @@ version = "0.1.3"
|
|
|
1683
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
1776
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1685
1777
|
dependencies = [
|
|
1686
|
-
"bitflags 2.
|
|
1778
|
+
"bitflags 2.9.0",
|
|
1687
1779
|
"libc",
|
|
1688
1780
|
"redox_syscall",
|
|
1689
1781
|
]
|
|
1690
1782
|
|
|
1691
1783
|
[[package]]
|
|
1692
1784
|
name = "lindera"
|
|
1693
|
-
version = "0.32.
|
|
1785
|
+
version = "0.32.3"
|
|
1694
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
-
checksum = "
|
|
1787
|
+
checksum = "832c220475557e3b44a46cad1862b57f010f0c6e93d771d0e628e08689c068b1"
|
|
1696
1788
|
dependencies = [
|
|
1697
1789
|
"lindera-analyzer",
|
|
1698
1790
|
"lindera-core",
|
|
@@ -1703,9 +1795,9 @@ dependencies = [
|
|
|
1703
1795
|
|
|
1704
1796
|
[[package]]
|
|
1705
1797
|
name = "lindera-analyzer"
|
|
1706
|
-
version = "0.32.
|
|
1798
|
+
version = "0.32.3"
|
|
1707
1799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
-
checksum = "
|
|
1800
|
+
checksum = "a8e26651714abf5167e6b6a80f5cdaa0cad41c5fcb84d8ba96bebafcb9029339"
|
|
1709
1801
|
dependencies = [
|
|
1710
1802
|
"anyhow",
|
|
1711
1803
|
"bincode",
|
|
@@ -1724,7 +1816,7 @@ dependencies = [
|
|
|
1724
1816
|
"regex",
|
|
1725
1817
|
"serde",
|
|
1726
1818
|
"serde_json",
|
|
1727
|
-
"thiserror 1.0.
|
|
1819
|
+
"thiserror 1.0.69",
|
|
1728
1820
|
"unicode-blocks",
|
|
1729
1821
|
"unicode-normalization",
|
|
1730
1822
|
"unicode-segmentation",
|
|
@@ -1733,9 +1825,9 @@ dependencies = [
|
|
|
1733
1825
|
|
|
1734
1826
|
[[package]]
|
|
1735
1827
|
name = "lindera-assets"
|
|
1736
|
-
version = "0.32.
|
|
1828
|
+
version = "0.32.3"
|
|
1737
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
-
checksum = "
|
|
1830
|
+
checksum = "ebb01f1ca53c1e642234c6c7fdb9ac664ad0c1ab9502f33e4200201bac7e6ce7"
|
|
1739
1831
|
dependencies = [
|
|
1740
1832
|
"encoding",
|
|
1741
1833
|
"flate2",
|
|
@@ -1746,9 +1838,9 @@ dependencies = [
|
|
|
1746
1838
|
|
|
1747
1839
|
[[package]]
|
|
1748
1840
|
name = "lindera-cc-cedict"
|
|
1749
|
-
version = "0.32.
|
|
1841
|
+
version = "0.32.3"
|
|
1750
1842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
1843
|
+
checksum = "5f7618d9aa947fdd7c38eae2b79f0fd237ecb5067608f1363610ba20d20ab5a8"
|
|
1752
1844
|
dependencies = [
|
|
1753
1845
|
"bincode",
|
|
1754
1846
|
"byteorder",
|
|
@@ -1760,9 +1852,9 @@ dependencies = [
|
|
|
1760
1852
|
|
|
1761
1853
|
[[package]]
|
|
1762
1854
|
name = "lindera-cc-cedict-builder"
|
|
1763
|
-
version = "0.32.
|
|
1855
|
+
version = "0.32.3"
|
|
1764
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1857
|
+
checksum = "efdbcb809d81428935d601a78c94bfb39500749213f7320705f427a7a1d31aec"
|
|
1766
1858
|
dependencies = [
|
|
1767
1859
|
"anyhow",
|
|
1768
1860
|
"lindera-core",
|
|
@@ -1772,9 +1864,9 @@ dependencies = [
|
|
|
1772
1864
|
|
|
1773
1865
|
[[package]]
|
|
1774
1866
|
name = "lindera-compress"
|
|
1775
|
-
version = "0.32.
|
|
1867
|
+
version = "0.32.3"
|
|
1776
1868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
-
checksum = "
|
|
1869
|
+
checksum = "eac178afa2456dac469d3b1a2d7fbaf3e1ea796a1f52321e8ac29545a53c239c"
|
|
1778
1870
|
dependencies = [
|
|
1779
1871
|
"anyhow",
|
|
1780
1872
|
"flate2",
|
|
@@ -1783,9 +1875,9 @@ dependencies = [
|
|
|
1783
1875
|
|
|
1784
1876
|
[[package]]
|
|
1785
1877
|
name = "lindera-core"
|
|
1786
|
-
version = "0.32.
|
|
1878
|
+
version = "0.32.3"
|
|
1787
1879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
-
checksum = "
|
|
1880
|
+
checksum = "649777465f48147ce593ab6db347e235e3af8f693a23f4437be94a1cdbdf5fdf"
|
|
1789
1881
|
dependencies = [
|
|
1790
1882
|
"anyhow",
|
|
1791
1883
|
"bincode",
|
|
@@ -1794,15 +1886,15 @@ dependencies = [
|
|
|
1794
1886
|
"log",
|
|
1795
1887
|
"once_cell",
|
|
1796
1888
|
"serde",
|
|
1797
|
-
"thiserror 1.0.
|
|
1889
|
+
"thiserror 1.0.69",
|
|
1798
1890
|
"yada",
|
|
1799
1891
|
]
|
|
1800
1892
|
|
|
1801
1893
|
[[package]]
|
|
1802
1894
|
name = "lindera-decompress"
|
|
1803
|
-
version = "0.32.
|
|
1895
|
+
version = "0.32.3"
|
|
1804
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
-
checksum = "
|
|
1897
|
+
checksum = "9e3faaceb85e43ac250021866c6db3cdc9997b44b3d3ea498594d04edc91fc45"
|
|
1806
1898
|
dependencies = [
|
|
1807
1899
|
"anyhow",
|
|
1808
1900
|
"flate2",
|
|
@@ -1811,9 +1903,9 @@ dependencies = [
|
|
|
1811
1903
|
|
|
1812
1904
|
[[package]]
|
|
1813
1905
|
name = "lindera-dictionary"
|
|
1814
|
-
version = "0.32.
|
|
1906
|
+
version = "0.32.3"
|
|
1815
1907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
1908
|
+
checksum = "31e15b2d2d8a4ad45f2e373a084931cf3dfbde15f124044e2436bb920af3366c"
|
|
1817
1909
|
dependencies = [
|
|
1818
1910
|
"anyhow",
|
|
1819
1911
|
"bincode",
|
|
@@ -1836,9 +1928,9 @@ dependencies = [
|
|
|
1836
1928
|
|
|
1837
1929
|
[[package]]
|
|
1838
1930
|
name = "lindera-dictionary-builder"
|
|
1839
|
-
version = "0.32.
|
|
1931
|
+
version = "0.32.3"
|
|
1840
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
-
checksum = "
|
|
1933
|
+
checksum = "59802949110545b59b663917ed3fd55dc3b3a8cde6bd20137d7fe24372cfb9aa"
|
|
1842
1934
|
dependencies = [
|
|
1843
1935
|
"anyhow",
|
|
1844
1936
|
"bincode",
|
|
@@ -1858,9 +1950,9 @@ dependencies = [
|
|
|
1858
1950
|
|
|
1859
1951
|
[[package]]
|
|
1860
1952
|
name = "lindera-filter"
|
|
1861
|
-
version = "0.32.
|
|
1953
|
+
version = "0.32.3"
|
|
1862
1954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
-
checksum = "
|
|
1955
|
+
checksum = "1320f118c3fc9e897f4ebfc16864e5ef8c0b06ba769c0a50e53f193f9d682bf8"
|
|
1864
1956
|
dependencies = [
|
|
1865
1957
|
"anyhow",
|
|
1866
1958
|
"csv",
|
|
@@ -1883,9 +1975,9 @@ dependencies = [
|
|
|
1883
1975
|
|
|
1884
1976
|
[[package]]
|
|
1885
1977
|
name = "lindera-ipadic"
|
|
1886
|
-
version = "0.32.
|
|
1978
|
+
version = "0.32.3"
|
|
1887
1979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
-
checksum = "
|
|
1980
|
+
checksum = "5b4731bf3730f1f38266d7ee9bca7d460cd336645c9dfd4e6a1082e58ab1e993"
|
|
1889
1981
|
dependencies = [
|
|
1890
1982
|
"bincode",
|
|
1891
1983
|
"byteorder",
|
|
@@ -1897,9 +1989,9 @@ dependencies = [
|
|
|
1897
1989
|
|
|
1898
1990
|
[[package]]
|
|
1899
1991
|
name = "lindera-ipadic-builder"
|
|
1900
|
-
version = "0.32.
|
|
1992
|
+
version = "0.32.3"
|
|
1901
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "
|
|
1994
|
+
checksum = "309966c12e682f67205c3cd3c8dc55bbdcd1eb3b5c7c5cb41fb8acd18906d340"
|
|
1903
1995
|
dependencies = [
|
|
1904
1996
|
"anyhow",
|
|
1905
1997
|
"lindera-core",
|
|
@@ -1909,9 +2001,9 @@ dependencies = [
|
|
|
1909
2001
|
|
|
1910
2002
|
[[package]]
|
|
1911
2003
|
name = "lindera-ipadic-neologd"
|
|
1912
|
-
version = "0.32.
|
|
2004
|
+
version = "0.32.3"
|
|
1913
2005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
-
checksum = "
|
|
2006
|
+
checksum = "e90e919b4cfb9962d24ee1e1d50a7c163bbf356376495ad66d1996e20b9f9e44"
|
|
1915
2007
|
dependencies = [
|
|
1916
2008
|
"bincode",
|
|
1917
2009
|
"byteorder",
|
|
@@ -1923,9 +2015,9 @@ dependencies = [
|
|
|
1923
2015
|
|
|
1924
2016
|
[[package]]
|
|
1925
2017
|
name = "lindera-ipadic-neologd-builder"
|
|
1926
|
-
version = "0.32.
|
|
2018
|
+
version = "0.32.3"
|
|
1927
2019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
-
checksum = "
|
|
2020
|
+
checksum = "7e517df0d501f9f8bf3126da20fc8cb9a5e37921e0eec1824d7a62f096463e02"
|
|
1929
2021
|
dependencies = [
|
|
1930
2022
|
"anyhow",
|
|
1931
2023
|
"lindera-core",
|
|
@@ -1935,9 +2027,9 @@ dependencies = [
|
|
|
1935
2027
|
|
|
1936
2028
|
[[package]]
|
|
1937
2029
|
name = "lindera-ko-dic"
|
|
1938
|
-
version = "0.32.
|
|
2030
|
+
version = "0.32.3"
|
|
1939
2031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
-
checksum = "
|
|
2032
|
+
checksum = "e9c6da4e68bc8b452a54b96d65361ebdceb4b6f36ecf262425c0e1f77960ae82"
|
|
1941
2033
|
dependencies = [
|
|
1942
2034
|
"bincode",
|
|
1943
2035
|
"byteorder",
|
|
@@ -1950,9 +2042,9 @@ dependencies = [
|
|
|
1950
2042
|
|
|
1951
2043
|
[[package]]
|
|
1952
2044
|
name = "lindera-ko-dic-builder"
|
|
1953
|
-
version = "0.32.
|
|
2045
|
+
version = "0.32.3"
|
|
1954
2046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
-
checksum = "
|
|
2047
|
+
checksum = "afc95884cc8f6dfb176caf5991043a4acf94c359215bbd039ea765e00454f271"
|
|
1956
2048
|
dependencies = [
|
|
1957
2049
|
"anyhow",
|
|
1958
2050
|
"lindera-core",
|
|
@@ -1962,9 +2054,9 @@ dependencies = [
|
|
|
1962
2054
|
|
|
1963
2055
|
[[package]]
|
|
1964
2056
|
name = "lindera-tokenizer"
|
|
1965
|
-
version = "0.32.
|
|
2057
|
+
version = "0.32.3"
|
|
1966
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "
|
|
2059
|
+
checksum = "d122042e1232a55c3604692445952a134e523822e9b4b9ab32a53ff890037ad4"
|
|
1968
2060
|
dependencies = [
|
|
1969
2061
|
"bincode",
|
|
1970
2062
|
"lindera-core",
|
|
@@ -1976,9 +2068,9 @@ dependencies = [
|
|
|
1976
2068
|
|
|
1977
2069
|
[[package]]
|
|
1978
2070
|
name = "lindera-unidic"
|
|
1979
|
-
version = "0.32.
|
|
2071
|
+
version = "0.32.3"
|
|
1980
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
2073
|
+
checksum = "cbffae1fb2f2614abdcb50f99b138476dbac19862ffa57bfdc9c7b5d5b22a90c"
|
|
1982
2074
|
dependencies = [
|
|
1983
2075
|
"bincode",
|
|
1984
2076
|
"byteorder",
|
|
@@ -1991,9 +2083,9 @@ dependencies = [
|
|
|
1991
2083
|
|
|
1992
2084
|
[[package]]
|
|
1993
2085
|
name = "lindera-unidic-builder"
|
|
1994
|
-
version = "0.32.
|
|
2086
|
+
version = "0.32.3"
|
|
1995
2087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
-
checksum = "
|
|
2088
|
+
checksum = "fe50055327712ebd1bcc74b657cf78c728a78b9586e3f99d5dd0b6a0be221c5d"
|
|
1997
2089
|
dependencies = [
|
|
1998
2090
|
"anyhow",
|
|
1999
2091
|
"lindera-core",
|
|
@@ -2009,15 +2101,21 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
2009
2101
|
|
|
2010
2102
|
[[package]]
|
|
2011
2103
|
name = "linux-raw-sys"
|
|
2012
|
-
version = "0.4.
|
|
2104
|
+
version = "0.4.15"
|
|
2013
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
-
checksum = "
|
|
2106
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2107
|
+
|
|
2108
|
+
[[package]]
|
|
2109
|
+
name = "linux-raw-sys"
|
|
2110
|
+
version = "0.9.3"
|
|
2111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
+
checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
|
|
2015
2113
|
|
|
2016
2114
|
[[package]]
|
|
2017
2115
|
name = "litemap"
|
|
2018
|
-
version = "0.7.
|
|
2116
|
+
version = "0.7.5"
|
|
2019
2117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "
|
|
2118
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
2021
2119
|
|
|
2022
2120
|
[[package]]
|
|
2023
2121
|
name = "local-channel"
|
|
@@ -2048,9 +2146,9 @@ dependencies = [
|
|
|
2048
2146
|
|
|
2049
2147
|
[[package]]
|
|
2050
2148
|
name = "log"
|
|
2051
|
-
version = "0.4.
|
|
2149
|
+
version = "0.4.26"
|
|
2052
2150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
-
checksum = "
|
|
2151
|
+
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
|
2054
2152
|
|
|
2055
2153
|
[[package]]
|
|
2056
2154
|
name = "lru"
|
|
@@ -2058,7 +2156,7 @@ version = "0.12.5"
|
|
|
2058
2156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
2157
|
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
2060
2158
|
dependencies = [
|
|
2061
|
-
"hashbrown 0.15.
|
|
2159
|
+
"hashbrown 0.15.2",
|
|
2062
2160
|
]
|
|
2063
2161
|
|
|
2064
2162
|
[[package]]
|
|
@@ -2066,9 +2164,6 @@ name = "lz4_flex"
|
|
|
2066
2164
|
version = "0.11.3"
|
|
2067
2165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
2166
|
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
2069
|
-
dependencies = [
|
|
2070
|
-
"twox-hash",
|
|
2071
|
-
]
|
|
2072
2167
|
|
|
2073
2168
|
[[package]]
|
|
2074
2169
|
name = "map-macro"
|
|
@@ -2146,44 +2241,43 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2146
2241
|
|
|
2147
2242
|
[[package]]
|
|
2148
2243
|
name = "miniz_oxide"
|
|
2149
|
-
version = "0.8.
|
|
2244
|
+
version = "0.8.5"
|
|
2150
2245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
-
checksum = "
|
|
2246
|
+
checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
|
|
2152
2247
|
dependencies = [
|
|
2153
2248
|
"adler2",
|
|
2154
2249
|
]
|
|
2155
2250
|
|
|
2156
2251
|
[[package]]
|
|
2157
2252
|
name = "mio"
|
|
2158
|
-
version = "1.0.
|
|
2253
|
+
version = "1.0.3"
|
|
2159
2254
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
-
checksum = "
|
|
2255
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
2161
2256
|
dependencies = [
|
|
2162
|
-
"hermit-abi 0.3.9",
|
|
2163
2257
|
"libc",
|
|
2164
2258
|
"log",
|
|
2165
|
-
"wasi",
|
|
2259
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2166
2260
|
"windows-sys 0.52.0",
|
|
2167
2261
|
]
|
|
2168
2262
|
|
|
2169
2263
|
[[package]]
|
|
2170
2264
|
name = "munge"
|
|
2171
|
-
version = "0.4.
|
|
2265
|
+
version = "0.4.3"
|
|
2172
2266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
-
checksum = "
|
|
2267
|
+
checksum = "a0091202c98cf06da46c279fdf50cccb6b1c43b4521abdf6a27b4c7e71d5d9d7"
|
|
2174
2268
|
dependencies = [
|
|
2175
2269
|
"munge_macro",
|
|
2176
2270
|
]
|
|
2177
2271
|
|
|
2178
2272
|
[[package]]
|
|
2179
2273
|
name = "munge_macro"
|
|
2180
|
-
version = "0.4.
|
|
2274
|
+
version = "0.4.3"
|
|
2181
2275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
-
checksum = "
|
|
2276
|
+
checksum = "734799cf91479720b2f970c61a22850940dd91e27d4f02b1c6fc792778df2459"
|
|
2183
2277
|
dependencies = [
|
|
2184
2278
|
"proc-macro2",
|
|
2185
2279
|
"quote",
|
|
2186
|
-
"syn 2.0.
|
|
2280
|
+
"syn 2.0.100",
|
|
2187
2281
|
]
|
|
2188
2282
|
|
|
2189
2283
|
[[package]]
|
|
@@ -2194,11 +2288,11 @@ checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
|
|
|
2194
2288
|
|
|
2195
2289
|
[[package]]
|
|
2196
2290
|
name = "napi"
|
|
2197
|
-
version = "2.16.
|
|
2291
|
+
version = "2.16.17"
|
|
2198
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
-
checksum = "
|
|
2293
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
2200
2294
|
dependencies = [
|
|
2201
|
-
"bitflags 2.
|
|
2295
|
+
"bitflags 2.9.0",
|
|
2202
2296
|
"ctor",
|
|
2203
2297
|
"napi-derive",
|
|
2204
2298
|
"napi-sys",
|
|
@@ -2207,9 +2301,9 @@ dependencies = [
|
|
|
2207
2301
|
|
|
2208
2302
|
[[package]]
|
|
2209
2303
|
name = "napi-build"
|
|
2210
|
-
version = "2.1.
|
|
2304
|
+
version = "2.1.6"
|
|
2211
2305
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
-
checksum = "
|
|
2306
|
+
checksum = "e28acfa557c083f6e254a786e01ba253fc56f18ee000afcd4f79af735f73a6da"
|
|
2213
2307
|
|
|
2214
2308
|
[[package]]
|
|
2215
2309
|
name = "napi-derive"
|
|
@@ -2218,11 +2312,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2218
2312
|
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
2219
2313
|
dependencies = [
|
|
2220
2314
|
"cfg-if",
|
|
2221
|
-
"convert_case
|
|
2315
|
+
"convert_case",
|
|
2222
2316
|
"napi-derive-backend",
|
|
2223
2317
|
"proc-macro2",
|
|
2224
2318
|
"quote",
|
|
2225
|
-
"syn 2.0.
|
|
2319
|
+
"syn 2.0.100",
|
|
2226
2320
|
]
|
|
2227
2321
|
|
|
2228
2322
|
[[package]]
|
|
@@ -2231,13 +2325,13 @@ version = "1.0.75"
|
|
|
2231
2325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
2326
|
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
2233
2327
|
dependencies = [
|
|
2234
|
-
"convert_case
|
|
2328
|
+
"convert_case",
|
|
2235
2329
|
"once_cell",
|
|
2236
2330
|
"proc-macro2",
|
|
2237
2331
|
"quote",
|
|
2238
2332
|
"regex",
|
|
2239
2333
|
"semver",
|
|
2240
|
-
"syn 2.0.
|
|
2334
|
+
"syn 2.0.100",
|
|
2241
2335
|
]
|
|
2242
2336
|
|
|
2243
2337
|
[[package]]
|
|
@@ -2303,24 +2397,23 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
|
2303
2397
|
|
|
2304
2398
|
[[package]]
|
|
2305
2399
|
name = "object"
|
|
2306
|
-
version = "0.36.
|
|
2400
|
+
version = "0.36.7"
|
|
2307
2401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
-
checksum = "
|
|
2402
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2309
2403
|
dependencies = [
|
|
2310
2404
|
"memchr",
|
|
2311
2405
|
]
|
|
2312
2406
|
|
|
2313
2407
|
[[package]]
|
|
2314
2408
|
name = "odict"
|
|
2315
|
-
version = "2.
|
|
2409
|
+
version = "2.1.0"
|
|
2316
2410
|
dependencies = [
|
|
2317
|
-
"
|
|
2411
|
+
"brotli",
|
|
2318
2412
|
"byteorder",
|
|
2319
2413
|
"charabia",
|
|
2320
2414
|
"criterion",
|
|
2321
2415
|
"dirs",
|
|
2322
2416
|
"insta",
|
|
2323
|
-
"lz4_flex",
|
|
2324
2417
|
"map-macro",
|
|
2325
2418
|
"pulldown-cmark",
|
|
2326
2419
|
"quick-xml",
|
|
@@ -2332,11 +2425,29 @@ dependencies = [
|
|
|
2332
2425
|
"serde_json",
|
|
2333
2426
|
"tantivy",
|
|
2334
2427
|
"tempfile",
|
|
2335
|
-
"thiserror 2.0.
|
|
2428
|
+
"thiserror 2.0.12",
|
|
2336
2429
|
"uuid",
|
|
2337
2430
|
"validation",
|
|
2338
2431
|
]
|
|
2339
2432
|
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "odict-cli"
|
|
2435
|
+
version = "2.1.0"
|
|
2436
|
+
dependencies = [
|
|
2437
|
+
"actix-web",
|
|
2438
|
+
"anyhow",
|
|
2439
|
+
"clap",
|
|
2440
|
+
"console",
|
|
2441
|
+
"derive_more",
|
|
2442
|
+
"env_logger",
|
|
2443
|
+
"humansize",
|
|
2444
|
+
"indicatif",
|
|
2445
|
+
"num-format",
|
|
2446
|
+
"odict",
|
|
2447
|
+
"pulldown-cmark",
|
|
2448
|
+
"serde",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2340
2451
|
[[package]]
|
|
2341
2452
|
name = "odict_node"
|
|
2342
2453
|
version = "0.0.2"
|
|
@@ -2350,7 +2461,7 @@ dependencies = [
|
|
|
2350
2461
|
|
|
2351
2462
|
[[package]]
|
|
2352
2463
|
name = "odict_python"
|
|
2353
|
-
version = "1.
|
|
2464
|
+
version = "1.1.0"
|
|
2354
2465
|
dependencies = [
|
|
2355
2466
|
"either",
|
|
2356
2467
|
"odict",
|
|
@@ -2359,21 +2470,21 @@ dependencies = [
|
|
|
2359
2470
|
|
|
2360
2471
|
[[package]]
|
|
2361
2472
|
name = "once_cell"
|
|
2362
|
-
version = "1.
|
|
2473
|
+
version = "1.21.1"
|
|
2363
2474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
-
checksum = "
|
|
2475
|
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
|
2365
2476
|
|
|
2366
2477
|
[[package]]
|
|
2367
2478
|
name = "oneshot"
|
|
2368
|
-
version = "0.1.
|
|
2479
|
+
version = "0.1.11"
|
|
2369
2480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
-
checksum = "
|
|
2481
|
+
checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea"
|
|
2371
2482
|
|
|
2372
2483
|
[[package]]
|
|
2373
2484
|
name = "oorandom"
|
|
2374
|
-
version = "11.1.
|
|
2485
|
+
version = "11.1.5"
|
|
2375
2486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
-
checksum = "
|
|
2487
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
2377
2488
|
|
|
2378
2489
|
[[package]]
|
|
2379
2490
|
name = "option-ext"
|
|
@@ -2410,15 +2521,9 @@ dependencies = [
|
|
|
2410
2521
|
"libc",
|
|
2411
2522
|
"redox_syscall",
|
|
2412
2523
|
"smallvec",
|
|
2413
|
-
"windows-targets
|
|
2524
|
+
"windows-targets",
|
|
2414
2525
|
]
|
|
2415
2526
|
|
|
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
2527
|
[[package]]
|
|
2423
2528
|
name = "percent-encoding"
|
|
2424
2529
|
version = "2.3.1"
|
|
@@ -2427,18 +2532,18 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
2427
2532
|
|
|
2428
2533
|
[[package]]
|
|
2429
2534
|
name = "phf"
|
|
2430
|
-
version = "0.11.
|
|
2535
|
+
version = "0.11.3"
|
|
2431
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
-
checksum = "
|
|
2537
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2433
2538
|
dependencies = [
|
|
2434
2539
|
"phf_shared",
|
|
2435
2540
|
]
|
|
2436
2541
|
|
|
2437
2542
|
[[package]]
|
|
2438
2543
|
name = "phf_codegen"
|
|
2439
|
-
version = "0.11.
|
|
2544
|
+
version = "0.11.3"
|
|
2440
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
-
checksum = "
|
|
2546
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2442
2547
|
dependencies = [
|
|
2443
2548
|
"phf_generator",
|
|
2444
2549
|
"phf_shared",
|
|
@@ -2446,28 +2551,48 @@ dependencies = [
|
|
|
2446
2551
|
|
|
2447
2552
|
[[package]]
|
|
2448
2553
|
name = "phf_generator"
|
|
2449
|
-
version = "0.11.
|
|
2554
|
+
version = "0.11.3"
|
|
2450
2555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
-
checksum = "
|
|
2556
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2452
2557
|
dependencies = [
|
|
2453
2558
|
"phf_shared",
|
|
2454
|
-
"rand",
|
|
2559
|
+
"rand 0.8.5",
|
|
2455
2560
|
]
|
|
2456
2561
|
|
|
2457
2562
|
[[package]]
|
|
2458
2563
|
name = "phf_shared"
|
|
2459
|
-
version = "0.11.
|
|
2564
|
+
version = "0.11.3"
|
|
2460
2565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
-
checksum = "
|
|
2566
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2462
2567
|
dependencies = [
|
|
2463
2568
|
"siphasher",
|
|
2464
2569
|
]
|
|
2465
2570
|
|
|
2571
|
+
[[package]]
|
|
2572
|
+
name = "pin-project"
|
|
2573
|
+
version = "1.1.10"
|
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2576
|
+
dependencies = [
|
|
2577
|
+
"pin-project-internal",
|
|
2578
|
+
]
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "pin-project-internal"
|
|
2582
|
+
version = "1.1.10"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2585
|
+
dependencies = [
|
|
2586
|
+
"proc-macro2",
|
|
2587
|
+
"quote",
|
|
2588
|
+
"syn 2.0.100",
|
|
2589
|
+
]
|
|
2590
|
+
|
|
2466
2591
|
[[package]]
|
|
2467
2592
|
name = "pin-project-lite"
|
|
2468
|
-
version = "0.2.
|
|
2593
|
+
version = "0.2.16"
|
|
2469
2594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
-
checksum = "
|
|
2595
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2471
2596
|
|
|
2472
2597
|
[[package]]
|
|
2473
2598
|
name = "pin-utils"
|
|
@@ -2477,9 +2602,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
2477
2602
|
|
|
2478
2603
|
[[package]]
|
|
2479
2604
|
name = "pkg-config"
|
|
2480
|
-
version = "0.3.
|
|
2605
|
+
version = "0.3.32"
|
|
2481
2606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2482
|
-
checksum = "
|
|
2607
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2483
2608
|
|
|
2484
2609
|
[[package]]
|
|
2485
2610
|
name = "plotters"
|
|
@@ -2511,9 +2636,18 @@ dependencies = [
|
|
|
2511
2636
|
|
|
2512
2637
|
[[package]]
|
|
2513
2638
|
name = "portable-atomic"
|
|
2514
|
-
version = "1.
|
|
2639
|
+
version = "1.11.0"
|
|
2515
2640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
-
checksum = "
|
|
2641
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "portable-atomic-util"
|
|
2645
|
+
version = "0.2.4"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2648
|
+
dependencies = [
|
|
2649
|
+
"portable-atomic",
|
|
2650
|
+
]
|
|
2517
2651
|
|
|
2518
2652
|
[[package]]
|
|
2519
2653
|
name = "powerfmt"
|
|
@@ -2523,11 +2657,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2523
2657
|
|
|
2524
2658
|
[[package]]
|
|
2525
2659
|
name = "ppv-lite86"
|
|
2526
|
-
version = "0.2.
|
|
2660
|
+
version = "0.2.21"
|
|
2527
2661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
-
checksum = "
|
|
2662
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2529
2663
|
dependencies = [
|
|
2530
|
-
"zerocopy",
|
|
2664
|
+
"zerocopy 0.8.24",
|
|
2531
2665
|
]
|
|
2532
2666
|
|
|
2533
2667
|
[[package]]
|
|
@@ -2556,9 +2690,9 @@ dependencies = [
|
|
|
2556
2690
|
|
|
2557
2691
|
[[package]]
|
|
2558
2692
|
name = "proc-macro2"
|
|
2559
|
-
version = "1.0.
|
|
2693
|
+
version = "1.0.94"
|
|
2560
2694
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2561
|
-
checksum = "
|
|
2695
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
2562
2696
|
dependencies = [
|
|
2563
2697
|
"unicode-ident",
|
|
2564
2698
|
]
|
|
@@ -2580,16 +2714,16 @@ checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
|
|
|
2580
2714
|
dependencies = [
|
|
2581
2715
|
"proc-macro2",
|
|
2582
2716
|
"quote",
|
|
2583
|
-
"syn 2.0.
|
|
2717
|
+
"syn 2.0.100",
|
|
2584
2718
|
]
|
|
2585
2719
|
|
|
2586
2720
|
[[package]]
|
|
2587
2721
|
name = "pulldown-cmark"
|
|
2588
|
-
version = "0.
|
|
2722
|
+
version = "0.13.0"
|
|
2589
2723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
-
checksum = "
|
|
2724
|
+
checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
|
|
2591
2725
|
dependencies = [
|
|
2592
|
-
"bitflags 2.
|
|
2726
|
+
"bitflags 2.9.0",
|
|
2593
2727
|
"getopts",
|
|
2594
2728
|
"memchr",
|
|
2595
2729
|
"pulldown-cmark-escape",
|
|
@@ -2604,9 +2738,9 @@ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
|
|
|
2604
2738
|
|
|
2605
2739
|
[[package]]
|
|
2606
2740
|
name = "pyo3"
|
|
2607
|
-
version = "0.
|
|
2741
|
+
version = "0.24.0"
|
|
2608
2742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
-
checksum = "
|
|
2743
|
+
checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86"
|
|
2610
2744
|
dependencies = [
|
|
2611
2745
|
"cfg-if",
|
|
2612
2746
|
"either",
|
|
@@ -2623,9 +2757,9 @@ dependencies = [
|
|
|
2623
2757
|
|
|
2624
2758
|
[[package]]
|
|
2625
2759
|
name = "pyo3-build-config"
|
|
2626
|
-
version = "0.
|
|
2760
|
+
version = "0.24.0"
|
|
2627
2761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
-
checksum = "
|
|
2762
|
+
checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a"
|
|
2629
2763
|
dependencies = [
|
|
2630
2764
|
"once_cell",
|
|
2631
2765
|
"target-lexicon",
|
|
@@ -2633,9 +2767,9 @@ dependencies = [
|
|
|
2633
2767
|
|
|
2634
2768
|
[[package]]
|
|
2635
2769
|
name = "pyo3-ffi"
|
|
2636
|
-
version = "0.
|
|
2770
|
+
version = "0.24.0"
|
|
2637
2771
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
2772
|
+
checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c"
|
|
2639
2773
|
dependencies = [
|
|
2640
2774
|
"libc",
|
|
2641
2775
|
"pyo3-build-config",
|
|
@@ -2643,34 +2777,34 @@ dependencies = [
|
|
|
2643
2777
|
|
|
2644
2778
|
[[package]]
|
|
2645
2779
|
name = "pyo3-macros"
|
|
2646
|
-
version = "0.
|
|
2780
|
+
version = "0.24.0"
|
|
2647
2781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
-
checksum = "
|
|
2782
|
+
checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42"
|
|
2649
2783
|
dependencies = [
|
|
2650
2784
|
"proc-macro2",
|
|
2651
2785
|
"pyo3-macros-backend",
|
|
2652
2786
|
"quote",
|
|
2653
|
-
"syn 2.0.
|
|
2787
|
+
"syn 2.0.100",
|
|
2654
2788
|
]
|
|
2655
2789
|
|
|
2656
2790
|
[[package]]
|
|
2657
2791
|
name = "pyo3-macros-backend"
|
|
2658
|
-
version = "0.
|
|
2792
|
+
version = "0.24.0"
|
|
2659
2793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
2794
|
+
checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e"
|
|
2661
2795
|
dependencies = [
|
|
2662
2796
|
"heck 0.5.0",
|
|
2663
2797
|
"proc-macro2",
|
|
2664
2798
|
"pyo3-build-config",
|
|
2665
2799
|
"quote",
|
|
2666
|
-
"syn 2.0.
|
|
2800
|
+
"syn 2.0.100",
|
|
2667
2801
|
]
|
|
2668
2802
|
|
|
2669
2803
|
[[package]]
|
|
2670
2804
|
name = "quick-xml"
|
|
2671
|
-
version = "0.37.
|
|
2805
|
+
version = "0.37.3"
|
|
2672
2806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
-
checksum = "
|
|
2807
|
+
checksum = "bf763ab1c7a3aa408be466efc86efe35ed1bd3dd74173ed39d6b0d0a6f0ba148"
|
|
2674
2808
|
dependencies = [
|
|
2675
2809
|
"memchr",
|
|
2676
2810
|
"serde",
|
|
@@ -2678,13 +2812,19 @@ dependencies = [
|
|
|
2678
2812
|
|
|
2679
2813
|
[[package]]
|
|
2680
2814
|
name = "quote"
|
|
2681
|
-
version = "1.0.
|
|
2815
|
+
version = "1.0.40"
|
|
2682
2816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
-
checksum = "
|
|
2817
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2684
2818
|
dependencies = [
|
|
2685
2819
|
"proc-macro2",
|
|
2686
2820
|
]
|
|
2687
2821
|
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "r-efi"
|
|
2824
|
+
version = "5.2.0"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2827
|
+
|
|
2688
2828
|
[[package]]
|
|
2689
2829
|
name = "rancor"
|
|
2690
2830
|
version = "0.1.0"
|
|
@@ -2701,8 +2841,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2701
2841
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2702
2842
|
dependencies = [
|
|
2703
2843
|
"libc",
|
|
2704
|
-
"rand_chacha",
|
|
2705
|
-
"rand_core",
|
|
2844
|
+
"rand_chacha 0.3.1",
|
|
2845
|
+
"rand_core 0.6.4",
|
|
2846
|
+
]
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "rand"
|
|
2850
|
+
version = "0.9.0"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"rand_chacha 0.9.0",
|
|
2855
|
+
"rand_core 0.9.3",
|
|
2856
|
+
"zerocopy 0.8.24",
|
|
2706
2857
|
]
|
|
2707
2858
|
|
|
2708
2859
|
[[package]]
|
|
@@ -2712,7 +2863,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2712
2863
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2713
2864
|
dependencies = [
|
|
2714
2865
|
"ppv-lite86",
|
|
2715
|
-
"rand_core",
|
|
2866
|
+
"rand_core 0.6.4",
|
|
2867
|
+
]
|
|
2868
|
+
|
|
2869
|
+
[[package]]
|
|
2870
|
+
name = "rand_chacha"
|
|
2871
|
+
version = "0.9.0"
|
|
2872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2873
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2874
|
+
dependencies = [
|
|
2875
|
+
"ppv-lite86",
|
|
2876
|
+
"rand_core 0.9.3",
|
|
2716
2877
|
]
|
|
2717
2878
|
|
|
2718
2879
|
[[package]]
|
|
@@ -2721,7 +2882,16 @@ version = "0.6.4"
|
|
|
2721
2882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
2883
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2723
2884
|
dependencies = [
|
|
2724
|
-
"getrandom",
|
|
2885
|
+
"getrandom 0.2.15",
|
|
2886
|
+
]
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "rand_core"
|
|
2890
|
+
version = "0.9.3"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2893
|
+
dependencies = [
|
|
2894
|
+
"getrandom 0.3.2",
|
|
2725
2895
|
]
|
|
2726
2896
|
|
|
2727
2897
|
[[package]]
|
|
@@ -2731,7 +2901,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2731
2901
|
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2732
2902
|
dependencies = [
|
|
2733
2903
|
"num-traits",
|
|
2734
|
-
"rand",
|
|
2904
|
+
"rand 0.8.5",
|
|
2735
2905
|
]
|
|
2736
2906
|
|
|
2737
2907
|
[[package]]
|
|
@@ -2756,22 +2926,22 @@ dependencies = [
|
|
|
2756
2926
|
|
|
2757
2927
|
[[package]]
|
|
2758
2928
|
name = "redox_syscall"
|
|
2759
|
-
version = "0.5.
|
|
2929
|
+
version = "0.5.10"
|
|
2760
2930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
-
checksum = "
|
|
2931
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
|
2762
2932
|
dependencies = [
|
|
2763
|
-
"bitflags 2.
|
|
2933
|
+
"bitflags 2.9.0",
|
|
2764
2934
|
]
|
|
2765
2935
|
|
|
2766
2936
|
[[package]]
|
|
2767
2937
|
name = "redox_users"
|
|
2768
|
-
version = "0.
|
|
2938
|
+
version = "0.5.0"
|
|
2769
2939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
-
checksum = "
|
|
2940
|
+
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
|
|
2771
2941
|
dependencies = [
|
|
2772
|
-
"getrandom",
|
|
2942
|
+
"getrandom 0.2.15",
|
|
2773
2943
|
"libredox",
|
|
2774
|
-
"thiserror
|
|
2944
|
+
"thiserror 2.0.12",
|
|
2775
2945
|
]
|
|
2776
2946
|
|
|
2777
2947
|
[[package]]
|
|
@@ -2788,9 +2958,9 @@ dependencies = [
|
|
|
2788
2958
|
|
|
2789
2959
|
[[package]]
|
|
2790
2960
|
name = "regex-automata"
|
|
2791
|
-
version = "0.4.
|
|
2961
|
+
version = "0.4.9"
|
|
2792
2962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2963
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2794
2964
|
dependencies = [
|
|
2795
2965
|
"aho-corasick",
|
|
2796
2966
|
"memchr",
|
|
@@ -2820,28 +2990,27 @@ dependencies = [
|
|
|
2820
2990
|
|
|
2821
2991
|
[[package]]
|
|
2822
2992
|
name = "ring"
|
|
2823
|
-
version = "0.17.
|
|
2993
|
+
version = "0.17.14"
|
|
2824
2994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
-
checksum = "
|
|
2995
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2826
2996
|
dependencies = [
|
|
2827
2997
|
"cc",
|
|
2828
2998
|
"cfg-if",
|
|
2829
|
-
"getrandom",
|
|
2999
|
+
"getrandom 0.2.15",
|
|
2830
3000
|
"libc",
|
|
2831
|
-
"spin",
|
|
2832
3001
|
"untrusted",
|
|
2833
3002
|
"windows-sys 0.52.0",
|
|
2834
3003
|
]
|
|
2835
3004
|
|
|
2836
3005
|
[[package]]
|
|
2837
3006
|
name = "rkyv"
|
|
2838
|
-
version = "0.8.
|
|
3007
|
+
version = "0.8.10"
|
|
2839
3008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
-
checksum = "
|
|
3009
|
+
checksum = "1e147371c75553e1e2fcdb483944a8540b8438c31426279553b9a8182a9b7b65"
|
|
2841
3010
|
dependencies = [
|
|
2842
3011
|
"bytecheck",
|
|
2843
3012
|
"bytes",
|
|
2844
|
-
"hashbrown 0.15.
|
|
3013
|
+
"hashbrown 0.15.2",
|
|
2845
3014
|
"indexmap",
|
|
2846
3015
|
"munge",
|
|
2847
3016
|
"ptr_meta",
|
|
@@ -2854,15 +3023,21 @@ dependencies = [
|
|
|
2854
3023
|
|
|
2855
3024
|
[[package]]
|
|
2856
3025
|
name = "rkyv_derive"
|
|
2857
|
-
version = "0.8.
|
|
3026
|
+
version = "0.8.10"
|
|
2858
3027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
-
checksum = "
|
|
3028
|
+
checksum = "246b40ac189af6c675d124b802e8ef6d5246c53e17367ce9501f8f66a81abb7a"
|
|
2860
3029
|
dependencies = [
|
|
2861
3030
|
"proc-macro2",
|
|
2862
3031
|
"quote",
|
|
2863
|
-
"syn 2.0.
|
|
3032
|
+
"syn 2.0.100",
|
|
2864
3033
|
]
|
|
2865
3034
|
|
|
3035
|
+
[[package]]
|
|
3036
|
+
name = "rle-decode-fast"
|
|
3037
|
+
version = "1.0.3"
|
|
3038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3039
|
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
3040
|
+
|
|
2866
3041
|
[[package]]
|
|
2867
3042
|
name = "rust-stemmers"
|
|
2868
3043
|
version = "1.2.0"
|
|
@@ -2886,32 +3061,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2886
3061
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2887
3062
|
|
|
2888
3063
|
[[package]]
|
|
2889
|
-
name = "
|
|
2890
|
-
version = "0.
|
|
3064
|
+
name = "rustix"
|
|
3065
|
+
version = "0.38.44"
|
|
2891
3066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
-
checksum = "
|
|
3067
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2893
3068
|
dependencies = [
|
|
2894
|
-
"
|
|
3069
|
+
"bitflags 2.9.0",
|
|
3070
|
+
"errno",
|
|
3071
|
+
"libc",
|
|
3072
|
+
"linux-raw-sys 0.4.15",
|
|
3073
|
+
"windows-sys 0.52.0",
|
|
2895
3074
|
]
|
|
2896
3075
|
|
|
2897
3076
|
[[package]]
|
|
2898
3077
|
name = "rustix"
|
|
2899
|
-
version = "0.
|
|
3078
|
+
version = "1.0.3"
|
|
2900
3079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
-
checksum = "
|
|
3080
|
+
checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
|
|
2902
3081
|
dependencies = [
|
|
2903
|
-
"bitflags 2.
|
|
3082
|
+
"bitflags 2.9.0",
|
|
2904
3083
|
"errno",
|
|
2905
3084
|
"libc",
|
|
2906
|
-
"linux-raw-sys",
|
|
3085
|
+
"linux-raw-sys 0.9.3",
|
|
2907
3086
|
"windows-sys 0.52.0",
|
|
2908
3087
|
]
|
|
2909
3088
|
|
|
2910
3089
|
[[package]]
|
|
2911
3090
|
name = "rustls"
|
|
2912
|
-
version = "0.23.
|
|
3091
|
+
version = "0.23.25"
|
|
2913
3092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
-
checksum = "
|
|
3093
|
+
checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
|
|
2915
3094
|
dependencies = [
|
|
2916
3095
|
"log",
|
|
2917
3096
|
"once_cell",
|
|
@@ -2924,15 +3103,15 @@ dependencies = [
|
|
|
2924
3103
|
|
|
2925
3104
|
[[package]]
|
|
2926
3105
|
name = "rustls-pki-types"
|
|
2927
|
-
version = "1.
|
|
3106
|
+
version = "1.11.0"
|
|
2928
3107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
-
checksum = "
|
|
3108
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
2930
3109
|
|
|
2931
3110
|
[[package]]
|
|
2932
3111
|
name = "rustls-webpki"
|
|
2933
|
-
version = "0.
|
|
3112
|
+
version = "0.103.0"
|
|
2934
3113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
-
checksum = "
|
|
3114
|
+
checksum = "0aa4eeac2588ffff23e9d7a7e9b3f971c5fb5b7ebc9452745e0c232c64f83b2f"
|
|
2936
3115
|
dependencies = [
|
|
2937
3116
|
"ring",
|
|
2938
3117
|
"rustls-pki-types",
|
|
@@ -2941,15 +3120,15 @@ dependencies = [
|
|
|
2941
3120
|
|
|
2942
3121
|
[[package]]
|
|
2943
3122
|
name = "rustversion"
|
|
2944
|
-
version = "1.0.
|
|
3123
|
+
version = "1.0.20"
|
|
2945
3124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3125
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2947
3126
|
|
|
2948
3127
|
[[package]]
|
|
2949
3128
|
name = "ryu"
|
|
2950
|
-
version = "1.0.
|
|
3129
|
+
version = "1.0.20"
|
|
2951
3130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
-
checksum = "
|
|
3131
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2953
3132
|
|
|
2954
3133
|
[[package]]
|
|
2955
3134
|
name = "same-file"
|
|
@@ -2968,9 +3147,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2968
3147
|
|
|
2969
3148
|
[[package]]
|
|
2970
3149
|
name = "sea-query"
|
|
2971
|
-
version = "0.32.
|
|
3150
|
+
version = "0.32.3"
|
|
2972
3151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
-
checksum = "
|
|
3152
|
+
checksum = "f5a24d8b9fcd2674a6c878a3d871f4f1380c6c43cc3718728ac96864d888458e"
|
|
2974
3153
|
dependencies = [
|
|
2975
3154
|
"inherent",
|
|
2976
3155
|
"sea-query-derive",
|
|
@@ -2978,49 +3157,49 @@ dependencies = [
|
|
|
2978
3157
|
|
|
2979
3158
|
[[package]]
|
|
2980
3159
|
name = "sea-query-derive"
|
|
2981
|
-
version = "0.4.
|
|
3160
|
+
version = "0.4.3"
|
|
2982
3161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
-
checksum = "
|
|
3162
|
+
checksum = "bae0cbad6ab996955664982739354128c58d16e126114fe88c2a493642502aab"
|
|
2984
3163
|
dependencies = [
|
|
2985
3164
|
"darling",
|
|
2986
3165
|
"heck 0.4.1",
|
|
2987
3166
|
"proc-macro2",
|
|
2988
3167
|
"quote",
|
|
2989
|
-
"syn 2.0.
|
|
2990
|
-
"thiserror
|
|
3168
|
+
"syn 2.0.100",
|
|
3169
|
+
"thiserror 2.0.12",
|
|
2991
3170
|
]
|
|
2992
3171
|
|
|
2993
3172
|
[[package]]
|
|
2994
3173
|
name = "semver"
|
|
2995
|
-
version = "1.0.
|
|
3174
|
+
version = "1.0.26"
|
|
2996
3175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
-
checksum = "
|
|
3176
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
2998
3177
|
|
|
2999
3178
|
[[package]]
|
|
3000
3179
|
name = "serde"
|
|
3001
|
-
version = "1.0.
|
|
3180
|
+
version = "1.0.219"
|
|
3002
3181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
3182
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
3004
3183
|
dependencies = [
|
|
3005
3184
|
"serde_derive",
|
|
3006
3185
|
]
|
|
3007
3186
|
|
|
3008
3187
|
[[package]]
|
|
3009
3188
|
name = "serde_derive"
|
|
3010
|
-
version = "1.0.
|
|
3189
|
+
version = "1.0.219"
|
|
3011
3190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
-
checksum = "
|
|
3191
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
3013
3192
|
dependencies = [
|
|
3014
3193
|
"proc-macro2",
|
|
3015
3194
|
"quote",
|
|
3016
|
-
"syn 2.0.
|
|
3195
|
+
"syn 2.0.100",
|
|
3017
3196
|
]
|
|
3018
3197
|
|
|
3019
3198
|
[[package]]
|
|
3020
3199
|
name = "serde_json"
|
|
3021
|
-
version = "1.0.
|
|
3200
|
+
version = "1.0.140"
|
|
3022
3201
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
-
checksum = "
|
|
3202
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
3024
3203
|
dependencies = [
|
|
3025
3204
|
"itoa",
|
|
3026
3205
|
"memchr",
|
|
@@ -3074,15 +3253,15 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
|
3074
3253
|
|
|
3075
3254
|
[[package]]
|
|
3076
3255
|
name = "similar"
|
|
3077
|
-
version = "2.
|
|
3256
|
+
version = "2.7.0"
|
|
3078
3257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
-
checksum = "
|
|
3258
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
3080
3259
|
|
|
3081
3260
|
[[package]]
|
|
3082
3261
|
name = "siphasher"
|
|
3083
|
-
version = "0.
|
|
3262
|
+
version = "1.0.1"
|
|
3084
3263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
-
checksum = "
|
|
3264
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3086
3265
|
|
|
3087
3266
|
[[package]]
|
|
3088
3267
|
name = "sketches-ddsketch"
|
|
@@ -3110,38 +3289,26 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
|
3110
3289
|
|
|
3111
3290
|
[[package]]
|
|
3112
3291
|
name = "smallvec"
|
|
3113
|
-
version = "1.
|
|
3292
|
+
version = "1.14.0"
|
|
3114
3293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
-
checksum = "
|
|
3294
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
3116
3295
|
|
|
3117
3296
|
[[package]]
|
|
3118
3297
|
name = "socket2"
|
|
3119
|
-
version = "0.5.
|
|
3298
|
+
version = "0.5.8"
|
|
3120
3299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
-
checksum = "
|
|
3300
|
+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
|
|
3122
3301
|
dependencies = [
|
|
3123
3302
|
"libc",
|
|
3124
3303
|
"windows-sys 0.52.0",
|
|
3125
3304
|
]
|
|
3126
3305
|
|
|
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
3306
|
[[package]]
|
|
3134
3307
|
name = "stable_deref_trait"
|
|
3135
3308
|
version = "1.2.0"
|
|
3136
3309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
3310
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3138
3311
|
|
|
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
3312
|
[[package]]
|
|
3146
3313
|
name = "strsim"
|
|
3147
3314
|
version = "0.11.1"
|
|
@@ -3167,7 +3334,7 @@ dependencies = [
|
|
|
3167
3334
|
"proc-macro2",
|
|
3168
3335
|
"quote",
|
|
3169
3336
|
"rustversion",
|
|
3170
|
-
"syn 2.0.
|
|
3337
|
+
"syn 2.0.100",
|
|
3171
3338
|
]
|
|
3172
3339
|
|
|
3173
3340
|
[[package]]
|
|
@@ -3189,9 +3356,9 @@ dependencies = [
|
|
|
3189
3356
|
|
|
3190
3357
|
[[package]]
|
|
3191
3358
|
name = "syn"
|
|
3192
|
-
version = "2.0.
|
|
3359
|
+
version = "2.0.100"
|
|
3193
3360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
-
checksum = "
|
|
3361
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
3195
3362
|
dependencies = [
|
|
3196
3363
|
"proc-macro2",
|
|
3197
3364
|
"quote",
|
|
@@ -3206,7 +3373,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3206
3373
|
dependencies = [
|
|
3207
3374
|
"proc-macro2",
|
|
3208
3375
|
"quote",
|
|
3209
|
-
"syn 2.0.
|
|
3376
|
+
"syn 2.0.100",
|
|
3210
3377
|
]
|
|
3211
3378
|
|
|
3212
3379
|
[[package]]
|
|
@@ -3254,7 +3421,7 @@ dependencies = [
|
|
|
3254
3421
|
"tantivy-stacker",
|
|
3255
3422
|
"tantivy-tokenizer-api",
|
|
3256
3423
|
"tempfile",
|
|
3257
|
-
"thiserror 1.0.
|
|
3424
|
+
"thiserror 1.0.69",
|
|
3258
3425
|
"time",
|
|
3259
3426
|
"uuid",
|
|
3260
3427
|
"winapi",
|
|
@@ -3352,9 +3519,9 @@ dependencies = [
|
|
|
3352
3519
|
|
|
3353
3520
|
[[package]]
|
|
3354
3521
|
name = "tar"
|
|
3355
|
-
version = "0.4.
|
|
3522
|
+
version = "0.4.44"
|
|
3356
3523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
-
checksum = "
|
|
3524
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
3358
3525
|
dependencies = [
|
|
3359
3526
|
"filetime",
|
|
3360
3527
|
"libc",
|
|
@@ -3363,68 +3530,68 @@ dependencies = [
|
|
|
3363
3530
|
|
|
3364
3531
|
[[package]]
|
|
3365
3532
|
name = "target-lexicon"
|
|
3366
|
-
version = "0.
|
|
3533
|
+
version = "0.13.2"
|
|
3367
3534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
-
checksum = "
|
|
3535
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
3369
3536
|
|
|
3370
3537
|
[[package]]
|
|
3371
3538
|
name = "tempfile"
|
|
3372
|
-
version = "3.
|
|
3539
|
+
version = "3.19.1"
|
|
3373
3540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
-
checksum = "
|
|
3541
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
3375
3542
|
dependencies = [
|
|
3376
|
-
"cfg-if",
|
|
3377
3543
|
"fastrand",
|
|
3544
|
+
"getrandom 0.3.2",
|
|
3378
3545
|
"once_cell",
|
|
3379
|
-
"rustix",
|
|
3380
|
-
"windows-sys 0.
|
|
3546
|
+
"rustix 1.0.3",
|
|
3547
|
+
"windows-sys 0.52.0",
|
|
3381
3548
|
]
|
|
3382
3549
|
|
|
3383
3550
|
[[package]]
|
|
3384
3551
|
name = "thiserror"
|
|
3385
|
-
version = "1.0.
|
|
3552
|
+
version = "1.0.69"
|
|
3386
3553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
-
checksum = "
|
|
3554
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3388
3555
|
dependencies = [
|
|
3389
|
-
"thiserror-impl 1.0.
|
|
3556
|
+
"thiserror-impl 1.0.69",
|
|
3390
3557
|
]
|
|
3391
3558
|
|
|
3392
3559
|
[[package]]
|
|
3393
3560
|
name = "thiserror"
|
|
3394
|
-
version = "2.0.
|
|
3561
|
+
version = "2.0.12"
|
|
3395
3562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
-
checksum = "
|
|
3563
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3397
3564
|
dependencies = [
|
|
3398
|
-
"thiserror-impl 2.0.
|
|
3565
|
+
"thiserror-impl 2.0.12",
|
|
3399
3566
|
]
|
|
3400
3567
|
|
|
3401
3568
|
[[package]]
|
|
3402
3569
|
name = "thiserror-impl"
|
|
3403
|
-
version = "1.0.
|
|
3570
|
+
version = "1.0.69"
|
|
3404
3571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
-
checksum = "
|
|
3572
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3406
3573
|
dependencies = [
|
|
3407
3574
|
"proc-macro2",
|
|
3408
3575
|
"quote",
|
|
3409
|
-
"syn 2.0.
|
|
3576
|
+
"syn 2.0.100",
|
|
3410
3577
|
]
|
|
3411
3578
|
|
|
3412
3579
|
[[package]]
|
|
3413
3580
|
name = "thiserror-impl"
|
|
3414
|
-
version = "2.0.
|
|
3581
|
+
version = "2.0.12"
|
|
3415
3582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
|
-
checksum = "
|
|
3583
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3417
3584
|
dependencies = [
|
|
3418
3585
|
"proc-macro2",
|
|
3419
3586
|
"quote",
|
|
3420
|
-
"syn 2.0.
|
|
3587
|
+
"syn 2.0.100",
|
|
3421
3588
|
]
|
|
3422
3589
|
|
|
3423
3590
|
[[package]]
|
|
3424
3591
|
name = "time"
|
|
3425
|
-
version = "0.3.
|
|
3592
|
+
version = "0.3.40"
|
|
3426
3593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
-
checksum = "
|
|
3594
|
+
checksum = "9d9c75b47bdff86fa3334a3db91356b8d7d86a9b839dab7d0bdc5c3d3a077618"
|
|
3428
3595
|
dependencies = [
|
|
3429
3596
|
"deranged",
|
|
3430
3597
|
"itoa",
|
|
@@ -3437,15 +3604,15 @@ dependencies = [
|
|
|
3437
3604
|
|
|
3438
3605
|
[[package]]
|
|
3439
3606
|
name = "time-core"
|
|
3440
|
-
version = "0.1.
|
|
3607
|
+
version = "0.1.4"
|
|
3441
3608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
-
checksum = "
|
|
3609
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
3443
3610
|
|
|
3444
3611
|
[[package]]
|
|
3445
3612
|
name = "time-macros"
|
|
3446
|
-
version = "0.2.
|
|
3613
|
+
version = "0.2.21"
|
|
3447
3614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
|
-
checksum = "
|
|
3615
|
+
checksum = "29aa485584182073ed57fd5004aa09c371f021325014694e432313345865fd04"
|
|
3449
3616
|
dependencies = [
|
|
3450
3617
|
"num-conv",
|
|
3451
3618
|
"time-core",
|
|
@@ -3473,9 +3640,9 @@ dependencies = [
|
|
|
3473
3640
|
|
|
3474
3641
|
[[package]]
|
|
3475
3642
|
name = "tinyvec"
|
|
3476
|
-
version = "1.
|
|
3643
|
+
version = "1.9.0"
|
|
3477
3644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
-
checksum = "
|
|
3645
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
3479
3646
|
dependencies = [
|
|
3480
3647
|
"tinyvec_macros",
|
|
3481
3648
|
]
|
|
@@ -3488,9 +3655,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3488
3655
|
|
|
3489
3656
|
[[package]]
|
|
3490
3657
|
name = "tokio"
|
|
3491
|
-
version = "1.
|
|
3658
|
+
version = "1.44.1"
|
|
3492
3659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
-
checksum = "
|
|
3660
|
+
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
|
3494
3661
|
dependencies = [
|
|
3495
3662
|
"backtrace",
|
|
3496
3663
|
"bytes",
|
|
@@ -3505,9 +3672,9 @@ dependencies = [
|
|
|
3505
3672
|
|
|
3506
3673
|
[[package]]
|
|
3507
3674
|
name = "tokio-util"
|
|
3508
|
-
version = "0.7.
|
|
3675
|
+
version = "0.7.14"
|
|
3509
3676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
-
checksum = "
|
|
3677
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
3511
3678
|
dependencies = [
|
|
3512
3679
|
"bytes",
|
|
3513
3680
|
"futures-core",
|
|
@@ -3518,45 +3685,47 @@ dependencies = [
|
|
|
3518
3685
|
|
|
3519
3686
|
[[package]]
|
|
3520
3687
|
name = "tracing"
|
|
3521
|
-
version = "0.1.
|
|
3688
|
+
version = "0.1.41"
|
|
3522
3689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
-
checksum = "
|
|
3690
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3524
3691
|
dependencies = [
|
|
3525
3692
|
"log",
|
|
3526
3693
|
"pin-project-lite",
|
|
3694
|
+
"tracing-attributes",
|
|
3527
3695
|
"tracing-core",
|
|
3528
3696
|
]
|
|
3529
3697
|
|
|
3530
3698
|
[[package]]
|
|
3531
|
-
name = "tracing-
|
|
3532
|
-
version = "0.1.
|
|
3699
|
+
name = "tracing-attributes"
|
|
3700
|
+
version = "0.1.28"
|
|
3533
3701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
-
checksum = "
|
|
3702
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
3535
3703
|
dependencies = [
|
|
3536
|
-
"
|
|
3704
|
+
"proc-macro2",
|
|
3705
|
+
"quote",
|
|
3706
|
+
"syn 2.0.100",
|
|
3537
3707
|
]
|
|
3538
3708
|
|
|
3539
3709
|
[[package]]
|
|
3540
|
-
name = "
|
|
3541
|
-
version = "1.
|
|
3710
|
+
name = "tracing-core"
|
|
3711
|
+
version = "0.1.33"
|
|
3542
3712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
-
checksum = "
|
|
3713
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
3544
3714
|
dependencies = [
|
|
3545
|
-
"
|
|
3546
|
-
"static_assertions",
|
|
3715
|
+
"once_cell",
|
|
3547
3716
|
]
|
|
3548
3717
|
|
|
3549
3718
|
[[package]]
|
|
3550
3719
|
name = "typenum"
|
|
3551
|
-
version = "1.
|
|
3720
|
+
version = "1.18.0"
|
|
3552
3721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
-
checksum = "
|
|
3722
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3554
3723
|
|
|
3555
3724
|
[[package]]
|
|
3556
3725
|
name = "unicase"
|
|
3557
|
-
version = "2.8.
|
|
3726
|
+
version = "2.8.1"
|
|
3558
3727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
-
checksum = "
|
|
3728
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
3560
3729
|
|
|
3561
3730
|
[[package]]
|
|
3562
3731
|
name = "unicode-blocks"
|
|
@@ -3566,9 +3735,9 @@ checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
|
|
|
3566
3735
|
|
|
3567
3736
|
[[package]]
|
|
3568
3737
|
name = "unicode-ident"
|
|
3569
|
-
version = "1.0.
|
|
3738
|
+
version = "1.0.18"
|
|
3570
3739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
-
checksum = "
|
|
3740
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3572
3741
|
|
|
3573
3742
|
[[package]]
|
|
3574
3743
|
name = "unicode-normalization"
|
|
@@ -3597,11 +3766,17 @@ version = "0.2.0"
|
|
|
3597
3766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3598
3767
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3599
3768
|
|
|
3769
|
+
[[package]]
|
|
3770
|
+
name = "unicode-xid"
|
|
3771
|
+
version = "0.2.6"
|
|
3772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3774
|
+
|
|
3600
3775
|
[[package]]
|
|
3601
3776
|
name = "unindent"
|
|
3602
|
-
version = "0.2.
|
|
3777
|
+
version = "0.2.4"
|
|
3603
3778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
-
checksum = "
|
|
3779
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3605
3780
|
|
|
3606
3781
|
[[package]]
|
|
3607
3782
|
name = "untrusted"
|
|
@@ -3611,9 +3786,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3611
3786
|
|
|
3612
3787
|
[[package]]
|
|
3613
3788
|
name = "ureq"
|
|
3614
|
-
version = "2.
|
|
3789
|
+
version = "2.12.1"
|
|
3615
3790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
-
checksum = "
|
|
3791
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
3617
3792
|
dependencies = [
|
|
3618
3793
|
"base64",
|
|
3619
3794
|
"log",
|
|
@@ -3626,9 +3801,9 @@ dependencies = [
|
|
|
3626
3801
|
|
|
3627
3802
|
[[package]]
|
|
3628
3803
|
name = "url"
|
|
3629
|
-
version = "2.5.
|
|
3804
|
+
version = "2.5.4"
|
|
3630
3805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
-
checksum = "
|
|
3806
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3632
3807
|
dependencies = [
|
|
3633
3808
|
"form_urlencoded",
|
|
3634
3809
|
"idna",
|
|
@@ -3661,25 +3836,27 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3661
3836
|
|
|
3662
3837
|
[[package]]
|
|
3663
3838
|
name = "uuid"
|
|
3664
|
-
version = "1.
|
|
3839
|
+
version = "1.16.0"
|
|
3665
3840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
-
checksum = "
|
|
3841
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3667
3842
|
dependencies = [
|
|
3668
|
-
"getrandom",
|
|
3669
|
-
"
|
|
3843
|
+
"getrandom 0.3.2",
|
|
3844
|
+
"js-sys",
|
|
3845
|
+
"rand 0.9.0",
|
|
3670
3846
|
"serde",
|
|
3671
3847
|
"uuid-macro-internal",
|
|
3848
|
+
"wasm-bindgen",
|
|
3672
3849
|
]
|
|
3673
3850
|
|
|
3674
3851
|
[[package]]
|
|
3675
3852
|
name = "uuid-macro-internal"
|
|
3676
|
-
version = "1.
|
|
3853
|
+
version = "1.16.0"
|
|
3677
3854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
-
checksum = "
|
|
3855
|
+
checksum = "72dcd78c4f979627a754f5522cea6e6a25e55139056535fe6e69c506cd64a862"
|
|
3679
3856
|
dependencies = [
|
|
3680
3857
|
"proc-macro2",
|
|
3681
3858
|
"quote",
|
|
3682
|
-
"syn 2.0.
|
|
3859
|
+
"syn 2.0.100",
|
|
3683
3860
|
]
|
|
3684
3861
|
|
|
3685
3862
|
[[package]]
|
|
@@ -3705,53 +3882,51 @@ dependencies = [
|
|
|
3705
3882
|
]
|
|
3706
3883
|
|
|
3707
3884
|
[[package]]
|
|
3708
|
-
name = "
|
|
3709
|
-
version = "
|
|
3885
|
+
name = "wasi"
|
|
3886
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3710
3887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3711
|
-
checksum = "
|
|
3712
|
-
dependencies = [
|
|
3713
|
-
"fnv",
|
|
3714
|
-
"itertools 0.10.5",
|
|
3715
|
-
"lazy_static",
|
|
3716
|
-
]
|
|
3888
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3717
3889
|
|
|
3718
3890
|
[[package]]
|
|
3719
3891
|
name = "wasi"
|
|
3720
|
-
version = "0.
|
|
3892
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3721
3893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
-
checksum = "
|
|
3894
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3895
|
+
dependencies = [
|
|
3896
|
+
"wit-bindgen-rt",
|
|
3897
|
+
]
|
|
3723
3898
|
|
|
3724
3899
|
[[package]]
|
|
3725
3900
|
name = "wasm-bindgen"
|
|
3726
|
-
version = "0.2.
|
|
3901
|
+
version = "0.2.100"
|
|
3727
3902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
-
checksum = "
|
|
3903
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3729
3904
|
dependencies = [
|
|
3730
3905
|
"cfg-if",
|
|
3731
3906
|
"once_cell",
|
|
3907
|
+
"rustversion",
|
|
3732
3908
|
"wasm-bindgen-macro",
|
|
3733
3909
|
]
|
|
3734
3910
|
|
|
3735
3911
|
[[package]]
|
|
3736
3912
|
name = "wasm-bindgen-backend"
|
|
3737
|
-
version = "0.2.
|
|
3913
|
+
version = "0.2.100"
|
|
3738
3914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
-
checksum = "
|
|
3915
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3740
3916
|
dependencies = [
|
|
3741
3917
|
"bumpalo",
|
|
3742
3918
|
"log",
|
|
3743
|
-
"once_cell",
|
|
3744
3919
|
"proc-macro2",
|
|
3745
3920
|
"quote",
|
|
3746
|
-
"syn 2.0.
|
|
3921
|
+
"syn 2.0.100",
|
|
3747
3922
|
"wasm-bindgen-shared",
|
|
3748
3923
|
]
|
|
3749
3924
|
|
|
3750
3925
|
[[package]]
|
|
3751
3926
|
name = "wasm-bindgen-macro"
|
|
3752
|
-
version = "0.2.
|
|
3927
|
+
version = "0.2.100"
|
|
3753
3928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
-
checksum = "
|
|
3929
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3755
3930
|
dependencies = [
|
|
3756
3931
|
"quote",
|
|
3757
3932
|
"wasm-bindgen-macro-support",
|
|
@@ -3759,28 +3934,31 @@ dependencies = [
|
|
|
3759
3934
|
|
|
3760
3935
|
[[package]]
|
|
3761
3936
|
name = "wasm-bindgen-macro-support"
|
|
3762
|
-
version = "0.2.
|
|
3937
|
+
version = "0.2.100"
|
|
3763
3938
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
-
checksum = "
|
|
3939
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3765
3940
|
dependencies = [
|
|
3766
3941
|
"proc-macro2",
|
|
3767
3942
|
"quote",
|
|
3768
|
-
"syn 2.0.
|
|
3943
|
+
"syn 2.0.100",
|
|
3769
3944
|
"wasm-bindgen-backend",
|
|
3770
3945
|
"wasm-bindgen-shared",
|
|
3771
3946
|
]
|
|
3772
3947
|
|
|
3773
3948
|
[[package]]
|
|
3774
3949
|
name = "wasm-bindgen-shared"
|
|
3775
|
-
version = "0.2.
|
|
3950
|
+
version = "0.2.100"
|
|
3776
3951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
-
checksum = "
|
|
3952
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3953
|
+
dependencies = [
|
|
3954
|
+
"unicode-ident",
|
|
3955
|
+
]
|
|
3778
3956
|
|
|
3779
3957
|
[[package]]
|
|
3780
3958
|
name = "web-sys"
|
|
3781
|
-
version = "0.3.
|
|
3959
|
+
version = "0.3.77"
|
|
3782
3960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3783
|
-
checksum = "
|
|
3961
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3784
3962
|
dependencies = [
|
|
3785
3963
|
"js-sys",
|
|
3786
3964
|
"wasm-bindgen",
|
|
@@ -3798,9 +3976,9 @@ dependencies = [
|
|
|
3798
3976
|
|
|
3799
3977
|
[[package]]
|
|
3800
3978
|
name = "webpki-roots"
|
|
3801
|
-
version = "0.26.
|
|
3979
|
+
version = "0.26.8"
|
|
3802
3980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
-
checksum = "
|
|
3981
|
+
checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
|
|
3804
3982
|
dependencies = [
|
|
3805
3983
|
"rustls-pki-types",
|
|
3806
3984
|
]
|
|
@@ -3837,7 +4015,7 @@ version = "0.1.9"
|
|
|
3837
4015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
4016
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
3839
4017
|
dependencies = [
|
|
3840
|
-
"windows-sys 0.
|
|
4018
|
+
"windows-sys 0.52.0",
|
|
3841
4019
|
]
|
|
3842
4020
|
|
|
3843
4021
|
[[package]]
|
|
@@ -3846,22 +4024,13 @@ version = "0.4.0"
|
|
|
3846
4024
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
4025
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3848
4026
|
|
|
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
4027
|
[[package]]
|
|
3859
4028
|
name = "windows-sys"
|
|
3860
4029
|
version = "0.52.0"
|
|
3861
4030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
4031
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3863
4032
|
dependencies = [
|
|
3864
|
-
"windows-targets
|
|
4033
|
+
"windows-targets",
|
|
3865
4034
|
]
|
|
3866
4035
|
|
|
3867
4036
|
[[package]]
|
|
@@ -3870,22 +4039,7 @@ version = "0.59.0"
|
|
|
3870
4039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
4040
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3872
4041
|
dependencies = [
|
|
3873
|
-
"windows-targets
|
|
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",
|
|
4042
|
+
"windows-targets",
|
|
3889
4043
|
]
|
|
3890
4044
|
|
|
3891
4045
|
[[package]]
|
|
@@ -3894,46 +4048,28 @@ version = "0.52.6"
|
|
|
3894
4048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
4049
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3896
4050
|
dependencies = [
|
|
3897
|
-
"windows_aarch64_gnullvm
|
|
3898
|
-
"windows_aarch64_msvc
|
|
3899
|
-
"windows_i686_gnu
|
|
4051
|
+
"windows_aarch64_gnullvm",
|
|
4052
|
+
"windows_aarch64_msvc",
|
|
4053
|
+
"windows_i686_gnu",
|
|
3900
4054
|
"windows_i686_gnullvm",
|
|
3901
|
-
"windows_i686_msvc
|
|
3902
|
-
"windows_x86_64_gnu
|
|
3903
|
-
"windows_x86_64_gnullvm
|
|
3904
|
-
"windows_x86_64_msvc
|
|
4055
|
+
"windows_i686_msvc",
|
|
4056
|
+
"windows_x86_64_gnu",
|
|
4057
|
+
"windows_x86_64_gnullvm",
|
|
4058
|
+
"windows_x86_64_msvc",
|
|
3905
4059
|
]
|
|
3906
4060
|
|
|
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
4061
|
[[package]]
|
|
3914
4062
|
name = "windows_aarch64_gnullvm"
|
|
3915
4063
|
version = "0.52.6"
|
|
3916
4064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
4065
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3918
4066
|
|
|
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
4067
|
[[package]]
|
|
3926
4068
|
name = "windows_aarch64_msvc"
|
|
3927
4069
|
version = "0.52.6"
|
|
3928
4070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3929
4071
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3930
4072
|
|
|
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
4073
|
[[package]]
|
|
3938
4074
|
name = "windows_i686_gnu"
|
|
3939
4075
|
version = "0.52.6"
|
|
@@ -3946,36 +4082,18 @@ version = "0.52.6"
|
|
|
3946
4082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
4083
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3948
4084
|
|
|
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
4085
|
[[package]]
|
|
3956
4086
|
name = "windows_i686_msvc"
|
|
3957
4087
|
version = "0.52.6"
|
|
3958
4088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3959
4089
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3960
4090
|
|
|
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
4091
|
[[package]]
|
|
3968
4092
|
name = "windows_x86_64_gnu"
|
|
3969
4093
|
version = "0.52.6"
|
|
3970
4094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3971
4095
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3972
4096
|
|
|
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
4097
|
[[package]]
|
|
3980
4098
|
name = "windows_x86_64_gnullvm"
|
|
3981
4099
|
version = "0.52.6"
|
|
@@ -3984,15 +4102,18 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
3984
4102
|
|
|
3985
4103
|
[[package]]
|
|
3986
4104
|
name = "windows_x86_64_msvc"
|
|
3987
|
-
version = "0.
|
|
4105
|
+
version = "0.52.6"
|
|
3988
4106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "
|
|
4107
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3990
4108
|
|
|
3991
4109
|
[[package]]
|
|
3992
|
-
name = "
|
|
3993
|
-
version = "0.
|
|
4110
|
+
name = "wit-bindgen-rt"
|
|
4111
|
+
version = "0.39.0"
|
|
3994
4112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3995
|
-
checksum = "
|
|
4113
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4114
|
+
dependencies = [
|
|
4115
|
+
"bitflags 2.9.0",
|
|
4116
|
+
]
|
|
3996
4117
|
|
|
3997
4118
|
[[package]]
|
|
3998
4119
|
name = "write16"
|
|
@@ -4008,13 +4129,12 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
|
4008
4129
|
|
|
4009
4130
|
[[package]]
|
|
4010
4131
|
name = "xattr"
|
|
4011
|
-
version = "1.
|
|
4132
|
+
version = "1.5.0"
|
|
4012
4133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4013
|
-
checksum = "
|
|
4134
|
+
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
|
4014
4135
|
dependencies = [
|
|
4015
4136
|
"libc",
|
|
4016
|
-
"
|
|
4017
|
-
"rustix",
|
|
4137
|
+
"rustix 1.0.3",
|
|
4018
4138
|
]
|
|
4019
4139
|
|
|
4020
4140
|
[[package]]
|
|
@@ -4025,9 +4145,9 @@ checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
|
|
|
4025
4145
|
|
|
4026
4146
|
[[package]]
|
|
4027
4147
|
name = "yoke"
|
|
4028
|
-
version = "0.7.
|
|
4148
|
+
version = "0.7.5"
|
|
4029
4149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4150
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4031
4151
|
dependencies = [
|
|
4032
4152
|
"serde",
|
|
4033
4153
|
"stable_deref_trait",
|
|
@@ -4037,13 +4157,13 @@ dependencies = [
|
|
|
4037
4157
|
|
|
4038
4158
|
[[package]]
|
|
4039
4159
|
name = "yoke-derive"
|
|
4040
|
-
version = "0.7.
|
|
4160
|
+
version = "0.7.5"
|
|
4041
4161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
-
checksum = "
|
|
4162
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4043
4163
|
dependencies = [
|
|
4044
4164
|
"proc-macro2",
|
|
4045
4165
|
"quote",
|
|
4046
|
-
"syn 2.0.
|
|
4166
|
+
"syn 2.0.100",
|
|
4047
4167
|
"synstructure",
|
|
4048
4168
|
]
|
|
4049
4169
|
|
|
@@ -4053,8 +4173,16 @@ version = "0.7.35"
|
|
|
4053
4173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4054
4174
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4055
4175
|
dependencies = [
|
|
4056
|
-
"
|
|
4057
|
-
|
|
4176
|
+
"zerocopy-derive 0.7.35",
|
|
4177
|
+
]
|
|
4178
|
+
|
|
4179
|
+
[[package]]
|
|
4180
|
+
name = "zerocopy"
|
|
4181
|
+
version = "0.8.24"
|
|
4182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4183
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
4184
|
+
dependencies = [
|
|
4185
|
+
"zerocopy-derive 0.8.24",
|
|
4058
4186
|
]
|
|
4059
4187
|
|
|
4060
4188
|
[[package]]
|
|
@@ -4065,27 +4193,38 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4065
4193
|
dependencies = [
|
|
4066
4194
|
"proc-macro2",
|
|
4067
4195
|
"quote",
|
|
4068
|
-
"syn 2.0.
|
|
4196
|
+
"syn 2.0.100",
|
|
4197
|
+
]
|
|
4198
|
+
|
|
4199
|
+
[[package]]
|
|
4200
|
+
name = "zerocopy-derive"
|
|
4201
|
+
version = "0.8.24"
|
|
4202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4203
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
4204
|
+
dependencies = [
|
|
4205
|
+
"proc-macro2",
|
|
4206
|
+
"quote",
|
|
4207
|
+
"syn 2.0.100",
|
|
4069
4208
|
]
|
|
4070
4209
|
|
|
4071
4210
|
[[package]]
|
|
4072
4211
|
name = "zerofrom"
|
|
4073
|
-
version = "0.1.
|
|
4212
|
+
version = "0.1.6"
|
|
4074
4213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
-
checksum = "
|
|
4214
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4076
4215
|
dependencies = [
|
|
4077
4216
|
"zerofrom-derive",
|
|
4078
4217
|
]
|
|
4079
4218
|
|
|
4080
4219
|
[[package]]
|
|
4081
4220
|
name = "zerofrom-derive"
|
|
4082
|
-
version = "0.1.
|
|
4221
|
+
version = "0.1.6"
|
|
4083
4222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4084
|
-
checksum = "
|
|
4223
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4085
4224
|
dependencies = [
|
|
4086
4225
|
"proc-macro2",
|
|
4087
4226
|
"quote",
|
|
4088
|
-
"syn 2.0.
|
|
4227
|
+
"syn 2.0.100",
|
|
4089
4228
|
"synstructure",
|
|
4090
4229
|
]
|
|
4091
4230
|
|
|
@@ -4114,32 +4253,32 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
|
4114
4253
|
dependencies = [
|
|
4115
4254
|
"proc-macro2",
|
|
4116
4255
|
"quote",
|
|
4117
|
-
"syn 2.0.
|
|
4256
|
+
"syn 2.0.100",
|
|
4118
4257
|
]
|
|
4119
4258
|
|
|
4120
4259
|
[[package]]
|
|
4121
4260
|
name = "zstd"
|
|
4122
|
-
version = "0.13.
|
|
4261
|
+
version = "0.13.3"
|
|
4123
4262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4263
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4125
4264
|
dependencies = [
|
|
4126
4265
|
"zstd-safe",
|
|
4127
4266
|
]
|
|
4128
4267
|
|
|
4129
4268
|
[[package]]
|
|
4130
4269
|
name = "zstd-safe"
|
|
4131
|
-
version = "7.2.
|
|
4270
|
+
version = "7.2.4"
|
|
4132
4271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4133
|
-
checksum = "
|
|
4272
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4134
4273
|
dependencies = [
|
|
4135
4274
|
"zstd-sys",
|
|
4136
4275
|
]
|
|
4137
4276
|
|
|
4138
4277
|
[[package]]
|
|
4139
4278
|
name = "zstd-sys"
|
|
4140
|
-
version = "2.0.
|
|
4279
|
+
version = "2.0.15+zstd.1.5.7"
|
|
4141
4280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4142
|
-
checksum = "
|
|
4281
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
4143
4282
|
dependencies = [
|
|
4144
4283
|
"cc",
|
|
4145
4284
|
"pkg-config",
|