theopendictionary 1.0.0__tar.gz → 1.4.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.4.0}/Cargo.lock +762 -606
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/Cargo.toml +2 -1
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/PKG-INFO +1 -1
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/CHANGELOG.md +49 -60
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/Cargo.toml +33 -12
- theopendictionary-1.4.0/lib/src/compress.rs +60 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/config/aliases.rs +1 -0
- theopendictionary-1.0.0/lib/src/core/constants.rs → theopendictionary-1.4.0/lib/src/core/io/consts.rs +1 -1
- theopendictionary-1.4.0/lib/src/core/io/mod.rs +6 -0
- {theopendictionary-1.0.0/lib/src/core → theopendictionary-1.4.0/lib/src/core/io}/read.rs +21 -12
- {theopendictionary-1.0.0/lib/src/core → theopendictionary-1.4.0/lib/src/core/io}/write.rs +63 -7
- theopendictionary-1.4.0/lib/src/core/lookup/mod.rs +145 -0
- theopendictionary-1.4.0/lib/src/core/lookup/options.rs +43 -0
- theopendictionary-1.4.0/lib/src/core/lookup/tokenize.rs +143 -0
- theopendictionary-1.4.0/lib/src/core/mod.rs +17 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/preview.rs +10 -12
- theopendictionary-1.4.0/lib/src/core/resolve.rs +18 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/error.rs +5 -3
- theopendictionary-1.4.0/lib/src/format/html/html.rs +39 -0
- theopendictionary-1.4.0/lib/src/format/html/mod.rs +3 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/definition.rs +3 -3
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/entry.rs +13 -3
- theopendictionary-1.4.0/lib/src/format/json/entry_ref.rs +29 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/etymology.rs +2 -2
- theopendictionary-1.4.0/lib/src/format/json/form.rs +30 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/group.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/json.rs +27 -10
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/mod.rs +6 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/note.rs +4 -4
- theopendictionary-1.4.0/lib/src/format/json/token.rs +70 -0
- theopendictionary-1.4.0/lib/src/format/md/definition.rs +32 -0
- theopendictionary-1.4.0/lib/src/format/md/entry.rs +21 -0
- theopendictionary-1.4.0/lib/src/format/md/etymology.rs +19 -0
- theopendictionary-1.4.0/lib/src/format/md/example.rs +20 -0
- theopendictionary-1.4.0/lib/src/format/md/group.rs +20 -0
- theopendictionary-1.4.0/lib/src/format/md/md.rs +41 -0
- {theopendictionary-1.0.0/python/src/types → theopendictionary-1.4.0/lib/src/format/md}/mod.rs +3 -4
- theopendictionary-1.4.0/lib/src/format/md/note.rs +17 -0
- theopendictionary-1.4.0/lib/src/format/md/pprint.rs +224 -0
- theopendictionary-1.4.0/lib/src/format/md/sense.rs +16 -0
- theopendictionary-1.4.0/lib/src/format/md/utils.rs +34 -0
- theopendictionary-1.4.0/lib/src/format/mod.rs +9 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/definitions.rs +4 -6
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/etymologies.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/examples.rs +4 -5
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/groups.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/notes.rs +2 -2
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/sql.rs +1 -1
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/lib.rs +5 -9
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/md.rs +2 -7
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/definition.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/entry.rs +19 -1
- theopendictionary-1.4.0/lib/src/models/entry_ref.rs +51 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/etymology.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/example.rs +2 -2
- theopendictionary-1.4.0/lib/src/models/form.rs +60 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/group.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/mod.rs +4 -2
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/note.rs +2 -2
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/mod.rs +1 -5
- theopendictionary-1.4.0/python/CHANGELOG.md +53 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/Cargo.toml +9 -3
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/dictionary.rs +56 -46
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/lib.rs +2 -0
- theopendictionary-1.4.0/python/src/types/definition.rs +34 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/types/entry.rs +24 -10
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/types/etymology.rs +14 -12
- theopendictionary-1.4.0/python/src/types/example.rs +18 -0
- theopendictionary-1.4.0/python/src/types/form.rs +42 -0
- theopendictionary-1.4.0/python/src/types/form_kind.rs +52 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/types/group.rs +12 -9
- theopendictionary-1.4.0/python/src/types/lookup.rs +56 -0
- theopendictionary-1.4.0/python/src/types/mod.rs +17 -0
- theopendictionary-1.4.0/python/src/types/note.rs +30 -0
- theopendictionary-1.4.0/python/src/types/sense.rs +30 -0
- theopendictionary-1.4.0/python/src/types/token.rs +82 -0
- theopendictionary-1.4.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
- theopendictionary-1.4.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
- theopendictionary-1.4.0/python/tests/test_forms.py +66 -0
- theopendictionary-1.4.0/python/tests/test_lemma.py +74 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/tests/test_lookup.py +29 -9
- theopendictionary-1.4.0/python/tests/test_tokenize.py +121 -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/CHANGELOG.md +0 -23
- 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.4.0}/lib/report.json +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/config/config.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/config/mod.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/lexicon.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/merge.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/semver.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/ext.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/dictionary.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/sense.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/utils.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/dictionaries.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/entries.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/mod.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/senses.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/utils.rs +0 -0
- {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/xml.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/fs.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/dictionary.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/id.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/pos.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/sense.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/serializable.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/charabia.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/constants.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/index.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/schema.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/search.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/tasks.toml +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/pyproject.toml +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/.gitignore +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/requirements.txt +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/setup.cfg +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/utils.rs +0 -0
- {theopendictionary-1.0.0 → theopendictionary-1.4.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.1",
|
|
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.98"
|
|
304
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
-
checksum = "
|
|
311
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
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.3"
|
|
410
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "
|
|
417
|
+
checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
|
|
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.19"
|
|
476
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
-
checksum = "
|
|
483
|
+
checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
|
|
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.36"
|
|
556
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
-
checksum = "
|
|
562
|
+
checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
|
|
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.36"
|
|
566
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
572
|
+
checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
|
|
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.15"
|
|
713
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
-
checksum = "
|
|
704
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
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,28 +761,28 @@ 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]]
|
|
792
782
|
name = "darling"
|
|
793
|
-
version = "0.20.
|
|
783
|
+
version = "0.20.11"
|
|
794
784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
785
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
796
786
|
dependencies = [
|
|
797
787
|
"darling_core",
|
|
798
788
|
"darling_macro",
|
|
@@ -800,34 +790,40 @@ dependencies = [
|
|
|
800
790
|
|
|
801
791
|
[[package]]
|
|
802
792
|
name = "darling_core"
|
|
803
|
-
version = "0.20.
|
|
793
|
+
version = "0.20.11"
|
|
804
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
-
checksum = "
|
|
795
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
806
796
|
dependencies = [
|
|
807
797
|
"fnv",
|
|
808
798
|
"ident_case",
|
|
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]]
|
|
816
806
|
name = "darling_macro"
|
|
817
|
-
version = "0.20.
|
|
807
|
+
version = "0.20.11"
|
|
818
808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
-
checksum = "
|
|
809
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
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,31 +1035,31 @@ dependencies = [
|
|
|
1031
1035
|
|
|
1032
1036
|
[[package]]
|
|
1033
1037
|
name = "env_logger"
|
|
1034
|
-
version = "0.11.
|
|
1038
|
+
version = "0.11.8"
|
|
1035
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1040
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
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.11"
|
|
1054
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1059
|
+
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
1056
1060
|
dependencies = [
|
|
1057
1061
|
"libc",
|
|
1058
|
-
"windows-sys 0.
|
|
1062
|
+
"windows-sys 0.59.0",
|
|
1059
1063
|
]
|
|
1060
1064
|
|
|
1061
1065
|
[[package]]
|
|
@@ -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.
|
|
1091
|
+
version = "1.1.1"
|
|
1088
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
-
checksum = "
|
|
1093
|
+
checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
|
|
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.6.0"
|
|
1235
1251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
-
checksum = "
|
|
1252
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
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"
|
|
@@ -1324,9 +1340,9 @@ dependencies = [
|
|
|
1324
1340
|
|
|
1325
1341
|
[[package]]
|
|
1326
1342
|
name = "humantime"
|
|
1327
|
-
version = "2.
|
|
1343
|
+
version = "2.2.0"
|
|
1328
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
-
checksum = "
|
|
1345
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
1330
1346
|
|
|
1331
1347
|
[[package]]
|
|
1332
1348
|
name = "icu_collections"
|
|
@@ -1369,9 +1385,9 @@ dependencies = [
|
|
|
1369
1385
|
|
|
1370
1386
|
[[package]]
|
|
1371
1387
|
name = "icu_locid_transform_data"
|
|
1372
|
-
version = "1.5.
|
|
1388
|
+
version = "1.5.1"
|
|
1373
1389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
-
checksum = "
|
|
1390
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1375
1391
|
|
|
1376
1392
|
[[package]]
|
|
1377
1393
|
name = "icu_normalizer"
|
|
@@ -1393,9 +1409,9 @@ dependencies = [
|
|
|
1393
1409
|
|
|
1394
1410
|
[[package]]
|
|
1395
1411
|
name = "icu_normalizer_data"
|
|
1396
|
-
version = "1.5.
|
|
1412
|
+
version = "1.5.1"
|
|
1397
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
-
checksum = "
|
|
1414
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
1399
1415
|
|
|
1400
1416
|
[[package]]
|
|
1401
1417
|
name = "icu_properties"
|
|
@@ -1414,9 +1430,9 @@ dependencies = [
|
|
|
1414
1430
|
|
|
1415
1431
|
[[package]]
|
|
1416
1432
|
name = "icu_properties_data"
|
|
1417
|
-
version = "1.5.
|
|
1433
|
+
version = "1.5.1"
|
|
1418
1434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
-
checksum = "
|
|
1435
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
1420
1436
|
|
|
1421
1437
|
[[package]]
|
|
1422
1438
|
name = "icu_provider"
|
|
@@ -1443,7 +1459,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
|
1443
1459
|
dependencies = [
|
|
1444
1460
|
"proc-macro2",
|
|
1445
1461
|
"quote",
|
|
1446
|
-
"syn 2.0.
|
|
1462
|
+
"syn 2.0.100",
|
|
1447
1463
|
]
|
|
1448
1464
|
|
|
1449
1465
|
[[package]]
|
|
@@ -1475,25 +1491,48 @@ dependencies = [
|
|
|
1475
1491
|
|
|
1476
1492
|
[[package]]
|
|
1477
1493
|
name = "impl-more"
|
|
1478
|
-
version = "0.1.
|
|
1494
|
+
version = "0.1.9"
|
|
1479
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "
|
|
1496
|
+
checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "include-flate"
|
|
1500
|
+
version = "0.3.0"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"include-flate-codegen",
|
|
1505
|
+
"lazy_static",
|
|
1506
|
+
"libflate",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "include-flate-codegen"
|
|
1511
|
+
version = "0.2.0"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"libflate",
|
|
1516
|
+
"proc-macro2",
|
|
1517
|
+
"quote",
|
|
1518
|
+
"syn 2.0.100",
|
|
1519
|
+
]
|
|
1481
1520
|
|
|
1482
1521
|
[[package]]
|
|
1483
1522
|
name = "indexmap"
|
|
1484
|
-
version = "2.
|
|
1523
|
+
version = "2.9.0"
|
|
1485
1524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
-
checksum = "
|
|
1525
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
|
1487
1526
|
dependencies = [
|
|
1488
1527
|
"equivalent",
|
|
1489
|
-
"hashbrown 0.15.
|
|
1528
|
+
"hashbrown 0.15.2",
|
|
1490
1529
|
]
|
|
1491
1530
|
|
|
1492
1531
|
[[package]]
|
|
1493
1532
|
name = "indicatif"
|
|
1494
|
-
version = "0.17.
|
|
1533
|
+
version = "0.17.11"
|
|
1495
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
-
checksum = "
|
|
1535
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
1497
1536
|
dependencies = [
|
|
1498
1537
|
"console",
|
|
1499
1538
|
"number_prefix",
|
|
@@ -1504,30 +1543,31 @@ dependencies = [
|
|
|
1504
1543
|
|
|
1505
1544
|
[[package]]
|
|
1506
1545
|
name = "indoc"
|
|
1507
|
-
version = "2.0.
|
|
1546
|
+
version = "2.0.6"
|
|
1508
1547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
-
checksum = "
|
|
1548
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1510
1549
|
|
|
1511
1550
|
[[package]]
|
|
1512
1551
|
name = "inherent"
|
|
1513
|
-
version = "1.0.
|
|
1552
|
+
version = "1.0.12"
|
|
1514
1553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
-
checksum = "
|
|
1554
|
+
checksum = "6c38228f24186d9cc68c729accb4d413be9eaed6ad07ff79e0270d9e56f3de13"
|
|
1516
1555
|
dependencies = [
|
|
1517
1556
|
"proc-macro2",
|
|
1518
1557
|
"quote",
|
|
1519
|
-
"syn 2.0.
|
|
1558
|
+
"syn 2.0.100",
|
|
1520
1559
|
]
|
|
1521
1560
|
|
|
1522
1561
|
[[package]]
|
|
1523
1562
|
name = "insta"
|
|
1524
|
-
version = "1.
|
|
1563
|
+
version = "1.42.2"
|
|
1525
1564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
-
checksum = "
|
|
1565
|
+
checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
|
|
1527
1566
|
dependencies = [
|
|
1528
1567
|
"console",
|
|
1529
|
-
"lazy_static",
|
|
1530
1568
|
"linked-hash-map",
|
|
1569
|
+
"once_cell",
|
|
1570
|
+
"pin-project",
|
|
1531
1571
|
"similar",
|
|
1532
1572
|
]
|
|
1533
1573
|
|
|
@@ -1556,13 +1596,13 @@ dependencies = [
|
|
|
1556
1596
|
|
|
1557
1597
|
[[package]]
|
|
1558
1598
|
name = "is-terminal"
|
|
1559
|
-
version = "0.4.
|
|
1599
|
+
version = "0.4.16"
|
|
1560
1600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
-
checksum = "
|
|
1601
|
+
checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
|
1562
1602
|
dependencies = [
|
|
1563
|
-
"hermit-abi 0.
|
|
1603
|
+
"hermit-abi 0.5.0",
|
|
1564
1604
|
"libc",
|
|
1565
|
-
"windows-sys 0.
|
|
1605
|
+
"windows-sys 0.59.0",
|
|
1566
1606
|
]
|
|
1567
1607
|
|
|
1568
1608
|
[[package]]
|
|
@@ -1591,40 +1631,75 @@ dependencies = [
|
|
|
1591
1631
|
|
|
1592
1632
|
[[package]]
|
|
1593
1633
|
name = "itoa"
|
|
1594
|
-
version = "1.0.
|
|
1634
|
+
version = "1.0.15"
|
|
1595
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
-
checksum = "
|
|
1636
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "jieba-macros"
|
|
1640
|
+
version = "0.7.1"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "7c676b32a471d3cfae8dac2ad2f8334cd52e53377733cca8c1fb0a5062fec192"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"phf_codegen",
|
|
1645
|
+
]
|
|
1597
1646
|
|
|
1598
1647
|
[[package]]
|
|
1599
1648
|
name = "jieba-rs"
|
|
1600
|
-
version = "0.7.
|
|
1649
|
+
version = "0.7.2"
|
|
1601
1650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1602
|
-
checksum = "
|
|
1651
|
+
checksum = "6d1bcad6332969e4d48ee568d430e14ee6dea70740c2549d005d87677ebefb0c"
|
|
1603
1652
|
dependencies = [
|
|
1604
1653
|
"cedarwood",
|
|
1605
|
-
"derive_builder",
|
|
1606
1654
|
"fxhash",
|
|
1655
|
+
"include-flate",
|
|
1656
|
+
"jieba-macros",
|
|
1607
1657
|
"lazy_static",
|
|
1608
1658
|
"phf",
|
|
1609
|
-
"phf_codegen",
|
|
1610
1659
|
"regex",
|
|
1611
1660
|
]
|
|
1612
1661
|
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "jiff"
|
|
1664
|
+
version = "0.2.8"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "e5ad87c89110f55e4cd4dc2893a9790820206729eaf221555f742d540b0724a0"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"jiff-static",
|
|
1669
|
+
"log",
|
|
1670
|
+
"portable-atomic",
|
|
1671
|
+
"portable-atomic-util",
|
|
1672
|
+
"serde",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "jiff-static"
|
|
1677
|
+
version = "0.2.8"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "d076d5b64a7e2fe6f0743f02c43ca4a6725c0f904203bfe276a5b3e793103605"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"proc-macro2",
|
|
1682
|
+
"quote",
|
|
1683
|
+
"syn 2.0.100",
|
|
1684
|
+
]
|
|
1685
|
+
|
|
1613
1686
|
[[package]]
|
|
1614
1687
|
name = "jobserver"
|
|
1615
|
-
version = "0.1.
|
|
1688
|
+
version = "0.1.33"
|
|
1616
1689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
-
checksum = "
|
|
1690
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1618
1691
|
dependencies = [
|
|
1692
|
+
"getrandom 0.3.2",
|
|
1619
1693
|
"libc",
|
|
1620
1694
|
]
|
|
1621
1695
|
|
|
1622
1696
|
[[package]]
|
|
1623
1697
|
name = "js-sys"
|
|
1624
|
-
version = "0.3.
|
|
1698
|
+
version = "0.3.77"
|
|
1625
1699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
-
checksum = "
|
|
1700
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1627
1701
|
dependencies = [
|
|
1702
|
+
"once_cell",
|
|
1628
1703
|
"wasm-bindgen",
|
|
1629
1704
|
]
|
|
1630
1705
|
|
|
@@ -1657,18 +1732,42 @@ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
|
|
|
1657
1732
|
|
|
1658
1733
|
[[package]]
|
|
1659
1734
|
name = "libc"
|
|
1660
|
-
version = "0.2.
|
|
1735
|
+
version = "0.2.172"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "libflate"
|
|
1741
|
+
version = "2.1.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"adler32",
|
|
1746
|
+
"core2",
|
|
1747
|
+
"crc32fast",
|
|
1748
|
+
"dary_heap",
|
|
1749
|
+
"libflate_lz77",
|
|
1750
|
+
]
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "libflate_lz77"
|
|
1754
|
+
version = "2.1.0"
|
|
1661
1755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
-
checksum = "
|
|
1756
|
+
checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
|
|
1757
|
+
dependencies = [
|
|
1758
|
+
"core2",
|
|
1759
|
+
"hashbrown 0.14.5",
|
|
1760
|
+
"rle-decode-fast",
|
|
1761
|
+
]
|
|
1663
1762
|
|
|
1664
1763
|
[[package]]
|
|
1665
1764
|
name = "libloading"
|
|
1666
|
-
version = "0.8.
|
|
1765
|
+
version = "0.8.6"
|
|
1667
1766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
-
checksum = "
|
|
1767
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
1669
1768
|
dependencies = [
|
|
1670
1769
|
"cfg-if",
|
|
1671
|
-
"windows-targets
|
|
1770
|
+
"windows-targets",
|
|
1672
1771
|
]
|
|
1673
1772
|
|
|
1674
1773
|
[[package]]
|
|
@@ -1683,16 +1782,16 @@ version = "0.1.3"
|
|
|
1683
1782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
1783
|
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1685
1784
|
dependencies = [
|
|
1686
|
-
"bitflags 2.
|
|
1785
|
+
"bitflags 2.9.0",
|
|
1687
1786
|
"libc",
|
|
1688
1787
|
"redox_syscall",
|
|
1689
1788
|
]
|
|
1690
1789
|
|
|
1691
1790
|
[[package]]
|
|
1692
1791
|
name = "lindera"
|
|
1693
|
-
version = "0.32.
|
|
1792
|
+
version = "0.32.3"
|
|
1694
1793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
-
checksum = "
|
|
1794
|
+
checksum = "832c220475557e3b44a46cad1862b57f010f0c6e93d771d0e628e08689c068b1"
|
|
1696
1795
|
dependencies = [
|
|
1697
1796
|
"lindera-analyzer",
|
|
1698
1797
|
"lindera-core",
|
|
@@ -1703,9 +1802,9 @@ dependencies = [
|
|
|
1703
1802
|
|
|
1704
1803
|
[[package]]
|
|
1705
1804
|
name = "lindera-analyzer"
|
|
1706
|
-
version = "0.32.
|
|
1805
|
+
version = "0.32.3"
|
|
1707
1806
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
-
checksum = "
|
|
1807
|
+
checksum = "a8e26651714abf5167e6b6a80f5cdaa0cad41c5fcb84d8ba96bebafcb9029339"
|
|
1709
1808
|
dependencies = [
|
|
1710
1809
|
"anyhow",
|
|
1711
1810
|
"bincode",
|
|
@@ -1724,7 +1823,7 @@ dependencies = [
|
|
|
1724
1823
|
"regex",
|
|
1725
1824
|
"serde",
|
|
1726
1825
|
"serde_json",
|
|
1727
|
-
"thiserror 1.0.
|
|
1826
|
+
"thiserror 1.0.69",
|
|
1728
1827
|
"unicode-blocks",
|
|
1729
1828
|
"unicode-normalization",
|
|
1730
1829
|
"unicode-segmentation",
|
|
@@ -1733,9 +1832,9 @@ dependencies = [
|
|
|
1733
1832
|
|
|
1734
1833
|
[[package]]
|
|
1735
1834
|
name = "lindera-assets"
|
|
1736
|
-
version = "0.32.
|
|
1835
|
+
version = "0.32.3"
|
|
1737
1836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
-
checksum = "
|
|
1837
|
+
checksum = "ebb01f1ca53c1e642234c6c7fdb9ac664ad0c1ab9502f33e4200201bac7e6ce7"
|
|
1739
1838
|
dependencies = [
|
|
1740
1839
|
"encoding",
|
|
1741
1840
|
"flate2",
|
|
@@ -1746,9 +1845,9 @@ dependencies = [
|
|
|
1746
1845
|
|
|
1747
1846
|
[[package]]
|
|
1748
1847
|
name = "lindera-cc-cedict"
|
|
1749
|
-
version = "0.32.
|
|
1848
|
+
version = "0.32.3"
|
|
1750
1849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
1850
|
+
checksum = "5f7618d9aa947fdd7c38eae2b79f0fd237ecb5067608f1363610ba20d20ab5a8"
|
|
1752
1851
|
dependencies = [
|
|
1753
1852
|
"bincode",
|
|
1754
1853
|
"byteorder",
|
|
@@ -1760,9 +1859,9 @@ dependencies = [
|
|
|
1760
1859
|
|
|
1761
1860
|
[[package]]
|
|
1762
1861
|
name = "lindera-cc-cedict-builder"
|
|
1763
|
-
version = "0.32.
|
|
1862
|
+
version = "0.32.3"
|
|
1764
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1864
|
+
checksum = "efdbcb809d81428935d601a78c94bfb39500749213f7320705f427a7a1d31aec"
|
|
1766
1865
|
dependencies = [
|
|
1767
1866
|
"anyhow",
|
|
1768
1867
|
"lindera-core",
|
|
@@ -1772,9 +1871,9 @@ dependencies = [
|
|
|
1772
1871
|
|
|
1773
1872
|
[[package]]
|
|
1774
1873
|
name = "lindera-compress"
|
|
1775
|
-
version = "0.32.
|
|
1874
|
+
version = "0.32.3"
|
|
1776
1875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
-
checksum = "
|
|
1876
|
+
checksum = "eac178afa2456dac469d3b1a2d7fbaf3e1ea796a1f52321e8ac29545a53c239c"
|
|
1778
1877
|
dependencies = [
|
|
1779
1878
|
"anyhow",
|
|
1780
1879
|
"flate2",
|
|
@@ -1783,9 +1882,9 @@ dependencies = [
|
|
|
1783
1882
|
|
|
1784
1883
|
[[package]]
|
|
1785
1884
|
name = "lindera-core"
|
|
1786
|
-
version = "0.32.
|
|
1885
|
+
version = "0.32.3"
|
|
1787
1886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
-
checksum = "
|
|
1887
|
+
checksum = "649777465f48147ce593ab6db347e235e3af8f693a23f4437be94a1cdbdf5fdf"
|
|
1789
1888
|
dependencies = [
|
|
1790
1889
|
"anyhow",
|
|
1791
1890
|
"bincode",
|
|
@@ -1794,15 +1893,15 @@ dependencies = [
|
|
|
1794
1893
|
"log",
|
|
1795
1894
|
"once_cell",
|
|
1796
1895
|
"serde",
|
|
1797
|
-
"thiserror 1.0.
|
|
1896
|
+
"thiserror 1.0.69",
|
|
1798
1897
|
"yada",
|
|
1799
1898
|
]
|
|
1800
1899
|
|
|
1801
1900
|
[[package]]
|
|
1802
1901
|
name = "lindera-decompress"
|
|
1803
|
-
version = "0.32.
|
|
1902
|
+
version = "0.32.3"
|
|
1804
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1805
|
-
checksum = "
|
|
1904
|
+
checksum = "9e3faaceb85e43ac250021866c6db3cdc9997b44b3d3ea498594d04edc91fc45"
|
|
1806
1905
|
dependencies = [
|
|
1807
1906
|
"anyhow",
|
|
1808
1907
|
"flate2",
|
|
@@ -1811,9 +1910,9 @@ dependencies = [
|
|
|
1811
1910
|
|
|
1812
1911
|
[[package]]
|
|
1813
1912
|
name = "lindera-dictionary"
|
|
1814
|
-
version = "0.32.
|
|
1913
|
+
version = "0.32.3"
|
|
1815
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
1915
|
+
checksum = "31e15b2d2d8a4ad45f2e373a084931cf3dfbde15f124044e2436bb920af3366c"
|
|
1817
1916
|
dependencies = [
|
|
1818
1917
|
"anyhow",
|
|
1819
1918
|
"bincode",
|
|
@@ -1836,9 +1935,9 @@ dependencies = [
|
|
|
1836
1935
|
|
|
1837
1936
|
[[package]]
|
|
1838
1937
|
name = "lindera-dictionary-builder"
|
|
1839
|
-
version = "0.32.
|
|
1938
|
+
version = "0.32.3"
|
|
1840
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
-
checksum = "
|
|
1940
|
+
checksum = "59802949110545b59b663917ed3fd55dc3b3a8cde6bd20137d7fe24372cfb9aa"
|
|
1842
1941
|
dependencies = [
|
|
1843
1942
|
"anyhow",
|
|
1844
1943
|
"bincode",
|
|
@@ -1858,9 +1957,9 @@ dependencies = [
|
|
|
1858
1957
|
|
|
1859
1958
|
[[package]]
|
|
1860
1959
|
name = "lindera-filter"
|
|
1861
|
-
version = "0.32.
|
|
1960
|
+
version = "0.32.3"
|
|
1862
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
-
checksum = "
|
|
1962
|
+
checksum = "1320f118c3fc9e897f4ebfc16864e5ef8c0b06ba769c0a50e53f193f9d682bf8"
|
|
1864
1963
|
dependencies = [
|
|
1865
1964
|
"anyhow",
|
|
1866
1965
|
"csv",
|
|
@@ -1883,9 +1982,9 @@ dependencies = [
|
|
|
1883
1982
|
|
|
1884
1983
|
[[package]]
|
|
1885
1984
|
name = "lindera-ipadic"
|
|
1886
|
-
version = "0.32.
|
|
1985
|
+
version = "0.32.3"
|
|
1887
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
-
checksum = "
|
|
1987
|
+
checksum = "5b4731bf3730f1f38266d7ee9bca7d460cd336645c9dfd4e6a1082e58ab1e993"
|
|
1889
1988
|
dependencies = [
|
|
1890
1989
|
"bincode",
|
|
1891
1990
|
"byteorder",
|
|
@@ -1897,9 +1996,9 @@ dependencies = [
|
|
|
1897
1996
|
|
|
1898
1997
|
[[package]]
|
|
1899
1998
|
name = "lindera-ipadic-builder"
|
|
1900
|
-
version = "0.32.
|
|
1999
|
+
version = "0.32.3"
|
|
1901
2000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "
|
|
2001
|
+
checksum = "309966c12e682f67205c3cd3c8dc55bbdcd1eb3b5c7c5cb41fb8acd18906d340"
|
|
1903
2002
|
dependencies = [
|
|
1904
2003
|
"anyhow",
|
|
1905
2004
|
"lindera-core",
|
|
@@ -1909,9 +2008,9 @@ dependencies = [
|
|
|
1909
2008
|
|
|
1910
2009
|
[[package]]
|
|
1911
2010
|
name = "lindera-ipadic-neologd"
|
|
1912
|
-
version = "0.32.
|
|
2011
|
+
version = "0.32.3"
|
|
1913
2012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
-
checksum = "
|
|
2013
|
+
checksum = "e90e919b4cfb9962d24ee1e1d50a7c163bbf356376495ad66d1996e20b9f9e44"
|
|
1915
2014
|
dependencies = [
|
|
1916
2015
|
"bincode",
|
|
1917
2016
|
"byteorder",
|
|
@@ -1923,9 +2022,9 @@ dependencies = [
|
|
|
1923
2022
|
|
|
1924
2023
|
[[package]]
|
|
1925
2024
|
name = "lindera-ipadic-neologd-builder"
|
|
1926
|
-
version = "0.32.
|
|
2025
|
+
version = "0.32.3"
|
|
1927
2026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
-
checksum = "
|
|
2027
|
+
checksum = "7e517df0d501f9f8bf3126da20fc8cb9a5e37921e0eec1824d7a62f096463e02"
|
|
1929
2028
|
dependencies = [
|
|
1930
2029
|
"anyhow",
|
|
1931
2030
|
"lindera-core",
|
|
@@ -1935,9 +2034,9 @@ dependencies = [
|
|
|
1935
2034
|
|
|
1936
2035
|
[[package]]
|
|
1937
2036
|
name = "lindera-ko-dic"
|
|
1938
|
-
version = "0.32.
|
|
2037
|
+
version = "0.32.3"
|
|
1939
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
-
checksum = "
|
|
2039
|
+
checksum = "e9c6da4e68bc8b452a54b96d65361ebdceb4b6f36ecf262425c0e1f77960ae82"
|
|
1941
2040
|
dependencies = [
|
|
1942
2041
|
"bincode",
|
|
1943
2042
|
"byteorder",
|
|
@@ -1950,9 +2049,9 @@ dependencies = [
|
|
|
1950
2049
|
|
|
1951
2050
|
[[package]]
|
|
1952
2051
|
name = "lindera-ko-dic-builder"
|
|
1953
|
-
version = "0.32.
|
|
2052
|
+
version = "0.32.3"
|
|
1954
2053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
-
checksum = "
|
|
2054
|
+
checksum = "afc95884cc8f6dfb176caf5991043a4acf94c359215bbd039ea765e00454f271"
|
|
1956
2055
|
dependencies = [
|
|
1957
2056
|
"anyhow",
|
|
1958
2057
|
"lindera-core",
|
|
@@ -1962,9 +2061,9 @@ dependencies = [
|
|
|
1962
2061
|
|
|
1963
2062
|
[[package]]
|
|
1964
2063
|
name = "lindera-tokenizer"
|
|
1965
|
-
version = "0.32.
|
|
2064
|
+
version = "0.32.3"
|
|
1966
2065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "
|
|
2066
|
+
checksum = "d122042e1232a55c3604692445952a134e523822e9b4b9ab32a53ff890037ad4"
|
|
1968
2067
|
dependencies = [
|
|
1969
2068
|
"bincode",
|
|
1970
2069
|
"lindera-core",
|
|
@@ -1976,9 +2075,9 @@ dependencies = [
|
|
|
1976
2075
|
|
|
1977
2076
|
[[package]]
|
|
1978
2077
|
name = "lindera-unidic"
|
|
1979
|
-
version = "0.32.
|
|
2078
|
+
version = "0.32.3"
|
|
1980
2079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
2080
|
+
checksum = "cbffae1fb2f2614abdcb50f99b138476dbac19862ffa57bfdc9c7b5d5b22a90c"
|
|
1982
2081
|
dependencies = [
|
|
1983
2082
|
"bincode",
|
|
1984
2083
|
"byteorder",
|
|
@@ -1991,9 +2090,9 @@ dependencies = [
|
|
|
1991
2090
|
|
|
1992
2091
|
[[package]]
|
|
1993
2092
|
name = "lindera-unidic-builder"
|
|
1994
|
-
version = "0.32.
|
|
2093
|
+
version = "0.32.3"
|
|
1995
2094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
-
checksum = "
|
|
2095
|
+
checksum = "fe50055327712ebd1bcc74b657cf78c728a78b9586e3f99d5dd0b6a0be221c5d"
|
|
1997
2096
|
dependencies = [
|
|
1998
2097
|
"anyhow",
|
|
1999
2098
|
"lindera-core",
|
|
@@ -2009,15 +2108,21 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
2009
2108
|
|
|
2010
2109
|
[[package]]
|
|
2011
2110
|
name = "linux-raw-sys"
|
|
2012
|
-
version = "0.4.
|
|
2111
|
+
version = "0.4.15"
|
|
2013
2112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
-
checksum = "
|
|
2113
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "linux-raw-sys"
|
|
2117
|
+
version = "0.9.4"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
2015
2120
|
|
|
2016
2121
|
[[package]]
|
|
2017
2122
|
name = "litemap"
|
|
2018
|
-
version = "0.7.
|
|
2123
|
+
version = "0.7.5"
|
|
2019
2124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
-
checksum = "
|
|
2125
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
2021
2126
|
|
|
2022
2127
|
[[package]]
|
|
2023
2128
|
name = "local-channel"
|
|
@@ -2048,9 +2153,9 @@ dependencies = [
|
|
|
2048
2153
|
|
|
2049
2154
|
[[package]]
|
|
2050
2155
|
name = "log"
|
|
2051
|
-
version = "0.4.
|
|
2156
|
+
version = "0.4.27"
|
|
2052
2157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2053
|
-
checksum = "
|
|
2158
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
2054
2159
|
|
|
2055
2160
|
[[package]]
|
|
2056
2161
|
name = "lru"
|
|
@@ -2058,7 +2163,16 @@ version = "0.12.5"
|
|
|
2058
2163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
2164
|
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
|
2060
2165
|
dependencies = [
|
|
2061
|
-
"hashbrown 0.15.
|
|
2166
|
+
"hashbrown 0.15.2",
|
|
2167
|
+
]
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "lru"
|
|
2171
|
+
version = "0.14.0"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"hashbrown 0.15.2",
|
|
2062
2176
|
]
|
|
2063
2177
|
|
|
2064
2178
|
[[package]]
|
|
@@ -2066,9 +2180,6 @@ name = "lz4_flex"
|
|
|
2066
2180
|
version = "0.11.3"
|
|
2067
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
2182
|
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
|
|
2069
|
-
dependencies = [
|
|
2070
|
-
"twox-hash",
|
|
2071
|
-
]
|
|
2072
2183
|
|
|
2073
2184
|
[[package]]
|
|
2074
2185
|
name = "map-macro"
|
|
@@ -2146,44 +2257,43 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
2146
2257
|
|
|
2147
2258
|
[[package]]
|
|
2148
2259
|
name = "miniz_oxide"
|
|
2149
|
-
version = "0.8.
|
|
2260
|
+
version = "0.8.8"
|
|
2150
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
-
checksum = "
|
|
2262
|
+
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
2152
2263
|
dependencies = [
|
|
2153
2264
|
"adler2",
|
|
2154
2265
|
]
|
|
2155
2266
|
|
|
2156
2267
|
[[package]]
|
|
2157
2268
|
name = "mio"
|
|
2158
|
-
version = "1.0.
|
|
2269
|
+
version = "1.0.3"
|
|
2159
2270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
-
checksum = "
|
|
2271
|
+
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
|
2161
2272
|
dependencies = [
|
|
2162
|
-
"hermit-abi 0.3.9",
|
|
2163
2273
|
"libc",
|
|
2164
2274
|
"log",
|
|
2165
|
-
"wasi",
|
|
2275
|
+
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
2166
2276
|
"windows-sys 0.52.0",
|
|
2167
2277
|
]
|
|
2168
2278
|
|
|
2169
2279
|
[[package]]
|
|
2170
2280
|
name = "munge"
|
|
2171
|
-
version = "0.4.
|
|
2281
|
+
version = "0.4.3"
|
|
2172
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
-
checksum = "
|
|
2283
|
+
checksum = "a0091202c98cf06da46c279fdf50cccb6b1c43b4521abdf6a27b4c7e71d5d9d7"
|
|
2174
2284
|
dependencies = [
|
|
2175
2285
|
"munge_macro",
|
|
2176
2286
|
]
|
|
2177
2287
|
|
|
2178
2288
|
[[package]]
|
|
2179
2289
|
name = "munge_macro"
|
|
2180
|
-
version = "0.4.
|
|
2290
|
+
version = "0.4.3"
|
|
2181
2291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
-
checksum = "
|
|
2292
|
+
checksum = "734799cf91479720b2f970c61a22850940dd91e27d4f02b1c6fc792778df2459"
|
|
2183
2293
|
dependencies = [
|
|
2184
2294
|
"proc-macro2",
|
|
2185
2295
|
"quote",
|
|
2186
|
-
"syn 2.0.
|
|
2296
|
+
"syn 2.0.100",
|
|
2187
2297
|
]
|
|
2188
2298
|
|
|
2189
2299
|
[[package]]
|
|
@@ -2194,11 +2304,11 @@ checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
|
|
|
2194
2304
|
|
|
2195
2305
|
[[package]]
|
|
2196
2306
|
name = "napi"
|
|
2197
|
-
version = "2.16.
|
|
2307
|
+
version = "2.16.17"
|
|
2198
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
-
checksum = "
|
|
2309
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
2200
2310
|
dependencies = [
|
|
2201
|
-
"bitflags 2.
|
|
2311
|
+
"bitflags 2.9.0",
|
|
2202
2312
|
"ctor",
|
|
2203
2313
|
"napi-derive",
|
|
2204
2314
|
"napi-sys",
|
|
@@ -2207,9 +2317,9 @@ dependencies = [
|
|
|
2207
2317
|
|
|
2208
2318
|
[[package]]
|
|
2209
2319
|
name = "napi-build"
|
|
2210
|
-
version = "2.1.
|
|
2320
|
+
version = "2.1.6"
|
|
2211
2321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
-
checksum = "
|
|
2322
|
+
checksum = "e28acfa557c083f6e254a786e01ba253fc56f18ee000afcd4f79af735f73a6da"
|
|
2213
2323
|
|
|
2214
2324
|
[[package]]
|
|
2215
2325
|
name = "napi-derive"
|
|
@@ -2218,11 +2328,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2218
2328
|
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
2219
2329
|
dependencies = [
|
|
2220
2330
|
"cfg-if",
|
|
2221
|
-
"convert_case
|
|
2331
|
+
"convert_case",
|
|
2222
2332
|
"napi-derive-backend",
|
|
2223
2333
|
"proc-macro2",
|
|
2224
2334
|
"quote",
|
|
2225
|
-
"syn 2.0.
|
|
2335
|
+
"syn 2.0.100",
|
|
2226
2336
|
]
|
|
2227
2337
|
|
|
2228
2338
|
[[package]]
|
|
@@ -2231,13 +2341,13 @@ version = "1.0.75"
|
|
|
2231
2341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
2342
|
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
2233
2343
|
dependencies = [
|
|
2234
|
-
"convert_case
|
|
2344
|
+
"convert_case",
|
|
2235
2345
|
"once_cell",
|
|
2236
2346
|
"proc-macro2",
|
|
2237
2347
|
"quote",
|
|
2238
2348
|
"regex",
|
|
2239
2349
|
"semver",
|
|
2240
|
-
"syn 2.0.
|
|
2350
|
+
"syn 2.0.100",
|
|
2241
2351
|
]
|
|
2242
2352
|
|
|
2243
2353
|
[[package]]
|
|
@@ -2303,24 +2413,23 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
|
2303
2413
|
|
|
2304
2414
|
[[package]]
|
|
2305
2415
|
name = "object"
|
|
2306
|
-
version = "0.36.
|
|
2416
|
+
version = "0.36.7"
|
|
2307
2417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
-
checksum = "
|
|
2418
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
2309
2419
|
dependencies = [
|
|
2310
2420
|
"memchr",
|
|
2311
2421
|
]
|
|
2312
2422
|
|
|
2313
2423
|
[[package]]
|
|
2314
2424
|
name = "odict"
|
|
2315
|
-
version = "2.
|
|
2425
|
+
version = "2.5.0"
|
|
2316
2426
|
dependencies = [
|
|
2317
|
-
"
|
|
2427
|
+
"brotli",
|
|
2318
2428
|
"byteorder",
|
|
2319
2429
|
"charabia",
|
|
2320
2430
|
"criterion",
|
|
2321
2431
|
"dirs",
|
|
2322
2432
|
"insta",
|
|
2323
|
-
"lz4_flex",
|
|
2324
2433
|
"map-macro",
|
|
2325
2434
|
"pulldown-cmark",
|
|
2326
2435
|
"quick-xml",
|
|
@@ -2332,14 +2441,34 @@ dependencies = [
|
|
|
2332
2441
|
"serde_json",
|
|
2333
2442
|
"tantivy",
|
|
2334
2443
|
"tempfile",
|
|
2335
|
-
"thiserror 2.0.
|
|
2444
|
+
"thiserror 2.0.12",
|
|
2336
2445
|
"uuid",
|
|
2337
2446
|
"validation",
|
|
2338
2447
|
]
|
|
2339
2448
|
|
|
2449
|
+
[[package]]
|
|
2450
|
+
name = "odict-cli"
|
|
2451
|
+
version = "2.4.1"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"actix-web",
|
|
2454
|
+
"anyhow",
|
|
2455
|
+
"clap",
|
|
2456
|
+
"console",
|
|
2457
|
+
"derive_more",
|
|
2458
|
+
"env_logger",
|
|
2459
|
+
"humansize",
|
|
2460
|
+
"humantime",
|
|
2461
|
+
"indicatif",
|
|
2462
|
+
"lru 0.14.0",
|
|
2463
|
+
"num-format",
|
|
2464
|
+
"odict",
|
|
2465
|
+
"pulldown-cmark",
|
|
2466
|
+
"serde",
|
|
2467
|
+
]
|
|
2468
|
+
|
|
2340
2469
|
[[package]]
|
|
2341
2470
|
name = "odict_node"
|
|
2342
|
-
version = "
|
|
2471
|
+
version = "1.1.1"
|
|
2343
2472
|
dependencies = [
|
|
2344
2473
|
"merge",
|
|
2345
2474
|
"napi",
|
|
@@ -2350,7 +2479,7 @@ dependencies = [
|
|
|
2350
2479
|
|
|
2351
2480
|
[[package]]
|
|
2352
2481
|
name = "odict_python"
|
|
2353
|
-
version = "1.
|
|
2482
|
+
version = "1.4.0"
|
|
2354
2483
|
dependencies = [
|
|
2355
2484
|
"either",
|
|
2356
2485
|
"odict",
|
|
@@ -2359,21 +2488,21 @@ dependencies = [
|
|
|
2359
2488
|
|
|
2360
2489
|
[[package]]
|
|
2361
2490
|
name = "once_cell"
|
|
2362
|
-
version = "1.
|
|
2491
|
+
version = "1.21.3"
|
|
2363
2492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
-
checksum = "
|
|
2493
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2365
2494
|
|
|
2366
2495
|
[[package]]
|
|
2367
2496
|
name = "oneshot"
|
|
2368
|
-
version = "0.1.
|
|
2497
|
+
version = "0.1.11"
|
|
2369
2498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
-
checksum = "
|
|
2499
|
+
checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea"
|
|
2371
2500
|
|
|
2372
2501
|
[[package]]
|
|
2373
2502
|
name = "oorandom"
|
|
2374
|
-
version = "11.1.
|
|
2503
|
+
version = "11.1.5"
|
|
2375
2504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
-
checksum = "
|
|
2505
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
2377
2506
|
|
|
2378
2507
|
[[package]]
|
|
2379
2508
|
name = "option-ext"
|
|
@@ -2410,15 +2539,9 @@ dependencies = [
|
|
|
2410
2539
|
"libc",
|
|
2411
2540
|
"redox_syscall",
|
|
2412
2541
|
"smallvec",
|
|
2413
|
-
"windows-targets
|
|
2542
|
+
"windows-targets",
|
|
2414
2543
|
]
|
|
2415
2544
|
|
|
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
2545
|
[[package]]
|
|
2423
2546
|
name = "percent-encoding"
|
|
2424
2547
|
version = "2.3.1"
|
|
@@ -2427,18 +2550,18 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
2427
2550
|
|
|
2428
2551
|
[[package]]
|
|
2429
2552
|
name = "phf"
|
|
2430
|
-
version = "0.11.
|
|
2553
|
+
version = "0.11.3"
|
|
2431
2554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
-
checksum = "
|
|
2555
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2433
2556
|
dependencies = [
|
|
2434
2557
|
"phf_shared",
|
|
2435
2558
|
]
|
|
2436
2559
|
|
|
2437
2560
|
[[package]]
|
|
2438
2561
|
name = "phf_codegen"
|
|
2439
|
-
version = "0.11.
|
|
2562
|
+
version = "0.11.3"
|
|
2440
2563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
-
checksum = "
|
|
2564
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2442
2565
|
dependencies = [
|
|
2443
2566
|
"phf_generator",
|
|
2444
2567
|
"phf_shared",
|
|
@@ -2446,28 +2569,48 @@ dependencies = [
|
|
|
2446
2569
|
|
|
2447
2570
|
[[package]]
|
|
2448
2571
|
name = "phf_generator"
|
|
2449
|
-
version = "0.11.
|
|
2572
|
+
version = "0.11.3"
|
|
2450
2573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
-
checksum = "
|
|
2574
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2452
2575
|
dependencies = [
|
|
2453
2576
|
"phf_shared",
|
|
2454
|
-
"rand",
|
|
2577
|
+
"rand 0.8.5",
|
|
2455
2578
|
]
|
|
2456
2579
|
|
|
2457
2580
|
[[package]]
|
|
2458
2581
|
name = "phf_shared"
|
|
2459
|
-
version = "0.11.
|
|
2582
|
+
version = "0.11.3"
|
|
2460
2583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
-
checksum = "
|
|
2584
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2462
2585
|
dependencies = [
|
|
2463
2586
|
"siphasher",
|
|
2464
2587
|
]
|
|
2465
2588
|
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "pin-project"
|
|
2591
|
+
version = "1.1.10"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"pin-project-internal",
|
|
2596
|
+
]
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "pin-project-internal"
|
|
2600
|
+
version = "1.1.10"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2603
|
+
dependencies = [
|
|
2604
|
+
"proc-macro2",
|
|
2605
|
+
"quote",
|
|
2606
|
+
"syn 2.0.100",
|
|
2607
|
+
]
|
|
2608
|
+
|
|
2466
2609
|
[[package]]
|
|
2467
2610
|
name = "pin-project-lite"
|
|
2468
|
-
version = "0.2.
|
|
2611
|
+
version = "0.2.16"
|
|
2469
2612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
-
checksum = "
|
|
2613
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2471
2614
|
|
|
2472
2615
|
[[package]]
|
|
2473
2616
|
name = "pin-utils"
|
|
@@ -2477,9 +2620,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
2477
2620
|
|
|
2478
2621
|
[[package]]
|
|
2479
2622
|
name = "pkg-config"
|
|
2480
|
-
version = "0.3.
|
|
2623
|
+
version = "0.3.32"
|
|
2481
2624
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2482
|
-
checksum = "
|
|
2625
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2483
2626
|
|
|
2484
2627
|
[[package]]
|
|
2485
2628
|
name = "plotters"
|
|
@@ -2511,9 +2654,18 @@ dependencies = [
|
|
|
2511
2654
|
|
|
2512
2655
|
[[package]]
|
|
2513
2656
|
name = "portable-atomic"
|
|
2514
|
-
version = "1.
|
|
2657
|
+
version = "1.11.0"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
2660
|
+
|
|
2661
|
+
[[package]]
|
|
2662
|
+
name = "portable-atomic-util"
|
|
2663
|
+
version = "0.2.4"
|
|
2515
2664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
-
checksum = "
|
|
2665
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2666
|
+
dependencies = [
|
|
2667
|
+
"portable-atomic",
|
|
2668
|
+
]
|
|
2517
2669
|
|
|
2518
2670
|
[[package]]
|
|
2519
2671
|
name = "powerfmt"
|
|
@@ -2523,11 +2675,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2523
2675
|
|
|
2524
2676
|
[[package]]
|
|
2525
2677
|
name = "ppv-lite86"
|
|
2526
|
-
version = "0.2.
|
|
2678
|
+
version = "0.2.21"
|
|
2527
2679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2528
|
-
checksum = "
|
|
2680
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2529
2681
|
dependencies = [
|
|
2530
|
-
"zerocopy",
|
|
2682
|
+
"zerocopy 0.8.24",
|
|
2531
2683
|
]
|
|
2532
2684
|
|
|
2533
2685
|
[[package]]
|
|
@@ -2556,9 +2708,9 @@ dependencies = [
|
|
|
2556
2708
|
|
|
2557
2709
|
[[package]]
|
|
2558
2710
|
name = "proc-macro2"
|
|
2559
|
-
version = "1.0.
|
|
2711
|
+
version = "1.0.95"
|
|
2560
2712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2561
|
-
checksum = "
|
|
2713
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
2562
2714
|
dependencies = [
|
|
2563
2715
|
"unicode-ident",
|
|
2564
2716
|
]
|
|
@@ -2580,16 +2732,16 @@ checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
|
|
|
2580
2732
|
dependencies = [
|
|
2581
2733
|
"proc-macro2",
|
|
2582
2734
|
"quote",
|
|
2583
|
-
"syn 2.0.
|
|
2735
|
+
"syn 2.0.100",
|
|
2584
2736
|
]
|
|
2585
2737
|
|
|
2586
2738
|
[[package]]
|
|
2587
2739
|
name = "pulldown-cmark"
|
|
2588
|
-
version = "0.
|
|
2740
|
+
version = "0.13.0"
|
|
2589
2741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
-
checksum = "
|
|
2742
|
+
checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
|
|
2591
2743
|
dependencies = [
|
|
2592
|
-
"bitflags 2.
|
|
2744
|
+
"bitflags 2.9.0",
|
|
2593
2745
|
"getopts",
|
|
2594
2746
|
"memchr",
|
|
2595
2747
|
"pulldown-cmark-escape",
|
|
@@ -2604,9 +2756,9 @@ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
|
|
|
2604
2756
|
|
|
2605
2757
|
[[package]]
|
|
2606
2758
|
name = "pyo3"
|
|
2607
|
-
version = "0.
|
|
2759
|
+
version = "0.24.1"
|
|
2608
2760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
-
checksum = "
|
|
2761
|
+
checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
|
|
2610
2762
|
dependencies = [
|
|
2611
2763
|
"cfg-if",
|
|
2612
2764
|
"either",
|
|
@@ -2623,9 +2775,9 @@ dependencies = [
|
|
|
2623
2775
|
|
|
2624
2776
|
[[package]]
|
|
2625
2777
|
name = "pyo3-build-config"
|
|
2626
|
-
version = "0.
|
|
2778
|
+
version = "0.24.1"
|
|
2627
2779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
-
checksum = "
|
|
2780
|
+
checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
|
|
2629
2781
|
dependencies = [
|
|
2630
2782
|
"once_cell",
|
|
2631
2783
|
"target-lexicon",
|
|
@@ -2633,9 +2785,9 @@ dependencies = [
|
|
|
2633
2785
|
|
|
2634
2786
|
[[package]]
|
|
2635
2787
|
name = "pyo3-ffi"
|
|
2636
|
-
version = "0.
|
|
2788
|
+
version = "0.24.1"
|
|
2637
2789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
2790
|
+
checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
|
|
2639
2791
|
dependencies = [
|
|
2640
2792
|
"libc",
|
|
2641
2793
|
"pyo3-build-config",
|
|
@@ -2643,34 +2795,34 @@ dependencies = [
|
|
|
2643
2795
|
|
|
2644
2796
|
[[package]]
|
|
2645
2797
|
name = "pyo3-macros"
|
|
2646
|
-
version = "0.
|
|
2798
|
+
version = "0.24.1"
|
|
2647
2799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
-
checksum = "
|
|
2800
|
+
checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
|
|
2649
2801
|
dependencies = [
|
|
2650
2802
|
"proc-macro2",
|
|
2651
2803
|
"pyo3-macros-backend",
|
|
2652
2804
|
"quote",
|
|
2653
|
-
"syn 2.0.
|
|
2805
|
+
"syn 2.0.100",
|
|
2654
2806
|
]
|
|
2655
2807
|
|
|
2656
2808
|
[[package]]
|
|
2657
2809
|
name = "pyo3-macros-backend"
|
|
2658
|
-
version = "0.
|
|
2810
|
+
version = "0.24.1"
|
|
2659
2811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
2812
|
+
checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
|
|
2661
2813
|
dependencies = [
|
|
2662
2814
|
"heck 0.5.0",
|
|
2663
2815
|
"proc-macro2",
|
|
2664
2816
|
"pyo3-build-config",
|
|
2665
2817
|
"quote",
|
|
2666
|
-
"syn 2.0.
|
|
2818
|
+
"syn 2.0.100",
|
|
2667
2819
|
]
|
|
2668
2820
|
|
|
2669
2821
|
[[package]]
|
|
2670
2822
|
name = "quick-xml"
|
|
2671
|
-
version = "0.37.
|
|
2823
|
+
version = "0.37.4"
|
|
2672
2824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
-
checksum = "
|
|
2825
|
+
checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369"
|
|
2674
2826
|
dependencies = [
|
|
2675
2827
|
"memchr",
|
|
2676
2828
|
"serde",
|
|
@@ -2678,13 +2830,19 @@ dependencies = [
|
|
|
2678
2830
|
|
|
2679
2831
|
[[package]]
|
|
2680
2832
|
name = "quote"
|
|
2681
|
-
version = "1.0.
|
|
2833
|
+
version = "1.0.40"
|
|
2682
2834
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
-
checksum = "
|
|
2835
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2684
2836
|
dependencies = [
|
|
2685
2837
|
"proc-macro2",
|
|
2686
2838
|
]
|
|
2687
2839
|
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "r-efi"
|
|
2842
|
+
version = "5.2.0"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
|
2845
|
+
|
|
2688
2846
|
[[package]]
|
|
2689
2847
|
name = "rancor"
|
|
2690
2848
|
version = "0.1.0"
|
|
@@ -2701,8 +2859,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2701
2859
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2702
2860
|
dependencies = [
|
|
2703
2861
|
"libc",
|
|
2704
|
-
"rand_chacha",
|
|
2705
|
-
"rand_core",
|
|
2862
|
+
"rand_chacha 0.3.1",
|
|
2863
|
+
"rand_core 0.6.4",
|
|
2864
|
+
]
|
|
2865
|
+
|
|
2866
|
+
[[package]]
|
|
2867
|
+
name = "rand"
|
|
2868
|
+
version = "0.9.1"
|
|
2869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
+
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2871
|
+
dependencies = [
|
|
2872
|
+
"rand_chacha 0.9.0",
|
|
2873
|
+
"rand_core 0.9.3",
|
|
2706
2874
|
]
|
|
2707
2875
|
|
|
2708
2876
|
[[package]]
|
|
@@ -2712,7 +2880,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2712
2880
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2713
2881
|
dependencies = [
|
|
2714
2882
|
"ppv-lite86",
|
|
2715
|
-
"rand_core",
|
|
2883
|
+
"rand_core 0.6.4",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "rand_chacha"
|
|
2888
|
+
version = "0.9.0"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"ppv-lite86",
|
|
2893
|
+
"rand_core 0.9.3",
|
|
2716
2894
|
]
|
|
2717
2895
|
|
|
2718
2896
|
[[package]]
|
|
@@ -2721,7 +2899,16 @@ version = "0.6.4"
|
|
|
2721
2899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
2900
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2723
2901
|
dependencies = [
|
|
2724
|
-
"getrandom",
|
|
2902
|
+
"getrandom 0.2.15",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "rand_core"
|
|
2907
|
+
version = "0.9.3"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2910
|
+
dependencies = [
|
|
2911
|
+
"getrandom 0.3.2",
|
|
2725
2912
|
]
|
|
2726
2913
|
|
|
2727
2914
|
[[package]]
|
|
@@ -2731,7 +2918,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2731
2918
|
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2732
2919
|
dependencies = [
|
|
2733
2920
|
"num-traits",
|
|
2734
|
-
"rand",
|
|
2921
|
+
"rand 0.8.5",
|
|
2735
2922
|
]
|
|
2736
2923
|
|
|
2737
2924
|
[[package]]
|
|
@@ -2756,22 +2943,22 @@ dependencies = [
|
|
|
2756
2943
|
|
|
2757
2944
|
[[package]]
|
|
2758
2945
|
name = "redox_syscall"
|
|
2759
|
-
version = "0.5.
|
|
2946
|
+
version = "0.5.11"
|
|
2760
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
-
checksum = "
|
|
2948
|
+
checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
|
|
2762
2949
|
dependencies = [
|
|
2763
|
-
"bitflags 2.
|
|
2950
|
+
"bitflags 2.9.0",
|
|
2764
2951
|
]
|
|
2765
2952
|
|
|
2766
2953
|
[[package]]
|
|
2767
2954
|
name = "redox_users"
|
|
2768
|
-
version = "0.
|
|
2955
|
+
version = "0.5.0"
|
|
2769
2956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
-
checksum = "
|
|
2957
|
+
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
|
|
2771
2958
|
dependencies = [
|
|
2772
|
-
"getrandom",
|
|
2959
|
+
"getrandom 0.2.15",
|
|
2773
2960
|
"libredox",
|
|
2774
|
-
"thiserror
|
|
2961
|
+
"thiserror 2.0.12",
|
|
2775
2962
|
]
|
|
2776
2963
|
|
|
2777
2964
|
[[package]]
|
|
@@ -2788,9 +2975,9 @@ dependencies = [
|
|
|
2788
2975
|
|
|
2789
2976
|
[[package]]
|
|
2790
2977
|
name = "regex-automata"
|
|
2791
|
-
version = "0.4.
|
|
2978
|
+
version = "0.4.9"
|
|
2792
2979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
-
checksum = "
|
|
2980
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2794
2981
|
dependencies = [
|
|
2795
2982
|
"aho-corasick",
|
|
2796
2983
|
"memchr",
|
|
@@ -2820,28 +3007,27 @@ dependencies = [
|
|
|
2820
3007
|
|
|
2821
3008
|
[[package]]
|
|
2822
3009
|
name = "ring"
|
|
2823
|
-
version = "0.17.
|
|
3010
|
+
version = "0.17.14"
|
|
2824
3011
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2825
|
-
checksum = "
|
|
3012
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2826
3013
|
dependencies = [
|
|
2827
3014
|
"cc",
|
|
2828
3015
|
"cfg-if",
|
|
2829
|
-
"getrandom",
|
|
3016
|
+
"getrandom 0.2.15",
|
|
2830
3017
|
"libc",
|
|
2831
|
-
"spin",
|
|
2832
3018
|
"untrusted",
|
|
2833
3019
|
"windows-sys 0.52.0",
|
|
2834
3020
|
]
|
|
2835
3021
|
|
|
2836
3022
|
[[package]]
|
|
2837
3023
|
name = "rkyv"
|
|
2838
|
-
version = "0.8.
|
|
3024
|
+
version = "0.8.10"
|
|
2839
3025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2840
|
-
checksum = "
|
|
3026
|
+
checksum = "1e147371c75553e1e2fcdb483944a8540b8438c31426279553b9a8182a9b7b65"
|
|
2841
3027
|
dependencies = [
|
|
2842
3028
|
"bytecheck",
|
|
2843
3029
|
"bytes",
|
|
2844
|
-
"hashbrown 0.15.
|
|
3030
|
+
"hashbrown 0.15.2",
|
|
2845
3031
|
"indexmap",
|
|
2846
3032
|
"munge",
|
|
2847
3033
|
"ptr_meta",
|
|
@@ -2854,15 +3040,21 @@ dependencies = [
|
|
|
2854
3040
|
|
|
2855
3041
|
[[package]]
|
|
2856
3042
|
name = "rkyv_derive"
|
|
2857
|
-
version = "0.8.
|
|
3043
|
+
version = "0.8.10"
|
|
2858
3044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
-
checksum = "
|
|
3045
|
+
checksum = "246b40ac189af6c675d124b802e8ef6d5246c53e17367ce9501f8f66a81abb7a"
|
|
2860
3046
|
dependencies = [
|
|
2861
3047
|
"proc-macro2",
|
|
2862
3048
|
"quote",
|
|
2863
|
-
"syn 2.0.
|
|
3049
|
+
"syn 2.0.100",
|
|
2864
3050
|
]
|
|
2865
3051
|
|
|
3052
|
+
[[package]]
|
|
3053
|
+
name = "rle-decode-fast"
|
|
3054
|
+
version = "1.0.3"
|
|
3055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3056
|
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
|
|
3057
|
+
|
|
2866
3058
|
[[package]]
|
|
2867
3059
|
name = "rust-stemmers"
|
|
2868
3060
|
version = "1.2.0"
|
|
@@ -2886,32 +3078,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2886
3078
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2887
3079
|
|
|
2888
3080
|
[[package]]
|
|
2889
|
-
name = "
|
|
2890
|
-
version = "0.
|
|
3081
|
+
name = "rustix"
|
|
3082
|
+
version = "0.38.44"
|
|
2891
3083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
-
checksum = "
|
|
3084
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2893
3085
|
dependencies = [
|
|
2894
|
-
"
|
|
3086
|
+
"bitflags 2.9.0",
|
|
3087
|
+
"errno",
|
|
3088
|
+
"libc",
|
|
3089
|
+
"linux-raw-sys 0.4.15",
|
|
3090
|
+
"windows-sys 0.59.0",
|
|
2895
3091
|
]
|
|
2896
3092
|
|
|
2897
3093
|
[[package]]
|
|
2898
3094
|
name = "rustix"
|
|
2899
|
-
version = "0.
|
|
3095
|
+
version = "1.0.5"
|
|
2900
3096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
-
checksum = "
|
|
3097
|
+
checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
|
|
2902
3098
|
dependencies = [
|
|
2903
|
-
"bitflags 2.
|
|
3099
|
+
"bitflags 2.9.0",
|
|
2904
3100
|
"errno",
|
|
2905
3101
|
"libc",
|
|
2906
|
-
"linux-raw-sys",
|
|
2907
|
-
"windows-sys 0.
|
|
3102
|
+
"linux-raw-sys 0.9.4",
|
|
3103
|
+
"windows-sys 0.59.0",
|
|
2908
3104
|
]
|
|
2909
3105
|
|
|
2910
3106
|
[[package]]
|
|
2911
3107
|
name = "rustls"
|
|
2912
|
-
version = "0.23.
|
|
3108
|
+
version = "0.23.26"
|
|
2913
3109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
-
checksum = "
|
|
3110
|
+
checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
|
|
2915
3111
|
dependencies = [
|
|
2916
3112
|
"log",
|
|
2917
3113
|
"once_cell",
|
|
@@ -2924,15 +3120,15 @@ dependencies = [
|
|
|
2924
3120
|
|
|
2925
3121
|
[[package]]
|
|
2926
3122
|
name = "rustls-pki-types"
|
|
2927
|
-
version = "1.
|
|
3123
|
+
version = "1.11.0"
|
|
2928
3124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
-
checksum = "
|
|
3125
|
+
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
2930
3126
|
|
|
2931
3127
|
[[package]]
|
|
2932
3128
|
name = "rustls-webpki"
|
|
2933
|
-
version = "0.
|
|
3129
|
+
version = "0.103.1"
|
|
2934
3130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
-
checksum = "
|
|
3131
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
|
2936
3132
|
dependencies = [
|
|
2937
3133
|
"ring",
|
|
2938
3134
|
"rustls-pki-types",
|
|
@@ -2941,15 +3137,15 @@ dependencies = [
|
|
|
2941
3137
|
|
|
2942
3138
|
[[package]]
|
|
2943
3139
|
name = "rustversion"
|
|
2944
|
-
version = "1.0.
|
|
3140
|
+
version = "1.0.20"
|
|
2945
3141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
-
checksum = "
|
|
3142
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
|
2947
3143
|
|
|
2948
3144
|
[[package]]
|
|
2949
3145
|
name = "ryu"
|
|
2950
|
-
version = "1.0.
|
|
3146
|
+
version = "1.0.20"
|
|
2951
3147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
-
checksum = "
|
|
3148
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2953
3149
|
|
|
2954
3150
|
[[package]]
|
|
2955
3151
|
name = "same-file"
|
|
@@ -2968,9 +3164,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
2968
3164
|
|
|
2969
3165
|
[[package]]
|
|
2970
3166
|
name = "sea-query"
|
|
2971
|
-
version = "0.32.
|
|
3167
|
+
version = "0.32.4"
|
|
2972
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
-
checksum = "
|
|
3169
|
+
checksum = "d99447c24da0cded00089e2021e1624af90878c65f7534319448d01da3df869d"
|
|
2974
3170
|
dependencies = [
|
|
2975
3171
|
"inherent",
|
|
2976
3172
|
"sea-query-derive",
|
|
@@ -2978,49 +3174,49 @@ dependencies = [
|
|
|
2978
3174
|
|
|
2979
3175
|
[[package]]
|
|
2980
3176
|
name = "sea-query-derive"
|
|
2981
|
-
version = "0.4.
|
|
3177
|
+
version = "0.4.3"
|
|
2982
3178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
-
checksum = "
|
|
3179
|
+
checksum = "bae0cbad6ab996955664982739354128c58d16e126114fe88c2a493642502aab"
|
|
2984
3180
|
dependencies = [
|
|
2985
3181
|
"darling",
|
|
2986
3182
|
"heck 0.4.1",
|
|
2987
3183
|
"proc-macro2",
|
|
2988
3184
|
"quote",
|
|
2989
|
-
"syn 2.0.
|
|
2990
|
-
"thiserror
|
|
3185
|
+
"syn 2.0.100",
|
|
3186
|
+
"thiserror 2.0.12",
|
|
2991
3187
|
]
|
|
2992
3188
|
|
|
2993
3189
|
[[package]]
|
|
2994
3190
|
name = "semver"
|
|
2995
|
-
version = "1.0.
|
|
3191
|
+
version = "1.0.26"
|
|
2996
3192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
-
checksum = "
|
|
3193
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
2998
3194
|
|
|
2999
3195
|
[[package]]
|
|
3000
3196
|
name = "serde"
|
|
3001
|
-
version = "1.0.
|
|
3197
|
+
version = "1.0.219"
|
|
3002
3198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
3199
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
3004
3200
|
dependencies = [
|
|
3005
3201
|
"serde_derive",
|
|
3006
3202
|
]
|
|
3007
3203
|
|
|
3008
3204
|
[[package]]
|
|
3009
3205
|
name = "serde_derive"
|
|
3010
|
-
version = "1.0.
|
|
3206
|
+
version = "1.0.219"
|
|
3011
3207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
-
checksum = "
|
|
3208
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
3013
3209
|
dependencies = [
|
|
3014
3210
|
"proc-macro2",
|
|
3015
3211
|
"quote",
|
|
3016
|
-
"syn 2.0.
|
|
3212
|
+
"syn 2.0.100",
|
|
3017
3213
|
]
|
|
3018
3214
|
|
|
3019
3215
|
[[package]]
|
|
3020
3216
|
name = "serde_json"
|
|
3021
|
-
version = "1.0.
|
|
3217
|
+
version = "1.0.140"
|
|
3022
3218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
-
checksum = "
|
|
3219
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
3024
3220
|
dependencies = [
|
|
3025
3221
|
"itoa",
|
|
3026
3222
|
"memchr",
|
|
@@ -3074,15 +3270,15 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
|
3074
3270
|
|
|
3075
3271
|
[[package]]
|
|
3076
3272
|
name = "similar"
|
|
3077
|
-
version = "2.
|
|
3273
|
+
version = "2.7.0"
|
|
3078
3274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
-
checksum = "
|
|
3275
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
3080
3276
|
|
|
3081
3277
|
[[package]]
|
|
3082
3278
|
name = "siphasher"
|
|
3083
|
-
version = "0.
|
|
3279
|
+
version = "1.0.1"
|
|
3084
3280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
-
checksum = "
|
|
3281
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3086
3282
|
|
|
3087
3283
|
[[package]]
|
|
3088
3284
|
name = "sketches-ddsketch"
|
|
@@ -3110,38 +3306,26 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
|
3110
3306
|
|
|
3111
3307
|
[[package]]
|
|
3112
3308
|
name = "smallvec"
|
|
3113
|
-
version = "1.
|
|
3309
|
+
version = "1.15.0"
|
|
3114
3310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
-
checksum = "
|
|
3311
|
+
checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
|
|
3116
3312
|
|
|
3117
3313
|
[[package]]
|
|
3118
3314
|
name = "socket2"
|
|
3119
|
-
version = "0.5.
|
|
3315
|
+
version = "0.5.9"
|
|
3120
3316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
-
checksum = "
|
|
3317
|
+
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
|
3122
3318
|
dependencies = [
|
|
3123
3319
|
"libc",
|
|
3124
3320
|
"windows-sys 0.52.0",
|
|
3125
3321
|
]
|
|
3126
3322
|
|
|
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
3323
|
[[package]]
|
|
3134
3324
|
name = "stable_deref_trait"
|
|
3135
3325
|
version = "1.2.0"
|
|
3136
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
3327
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
3138
3328
|
|
|
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
3329
|
[[package]]
|
|
3146
3330
|
name = "strsim"
|
|
3147
3331
|
version = "0.11.1"
|
|
@@ -3167,7 +3351,7 @@ dependencies = [
|
|
|
3167
3351
|
"proc-macro2",
|
|
3168
3352
|
"quote",
|
|
3169
3353
|
"rustversion",
|
|
3170
|
-
"syn 2.0.
|
|
3354
|
+
"syn 2.0.100",
|
|
3171
3355
|
]
|
|
3172
3356
|
|
|
3173
3357
|
[[package]]
|
|
@@ -3189,9 +3373,9 @@ dependencies = [
|
|
|
3189
3373
|
|
|
3190
3374
|
[[package]]
|
|
3191
3375
|
name = "syn"
|
|
3192
|
-
version = "2.0.
|
|
3376
|
+
version = "2.0.100"
|
|
3193
3377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3194
|
-
checksum = "
|
|
3378
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
3195
3379
|
dependencies = [
|
|
3196
3380
|
"proc-macro2",
|
|
3197
3381
|
"quote",
|
|
@@ -3206,7 +3390,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
|
3206
3390
|
dependencies = [
|
|
3207
3391
|
"proc-macro2",
|
|
3208
3392
|
"quote",
|
|
3209
|
-
"syn 2.0.
|
|
3393
|
+
"syn 2.0.100",
|
|
3210
3394
|
]
|
|
3211
3395
|
|
|
3212
3396
|
[[package]]
|
|
@@ -3231,7 +3415,7 @@ dependencies = [
|
|
|
3231
3415
|
"itertools 0.12.1",
|
|
3232
3416
|
"levenshtein_automata",
|
|
3233
3417
|
"log",
|
|
3234
|
-
"lru",
|
|
3418
|
+
"lru 0.12.5",
|
|
3235
3419
|
"lz4_flex",
|
|
3236
3420
|
"measure_time",
|
|
3237
3421
|
"memmap2",
|
|
@@ -3254,7 +3438,7 @@ dependencies = [
|
|
|
3254
3438
|
"tantivy-stacker",
|
|
3255
3439
|
"tantivy-tokenizer-api",
|
|
3256
3440
|
"tempfile",
|
|
3257
|
-
"thiserror 1.0.
|
|
3441
|
+
"thiserror 1.0.69",
|
|
3258
3442
|
"time",
|
|
3259
3443
|
"uuid",
|
|
3260
3444
|
"winapi",
|
|
@@ -3352,9 +3536,9 @@ dependencies = [
|
|
|
3352
3536
|
|
|
3353
3537
|
[[package]]
|
|
3354
3538
|
name = "tar"
|
|
3355
|
-
version = "0.4.
|
|
3539
|
+
version = "0.4.44"
|
|
3356
3540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
-
checksum = "
|
|
3541
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
3358
3542
|
dependencies = [
|
|
3359
3543
|
"filetime",
|
|
3360
3544
|
"libc",
|
|
@@ -3363,68 +3547,68 @@ dependencies = [
|
|
|
3363
3547
|
|
|
3364
3548
|
[[package]]
|
|
3365
3549
|
name = "target-lexicon"
|
|
3366
|
-
version = "0.
|
|
3550
|
+
version = "0.13.2"
|
|
3367
3551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
-
checksum = "
|
|
3552
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
3369
3553
|
|
|
3370
3554
|
[[package]]
|
|
3371
3555
|
name = "tempfile"
|
|
3372
|
-
version = "3.
|
|
3556
|
+
version = "3.19.1"
|
|
3373
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3374
|
-
checksum = "
|
|
3558
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
|
3375
3559
|
dependencies = [
|
|
3376
|
-
"cfg-if",
|
|
3377
3560
|
"fastrand",
|
|
3561
|
+
"getrandom 0.3.2",
|
|
3378
3562
|
"once_cell",
|
|
3379
|
-
"rustix",
|
|
3563
|
+
"rustix 1.0.5",
|
|
3380
3564
|
"windows-sys 0.59.0",
|
|
3381
3565
|
]
|
|
3382
3566
|
|
|
3383
3567
|
[[package]]
|
|
3384
3568
|
name = "thiserror"
|
|
3385
|
-
version = "1.0.
|
|
3569
|
+
version = "1.0.69"
|
|
3386
3570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3387
|
-
checksum = "
|
|
3571
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3388
3572
|
dependencies = [
|
|
3389
|
-
"thiserror-impl 1.0.
|
|
3573
|
+
"thiserror-impl 1.0.69",
|
|
3390
3574
|
]
|
|
3391
3575
|
|
|
3392
3576
|
[[package]]
|
|
3393
3577
|
name = "thiserror"
|
|
3394
|
-
version = "2.0.
|
|
3578
|
+
version = "2.0.12"
|
|
3395
3579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
-
checksum = "
|
|
3580
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
3397
3581
|
dependencies = [
|
|
3398
|
-
"thiserror-impl 2.0.
|
|
3582
|
+
"thiserror-impl 2.0.12",
|
|
3399
3583
|
]
|
|
3400
3584
|
|
|
3401
3585
|
[[package]]
|
|
3402
3586
|
name = "thiserror-impl"
|
|
3403
|
-
version = "1.0.
|
|
3587
|
+
version = "1.0.69"
|
|
3404
3588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
-
checksum = "
|
|
3589
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3406
3590
|
dependencies = [
|
|
3407
3591
|
"proc-macro2",
|
|
3408
3592
|
"quote",
|
|
3409
|
-
"syn 2.0.
|
|
3593
|
+
"syn 2.0.100",
|
|
3410
3594
|
]
|
|
3411
3595
|
|
|
3412
3596
|
[[package]]
|
|
3413
3597
|
name = "thiserror-impl"
|
|
3414
|
-
version = "2.0.
|
|
3598
|
+
version = "2.0.12"
|
|
3415
3599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3416
|
-
checksum = "
|
|
3600
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
3417
3601
|
dependencies = [
|
|
3418
3602
|
"proc-macro2",
|
|
3419
3603
|
"quote",
|
|
3420
|
-
"syn 2.0.
|
|
3604
|
+
"syn 2.0.100",
|
|
3421
3605
|
]
|
|
3422
3606
|
|
|
3423
3607
|
[[package]]
|
|
3424
3608
|
name = "time"
|
|
3425
|
-
version = "0.3.
|
|
3609
|
+
version = "0.3.41"
|
|
3426
3610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
-
checksum = "
|
|
3611
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
3428
3612
|
dependencies = [
|
|
3429
3613
|
"deranged",
|
|
3430
3614
|
"itoa",
|
|
@@ -3437,15 +3621,15 @@ dependencies = [
|
|
|
3437
3621
|
|
|
3438
3622
|
[[package]]
|
|
3439
3623
|
name = "time-core"
|
|
3440
|
-
version = "0.1.
|
|
3624
|
+
version = "0.1.4"
|
|
3441
3625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
-
checksum = "
|
|
3626
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
3443
3627
|
|
|
3444
3628
|
[[package]]
|
|
3445
3629
|
name = "time-macros"
|
|
3446
|
-
version = "0.2.
|
|
3630
|
+
version = "0.2.22"
|
|
3447
3631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
|
-
checksum = "
|
|
3632
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
3449
3633
|
dependencies = [
|
|
3450
3634
|
"num-conv",
|
|
3451
3635
|
"time-core",
|
|
@@ -3473,9 +3657,9 @@ dependencies = [
|
|
|
3473
3657
|
|
|
3474
3658
|
[[package]]
|
|
3475
3659
|
name = "tinyvec"
|
|
3476
|
-
version = "1.
|
|
3660
|
+
version = "1.9.0"
|
|
3477
3661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3478
|
-
checksum = "
|
|
3662
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
3479
3663
|
dependencies = [
|
|
3480
3664
|
"tinyvec_macros",
|
|
3481
3665
|
]
|
|
@@ -3488,9 +3672,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3488
3672
|
|
|
3489
3673
|
[[package]]
|
|
3490
3674
|
name = "tokio"
|
|
3491
|
-
version = "1.
|
|
3675
|
+
version = "1.44.2"
|
|
3492
3676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3493
|
-
checksum = "
|
|
3677
|
+
checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
|
|
3494
3678
|
dependencies = [
|
|
3495
3679
|
"backtrace",
|
|
3496
3680
|
"bytes",
|
|
@@ -3505,9 +3689,9 @@ dependencies = [
|
|
|
3505
3689
|
|
|
3506
3690
|
[[package]]
|
|
3507
3691
|
name = "tokio-util"
|
|
3508
|
-
version = "0.7.
|
|
3692
|
+
version = "0.7.14"
|
|
3509
3693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
-
checksum = "
|
|
3694
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
|
3511
3695
|
dependencies = [
|
|
3512
3696
|
"bytes",
|
|
3513
3697
|
"futures-core",
|
|
@@ -3518,45 +3702,47 @@ dependencies = [
|
|
|
3518
3702
|
|
|
3519
3703
|
[[package]]
|
|
3520
3704
|
name = "tracing"
|
|
3521
|
-
version = "0.1.
|
|
3705
|
+
version = "0.1.41"
|
|
3522
3706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3523
|
-
checksum = "
|
|
3707
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3524
3708
|
dependencies = [
|
|
3525
3709
|
"log",
|
|
3526
3710
|
"pin-project-lite",
|
|
3711
|
+
"tracing-attributes",
|
|
3527
3712
|
"tracing-core",
|
|
3528
3713
|
]
|
|
3529
3714
|
|
|
3530
3715
|
[[package]]
|
|
3531
|
-
name = "tracing-
|
|
3532
|
-
version = "0.1.
|
|
3716
|
+
name = "tracing-attributes"
|
|
3717
|
+
version = "0.1.28"
|
|
3533
3718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3534
|
-
checksum = "
|
|
3719
|
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
|
|
3535
3720
|
dependencies = [
|
|
3536
|
-
"
|
|
3721
|
+
"proc-macro2",
|
|
3722
|
+
"quote",
|
|
3723
|
+
"syn 2.0.100",
|
|
3537
3724
|
]
|
|
3538
3725
|
|
|
3539
3726
|
[[package]]
|
|
3540
|
-
name = "
|
|
3541
|
-
version = "1.
|
|
3727
|
+
name = "tracing-core"
|
|
3728
|
+
version = "0.1.33"
|
|
3542
3729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
-
checksum = "
|
|
3730
|
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
|
3544
3731
|
dependencies = [
|
|
3545
|
-
"
|
|
3546
|
-
"static_assertions",
|
|
3732
|
+
"once_cell",
|
|
3547
3733
|
]
|
|
3548
3734
|
|
|
3549
3735
|
[[package]]
|
|
3550
3736
|
name = "typenum"
|
|
3551
|
-
version = "1.
|
|
3737
|
+
version = "1.18.0"
|
|
3552
3738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
-
checksum = "
|
|
3739
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3554
3740
|
|
|
3555
3741
|
[[package]]
|
|
3556
3742
|
name = "unicase"
|
|
3557
|
-
version = "2.8.
|
|
3743
|
+
version = "2.8.1"
|
|
3558
3744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
-
checksum = "
|
|
3745
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
3560
3746
|
|
|
3561
3747
|
[[package]]
|
|
3562
3748
|
name = "unicode-blocks"
|
|
@@ -3566,9 +3752,9 @@ checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
|
|
|
3566
3752
|
|
|
3567
3753
|
[[package]]
|
|
3568
3754
|
name = "unicode-ident"
|
|
3569
|
-
version = "1.0.
|
|
3755
|
+
version = "1.0.18"
|
|
3570
3756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
-
checksum = "
|
|
3757
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3572
3758
|
|
|
3573
3759
|
[[package]]
|
|
3574
3760
|
name = "unicode-normalization"
|
|
@@ -3597,11 +3783,17 @@ version = "0.2.0"
|
|
|
3597
3783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3598
3784
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
3599
3785
|
|
|
3786
|
+
[[package]]
|
|
3787
|
+
name = "unicode-xid"
|
|
3788
|
+
version = "0.2.6"
|
|
3789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3790
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3791
|
+
|
|
3600
3792
|
[[package]]
|
|
3601
3793
|
name = "unindent"
|
|
3602
|
-
version = "0.2.
|
|
3794
|
+
version = "0.2.4"
|
|
3603
3795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
-
checksum = "
|
|
3796
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3605
3797
|
|
|
3606
3798
|
[[package]]
|
|
3607
3799
|
name = "untrusted"
|
|
@@ -3611,9 +3803,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
3611
3803
|
|
|
3612
3804
|
[[package]]
|
|
3613
3805
|
name = "ureq"
|
|
3614
|
-
version = "2.
|
|
3806
|
+
version = "2.12.1"
|
|
3615
3807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
-
checksum = "
|
|
3808
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
3617
3809
|
dependencies = [
|
|
3618
3810
|
"base64",
|
|
3619
3811
|
"log",
|
|
@@ -3626,9 +3818,9 @@ dependencies = [
|
|
|
3626
3818
|
|
|
3627
3819
|
[[package]]
|
|
3628
3820
|
name = "url"
|
|
3629
|
-
version = "2.5.
|
|
3821
|
+
version = "2.5.4"
|
|
3630
3822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
-
checksum = "
|
|
3823
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3632
3824
|
dependencies = [
|
|
3633
3825
|
"form_urlencoded",
|
|
3634
3826
|
"idna",
|
|
@@ -3661,25 +3853,27 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3661
3853
|
|
|
3662
3854
|
[[package]]
|
|
3663
3855
|
name = "uuid"
|
|
3664
|
-
version = "1.
|
|
3856
|
+
version = "1.16.0"
|
|
3665
3857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3666
|
-
checksum = "
|
|
3858
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
3667
3859
|
dependencies = [
|
|
3668
|
-
"getrandom",
|
|
3669
|
-
"
|
|
3860
|
+
"getrandom 0.3.2",
|
|
3861
|
+
"js-sys",
|
|
3862
|
+
"rand 0.9.1",
|
|
3670
3863
|
"serde",
|
|
3671
3864
|
"uuid-macro-internal",
|
|
3865
|
+
"wasm-bindgen",
|
|
3672
3866
|
]
|
|
3673
3867
|
|
|
3674
3868
|
[[package]]
|
|
3675
3869
|
name = "uuid-macro-internal"
|
|
3676
|
-
version = "1.
|
|
3870
|
+
version = "1.16.0"
|
|
3677
3871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
-
checksum = "
|
|
3872
|
+
checksum = "72dcd78c4f979627a754f5522cea6e6a25e55139056535fe6e69c506cd64a862"
|
|
3679
3873
|
dependencies = [
|
|
3680
3874
|
"proc-macro2",
|
|
3681
3875
|
"quote",
|
|
3682
|
-
"syn 2.0.
|
|
3876
|
+
"syn 2.0.100",
|
|
3683
3877
|
]
|
|
3684
3878
|
|
|
3685
3879
|
[[package]]
|
|
@@ -3705,53 +3899,51 @@ dependencies = [
|
|
|
3705
3899
|
]
|
|
3706
3900
|
|
|
3707
3901
|
[[package]]
|
|
3708
|
-
name = "
|
|
3709
|
-
version = "
|
|
3902
|
+
name = "wasi"
|
|
3903
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
3710
3904
|
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
|
-
]
|
|
3905
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
3717
3906
|
|
|
3718
3907
|
[[package]]
|
|
3719
3908
|
name = "wasi"
|
|
3720
|
-
version = "0.
|
|
3909
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3721
3910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
-
checksum = "
|
|
3911
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3912
|
+
dependencies = [
|
|
3913
|
+
"wit-bindgen-rt",
|
|
3914
|
+
]
|
|
3723
3915
|
|
|
3724
3916
|
[[package]]
|
|
3725
3917
|
name = "wasm-bindgen"
|
|
3726
|
-
version = "0.2.
|
|
3918
|
+
version = "0.2.100"
|
|
3727
3919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
-
checksum = "
|
|
3920
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3729
3921
|
dependencies = [
|
|
3730
3922
|
"cfg-if",
|
|
3731
3923
|
"once_cell",
|
|
3924
|
+
"rustversion",
|
|
3732
3925
|
"wasm-bindgen-macro",
|
|
3733
3926
|
]
|
|
3734
3927
|
|
|
3735
3928
|
[[package]]
|
|
3736
3929
|
name = "wasm-bindgen-backend"
|
|
3737
|
-
version = "0.2.
|
|
3930
|
+
version = "0.2.100"
|
|
3738
3931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
-
checksum = "
|
|
3932
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3740
3933
|
dependencies = [
|
|
3741
3934
|
"bumpalo",
|
|
3742
3935
|
"log",
|
|
3743
|
-
"once_cell",
|
|
3744
3936
|
"proc-macro2",
|
|
3745
3937
|
"quote",
|
|
3746
|
-
"syn 2.0.
|
|
3938
|
+
"syn 2.0.100",
|
|
3747
3939
|
"wasm-bindgen-shared",
|
|
3748
3940
|
]
|
|
3749
3941
|
|
|
3750
3942
|
[[package]]
|
|
3751
3943
|
name = "wasm-bindgen-macro"
|
|
3752
|
-
version = "0.2.
|
|
3944
|
+
version = "0.2.100"
|
|
3753
3945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
-
checksum = "
|
|
3946
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3755
3947
|
dependencies = [
|
|
3756
3948
|
"quote",
|
|
3757
3949
|
"wasm-bindgen-macro-support",
|
|
@@ -3759,28 +3951,31 @@ dependencies = [
|
|
|
3759
3951
|
|
|
3760
3952
|
[[package]]
|
|
3761
3953
|
name = "wasm-bindgen-macro-support"
|
|
3762
|
-
version = "0.2.
|
|
3954
|
+
version = "0.2.100"
|
|
3763
3955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
-
checksum = "
|
|
3956
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3765
3957
|
dependencies = [
|
|
3766
3958
|
"proc-macro2",
|
|
3767
3959
|
"quote",
|
|
3768
|
-
"syn 2.0.
|
|
3960
|
+
"syn 2.0.100",
|
|
3769
3961
|
"wasm-bindgen-backend",
|
|
3770
3962
|
"wasm-bindgen-shared",
|
|
3771
3963
|
]
|
|
3772
3964
|
|
|
3773
3965
|
[[package]]
|
|
3774
3966
|
name = "wasm-bindgen-shared"
|
|
3775
|
-
version = "0.2.
|
|
3967
|
+
version = "0.2.100"
|
|
3776
3968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
-
checksum = "
|
|
3969
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3970
|
+
dependencies = [
|
|
3971
|
+
"unicode-ident",
|
|
3972
|
+
]
|
|
3778
3973
|
|
|
3779
3974
|
[[package]]
|
|
3780
3975
|
name = "web-sys"
|
|
3781
|
-
version = "0.3.
|
|
3976
|
+
version = "0.3.77"
|
|
3782
3977
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3783
|
-
checksum = "
|
|
3978
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3784
3979
|
dependencies = [
|
|
3785
3980
|
"js-sys",
|
|
3786
3981
|
"wasm-bindgen",
|
|
@@ -3798,9 +3993,9 @@ dependencies = [
|
|
|
3798
3993
|
|
|
3799
3994
|
[[package]]
|
|
3800
3995
|
name = "webpki-roots"
|
|
3801
|
-
version = "0.26.
|
|
3996
|
+
version = "0.26.8"
|
|
3802
3997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
-
checksum = "
|
|
3998
|
+
checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
|
|
3804
3999
|
dependencies = [
|
|
3805
4000
|
"rustls-pki-types",
|
|
3806
4001
|
]
|
|
@@ -3846,22 +4041,13 @@ version = "0.4.0"
|
|
|
3846
4041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
4042
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3848
4043
|
|
|
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
4044
|
[[package]]
|
|
3859
4045
|
name = "windows-sys"
|
|
3860
4046
|
version = "0.52.0"
|
|
3861
4047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
4048
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3863
4049
|
dependencies = [
|
|
3864
|
-
"windows-targets
|
|
4050
|
+
"windows-targets",
|
|
3865
4051
|
]
|
|
3866
4052
|
|
|
3867
4053
|
[[package]]
|
|
@@ -3870,22 +4056,7 @@ version = "0.59.0"
|
|
|
3870
4056
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
4057
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3872
4058
|
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",
|
|
4059
|
+
"windows-targets",
|
|
3889
4060
|
]
|
|
3890
4061
|
|
|
3891
4062
|
[[package]]
|
|
@@ -3894,46 +4065,28 @@ version = "0.52.6"
|
|
|
3894
4065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
4066
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3896
4067
|
dependencies = [
|
|
3897
|
-
"windows_aarch64_gnullvm
|
|
3898
|
-
"windows_aarch64_msvc
|
|
3899
|
-
"windows_i686_gnu
|
|
4068
|
+
"windows_aarch64_gnullvm",
|
|
4069
|
+
"windows_aarch64_msvc",
|
|
4070
|
+
"windows_i686_gnu",
|
|
3900
4071
|
"windows_i686_gnullvm",
|
|
3901
|
-
"windows_i686_msvc
|
|
3902
|
-
"windows_x86_64_gnu
|
|
3903
|
-
"windows_x86_64_gnullvm
|
|
3904
|
-
"windows_x86_64_msvc
|
|
4072
|
+
"windows_i686_msvc",
|
|
4073
|
+
"windows_x86_64_gnu",
|
|
4074
|
+
"windows_x86_64_gnullvm",
|
|
4075
|
+
"windows_x86_64_msvc",
|
|
3905
4076
|
]
|
|
3906
4077
|
|
|
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
4078
|
[[package]]
|
|
3914
4079
|
name = "windows_aarch64_gnullvm"
|
|
3915
4080
|
version = "0.52.6"
|
|
3916
4081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
4082
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3918
4083
|
|
|
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
4084
|
[[package]]
|
|
3926
4085
|
name = "windows_aarch64_msvc"
|
|
3927
4086
|
version = "0.52.6"
|
|
3928
4087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3929
4088
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3930
4089
|
|
|
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
4090
|
[[package]]
|
|
3938
4091
|
name = "windows_i686_gnu"
|
|
3939
4092
|
version = "0.52.6"
|
|
@@ -3946,36 +4099,18 @@ version = "0.52.6"
|
|
|
3946
4099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
4100
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3948
4101
|
|
|
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
4102
|
[[package]]
|
|
3956
4103
|
name = "windows_i686_msvc"
|
|
3957
4104
|
version = "0.52.6"
|
|
3958
4105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3959
4106
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3960
4107
|
|
|
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
4108
|
[[package]]
|
|
3968
4109
|
name = "windows_x86_64_gnu"
|
|
3969
4110
|
version = "0.52.6"
|
|
3970
4111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3971
4112
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3972
4113
|
|
|
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
4114
|
[[package]]
|
|
3980
4115
|
name = "windows_x86_64_gnullvm"
|
|
3981
4116
|
version = "0.52.6"
|
|
@@ -3984,15 +4119,18 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
3984
4119
|
|
|
3985
4120
|
[[package]]
|
|
3986
4121
|
name = "windows_x86_64_msvc"
|
|
3987
|
-
version = "0.
|
|
4122
|
+
version = "0.52.6"
|
|
3988
4123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3989
|
-
checksum = "
|
|
4124
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3990
4125
|
|
|
3991
4126
|
[[package]]
|
|
3992
|
-
name = "
|
|
3993
|
-
version = "0.
|
|
4127
|
+
name = "wit-bindgen-rt"
|
|
4128
|
+
version = "0.39.0"
|
|
3994
4129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3995
|
-
checksum = "
|
|
4130
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
4131
|
+
dependencies = [
|
|
4132
|
+
"bitflags 2.9.0",
|
|
4133
|
+
]
|
|
3996
4134
|
|
|
3997
4135
|
[[package]]
|
|
3998
4136
|
name = "write16"
|
|
@@ -4008,13 +4146,12 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
|
4008
4146
|
|
|
4009
4147
|
[[package]]
|
|
4010
4148
|
name = "xattr"
|
|
4011
|
-
version = "1.
|
|
4149
|
+
version = "1.5.0"
|
|
4012
4150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4013
|
-
checksum = "
|
|
4151
|
+
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
|
4014
4152
|
dependencies = [
|
|
4015
4153
|
"libc",
|
|
4016
|
-
"
|
|
4017
|
-
"rustix",
|
|
4154
|
+
"rustix 1.0.5",
|
|
4018
4155
|
]
|
|
4019
4156
|
|
|
4020
4157
|
[[package]]
|
|
@@ -4025,9 +4162,9 @@ checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
|
|
|
4025
4162
|
|
|
4026
4163
|
[[package]]
|
|
4027
4164
|
name = "yoke"
|
|
4028
|
-
version = "0.7.
|
|
4165
|
+
version = "0.7.5"
|
|
4029
4166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4167
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4031
4168
|
dependencies = [
|
|
4032
4169
|
"serde",
|
|
4033
4170
|
"stable_deref_trait",
|
|
@@ -4037,13 +4174,13 @@ dependencies = [
|
|
|
4037
4174
|
|
|
4038
4175
|
[[package]]
|
|
4039
4176
|
name = "yoke-derive"
|
|
4040
|
-
version = "0.7.
|
|
4177
|
+
version = "0.7.5"
|
|
4041
4178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4042
|
-
checksum = "
|
|
4179
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
4043
4180
|
dependencies = [
|
|
4044
4181
|
"proc-macro2",
|
|
4045
4182
|
"quote",
|
|
4046
|
-
"syn 2.0.
|
|
4183
|
+
"syn 2.0.100",
|
|
4047
4184
|
"synstructure",
|
|
4048
4185
|
]
|
|
4049
4186
|
|
|
@@ -4053,8 +4190,16 @@ version = "0.7.35"
|
|
|
4053
4190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4054
4191
|
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
4055
4192
|
dependencies = [
|
|
4056
|
-
"
|
|
4057
|
-
|
|
4193
|
+
"zerocopy-derive 0.7.35",
|
|
4194
|
+
]
|
|
4195
|
+
|
|
4196
|
+
[[package]]
|
|
4197
|
+
name = "zerocopy"
|
|
4198
|
+
version = "0.8.24"
|
|
4199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4200
|
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
|
|
4201
|
+
dependencies = [
|
|
4202
|
+
"zerocopy-derive 0.8.24",
|
|
4058
4203
|
]
|
|
4059
4204
|
|
|
4060
4205
|
[[package]]
|
|
@@ -4065,27 +4210,38 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
|
4065
4210
|
dependencies = [
|
|
4066
4211
|
"proc-macro2",
|
|
4067
4212
|
"quote",
|
|
4068
|
-
"syn 2.0.
|
|
4213
|
+
"syn 2.0.100",
|
|
4214
|
+
]
|
|
4215
|
+
|
|
4216
|
+
[[package]]
|
|
4217
|
+
name = "zerocopy-derive"
|
|
4218
|
+
version = "0.8.24"
|
|
4219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4220
|
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
|
|
4221
|
+
dependencies = [
|
|
4222
|
+
"proc-macro2",
|
|
4223
|
+
"quote",
|
|
4224
|
+
"syn 2.0.100",
|
|
4069
4225
|
]
|
|
4070
4226
|
|
|
4071
4227
|
[[package]]
|
|
4072
4228
|
name = "zerofrom"
|
|
4073
|
-
version = "0.1.
|
|
4229
|
+
version = "0.1.6"
|
|
4074
4230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4075
|
-
checksum = "
|
|
4231
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4076
4232
|
dependencies = [
|
|
4077
4233
|
"zerofrom-derive",
|
|
4078
4234
|
]
|
|
4079
4235
|
|
|
4080
4236
|
[[package]]
|
|
4081
4237
|
name = "zerofrom-derive"
|
|
4082
|
-
version = "0.1.
|
|
4238
|
+
version = "0.1.6"
|
|
4083
4239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4084
|
-
checksum = "
|
|
4240
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4085
4241
|
dependencies = [
|
|
4086
4242
|
"proc-macro2",
|
|
4087
4243
|
"quote",
|
|
4088
|
-
"syn 2.0.
|
|
4244
|
+
"syn 2.0.100",
|
|
4089
4245
|
"synstructure",
|
|
4090
4246
|
]
|
|
4091
4247
|
|
|
@@ -4114,32 +4270,32 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
|
4114
4270
|
dependencies = [
|
|
4115
4271
|
"proc-macro2",
|
|
4116
4272
|
"quote",
|
|
4117
|
-
"syn 2.0.
|
|
4273
|
+
"syn 2.0.100",
|
|
4118
4274
|
]
|
|
4119
4275
|
|
|
4120
4276
|
[[package]]
|
|
4121
4277
|
name = "zstd"
|
|
4122
|
-
version = "0.13.
|
|
4278
|
+
version = "0.13.3"
|
|
4123
4279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
4280
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4125
4281
|
dependencies = [
|
|
4126
4282
|
"zstd-safe",
|
|
4127
4283
|
]
|
|
4128
4284
|
|
|
4129
4285
|
[[package]]
|
|
4130
4286
|
name = "zstd-safe"
|
|
4131
|
-
version = "7.2.
|
|
4287
|
+
version = "7.2.4"
|
|
4132
4288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4133
|
-
checksum = "
|
|
4289
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4134
4290
|
dependencies = [
|
|
4135
4291
|
"zstd-sys",
|
|
4136
4292
|
]
|
|
4137
4293
|
|
|
4138
4294
|
[[package]]
|
|
4139
4295
|
name = "zstd-sys"
|
|
4140
|
-
version = "2.0.
|
|
4296
|
+
version = "2.0.15+zstd.1.5.7"
|
|
4141
4297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4142
|
-
checksum = "
|
|
4298
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
4143
4299
|
dependencies = [
|
|
4144
4300
|
"cc",
|
|
4145
4301
|
"pkg-config",
|