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.

Files changed (128) hide show
  1. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/Cargo.lock +762 -606
  2. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/Cargo.toml +2 -1
  3. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/PKG-INFO +1 -1
  4. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/CHANGELOG.md +49 -60
  5. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/Cargo.toml +33 -12
  6. theopendictionary-1.4.0/lib/src/compress.rs +60 -0
  7. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/config/aliases.rs +1 -0
  8. theopendictionary-1.0.0/lib/src/core/constants.rs → theopendictionary-1.4.0/lib/src/core/io/consts.rs +1 -1
  9. theopendictionary-1.4.0/lib/src/core/io/mod.rs +6 -0
  10. {theopendictionary-1.0.0/lib/src/core → theopendictionary-1.4.0/lib/src/core/io}/read.rs +21 -12
  11. {theopendictionary-1.0.0/lib/src/core → theopendictionary-1.4.0/lib/src/core/io}/write.rs +63 -7
  12. theopendictionary-1.4.0/lib/src/core/lookup/mod.rs +145 -0
  13. theopendictionary-1.4.0/lib/src/core/lookup/options.rs +43 -0
  14. theopendictionary-1.4.0/lib/src/core/lookup/tokenize.rs +143 -0
  15. theopendictionary-1.4.0/lib/src/core/mod.rs +17 -0
  16. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/preview.rs +10 -12
  17. theopendictionary-1.4.0/lib/src/core/resolve.rs +18 -0
  18. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/error.rs +5 -3
  19. theopendictionary-1.4.0/lib/src/format/html/html.rs +39 -0
  20. theopendictionary-1.4.0/lib/src/format/html/mod.rs +3 -0
  21. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/definition.rs +3 -3
  22. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/entry.rs +13 -3
  23. theopendictionary-1.4.0/lib/src/format/json/entry_ref.rs +29 -0
  24. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/etymology.rs +2 -2
  25. theopendictionary-1.4.0/lib/src/format/json/form.rs +30 -0
  26. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/group.rs +2 -2
  27. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/json.rs +27 -10
  28. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/mod.rs +6 -0
  29. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/note.rs +4 -4
  30. theopendictionary-1.4.0/lib/src/format/json/token.rs +70 -0
  31. theopendictionary-1.4.0/lib/src/format/md/definition.rs +32 -0
  32. theopendictionary-1.4.0/lib/src/format/md/entry.rs +21 -0
  33. theopendictionary-1.4.0/lib/src/format/md/etymology.rs +19 -0
  34. theopendictionary-1.4.0/lib/src/format/md/example.rs +20 -0
  35. theopendictionary-1.4.0/lib/src/format/md/group.rs +20 -0
  36. theopendictionary-1.4.0/lib/src/format/md/md.rs +41 -0
  37. {theopendictionary-1.0.0/python/src/types → theopendictionary-1.4.0/lib/src/format/md}/mod.rs +3 -4
  38. theopendictionary-1.4.0/lib/src/format/md/note.rs +17 -0
  39. theopendictionary-1.4.0/lib/src/format/md/pprint.rs +224 -0
  40. theopendictionary-1.4.0/lib/src/format/md/sense.rs +16 -0
  41. theopendictionary-1.4.0/lib/src/format/md/utils.rs +34 -0
  42. theopendictionary-1.4.0/lib/src/format/mod.rs +9 -0
  43. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/definitions.rs +4 -6
  44. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/etymologies.rs +2 -2
  45. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/examples.rs +4 -5
  46. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/groups.rs +2 -2
  47. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/notes.rs +2 -2
  48. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/sql.rs +1 -1
  49. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/lib.rs +5 -9
  50. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/md.rs +2 -7
  51. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/definition.rs +2 -2
  52. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/entry.rs +19 -1
  53. theopendictionary-1.4.0/lib/src/models/entry_ref.rs +51 -0
  54. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/etymology.rs +2 -2
  55. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/example.rs +2 -2
  56. theopendictionary-1.4.0/lib/src/models/form.rs +60 -0
  57. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/group.rs +2 -2
  58. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/mod.rs +4 -2
  59. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/note.rs +2 -2
  60. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/mod.rs +1 -5
  61. theopendictionary-1.4.0/python/CHANGELOG.md +53 -0
  62. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/Cargo.toml +9 -3
  63. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/dictionary.rs +56 -46
  64. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/lib.rs +2 -0
  65. theopendictionary-1.4.0/python/src/types/definition.rs +34 -0
  66. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/types/entry.rs +24 -10
  67. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/types/etymology.rs +14 -12
  68. theopendictionary-1.4.0/python/src/types/example.rs +18 -0
  69. theopendictionary-1.4.0/python/src/types/form.rs +42 -0
  70. theopendictionary-1.4.0/python/src/types/form_kind.rs +52 -0
  71. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/types/group.rs +12 -9
  72. theopendictionary-1.4.0/python/src/types/lookup.rs +56 -0
  73. theopendictionary-1.4.0/python/src/types/mod.rs +17 -0
  74. theopendictionary-1.4.0/python/src/types/note.rs +30 -0
  75. theopendictionary-1.4.0/python/src/types/sense.rs +30 -0
  76. theopendictionary-1.4.0/python/src/types/token.rs +82 -0
  77. theopendictionary-1.4.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
  78. theopendictionary-1.4.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
  79. theopendictionary-1.4.0/python/tests/test_forms.py +66 -0
  80. theopendictionary-1.4.0/python/tests/test_lemma.py +74 -0
  81. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/tests/test_lookup.py +29 -9
  82. theopendictionary-1.4.0/python/tests/test_tokenize.py +121 -0
  83. theopendictionary-1.0.0/lib/src/core/lookup.rs +0 -173
  84. theopendictionary-1.0.0/lib/src/core/mod.rs +0 -15
  85. theopendictionary-1.0.0/lib/src/core/split.rs +0 -69
  86. theopendictionary-1.0.0/lib/src/lz4.rs +0 -23
  87. theopendictionary-1.0.0/lib/src/models/mdstring.rs +0 -123
  88. theopendictionary-1.0.0/python/CHANGELOG.md +0 -23
  89. theopendictionary-1.0.0/python/src/types/definition.rs +0 -33
  90. theopendictionary-1.0.0/python/src/types/example.rs +0 -19
  91. theopendictionary-1.0.0/python/src/types/mdstring.rs +0 -60
  92. theopendictionary-1.0.0/python/src/types/note.rs +0 -30
  93. theopendictionary-1.0.0/python/src/types/sense.rs +0 -32
  94. theopendictionary-1.0.0/python/tests/__snapshots__/test_lookup.ambr +0 -27
  95. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/report.json +0 -0
  96. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/config/config.rs +0 -0
  97. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/config/mod.rs +0 -0
  98. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/lexicon.rs +0 -0
  99. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/merge.rs +0 -0
  100. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/core/semver.rs +0 -0
  101. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/ext.rs +0 -0
  102. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/dictionary.rs +0 -0
  103. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/sense.rs +0 -0
  104. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/json/utils.rs +0 -0
  105. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/dictionaries.rs +0 -0
  106. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/entries.rs +0 -0
  107. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/mod.rs +0 -0
  108. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/senses.rs +0 -0
  109. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/sql/utils.rs +0 -0
  110. {theopendictionary-1.0.0/lib/src → theopendictionary-1.4.0/lib/src/format}/xml.rs +0 -0
  111. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/fs.rs +0 -0
  112. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/dictionary.rs +0 -0
  113. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/id.rs +0 -0
  114. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/pos.rs +0 -0
  115. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/sense.rs +0 -0
  116. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/models/serializable.rs +0 -0
  117. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/charabia.rs +0 -0
  118. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/constants.rs +0 -0
  119. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/index.rs +0 -0
  120. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/schema.rs +0 -0
  121. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/src/search/search.rs +0 -0
  122. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/lib/tasks.toml +0 -0
  123. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/pyproject.toml +0 -0
  124. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/.gitignore +0 -0
  125. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/requirements.txt +0 -0
  126. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/setup.cfg +0 -0
  127. {theopendictionary-1.0.0 → theopendictionary-1.4.0}/python/src/utils.rs +0 -0
  128. {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.6.0",
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.9.0"
24
+ version = "3.10.0"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
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.6.0",
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.87",
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.0"
98
+ version = "2.5.1"
99
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
100
- checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
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.2"
115
+ version = "2.0.3"
116
116
  source = "registry+https://github.com/rust-lang/crates.io-index"
117
- checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
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.9.0"
135
+ version = "4.10.2"
137
136
  source = "registry+https://github.com/rust-lang/crates.io-index"
138
- checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
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.87",
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.19"
247
+ version = "0.2.21"
243
248
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
- checksum = "611cc2ae7d2e242c457e4be7f97036b8ad9ca152b499f53faf99b1ed8fc2553f"
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.6"
298
+ version = "3.0.7"
294
299
  source = "registry+https://github.com/rust-lang/crates.io-index"
295
- checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
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.95"
309
+ version = "1.0.98"
304
310
  source = "registry+https://github.com/rust-lang/crates.io-index"
305
- checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
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.83"
327
+ version = "0.1.88"
322
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
323
- checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
329
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
324
330
  dependencies = [
325
331
  "proc-macro2",
326
332
  "quote",
327
- "syn 2.0.87",
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 0.52.6",
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.6.0"
380
+ version = "2.9.0"
375
381
  source = "registry+https://github.com/rust-lang/crates.io-index"
376
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
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 = "6.0.0"
404
+ version = "7.0.0"
399
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
400
- checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
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.1"
415
+ version = "4.0.3"
410
416
  source = "registry+https://github.com/rust-lang/crates.io-index"
411
- checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
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.16.0"
425
+ version = "3.17.0"
420
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
421
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
427
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
422
428
 
423
429
  [[package]]
424
430
  name = "bytecheck"
425
- version = "0.8.0"
431
+ version = "0.8.1"
426
432
  source = "registry+https://github.com/rust-lang/crates.io-index"
427
- checksum = "50c8f430744b23b54ad15161fcbc22d82a29b73eacbe425fea23ec822600bc6f"
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.0"
443
+ version = "0.8.1"
438
444
  source = "registry+https://github.com/rust-lang/crates.io-index"
439
- checksum = "523363cbe1df49b68215efdf500b103ac3b0fb4836aed6d15689a076eadb8fff"
445
+ checksum = "efb7846e0cb180355c2dec69e721edafa36919850f1a9f52ffba4ebc0393cb71"
440
446
  dependencies = [
441
447
  "proc-macro2",
442
448
  "quote",
443
- "syn 2.0.87",
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.8.0"
460
+ version = "1.10.1"
455
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
456
- checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
462
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
457
463
 
458
464
  [[package]]
459
465
  name = "bytestring"
460
- version = "1.3.1"
466
+ version = "1.4.0"
461
467
  source = "registry+https://github.com/rust-lang/crates.io-index"
462
- checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72"
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.1.37"
481
+ version = "1.2.19"
476
482
  source = "registry+https://github.com/rust-lang/crates.io-index"
477
- checksum = "40545c26d092346d8a8dab71ee48e7685a7a9cba76e634790c215b41a4a7b4cf"
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.2"
513
+ version = "0.9.3"
508
514
  source = "registry+https://github.com/rust-lang/crates.io-index"
509
- checksum = "cf8921fe4d53ab8f9e8f9b72ce6f91726cfc40fffab1243d27db406b5e2e9cc2"
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.23"
560
+ version = "4.5.36"
556
561
  source = "registry+https://github.com/rust-lang/crates.io-index"
557
- checksum = "3135e7ec2ef7b10c6ed8950f0f792ed96ee093fa088608f1c76e569722700c84"
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.23"
570
+ version = "4.5.36"
566
571
  source = "registry+https://github.com/rust-lang/crates.io-index"
567
- checksum = "30582fc632330df2bd26877bde0c1f4470d57c582bbc070376afcd04d8cb4838"
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.18"
582
+ version = "4.5.32"
578
583
  source = "registry+https://github.com/rust-lang/crates.io-index"
579
- checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
584
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
580
585
  dependencies = [
581
586
  "heck 0.5.0",
582
587
  "proc-macro2",
583
588
  "quote",
584
- "syn 2.0.87",
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.8"
606
+ version = "0.15.11"
620
607
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
- checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
608
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
622
609
  dependencies = [
623
610
  "encode_unicode",
624
- "lazy_static",
625
611
  "libc",
626
- "unicode-width 0.1.14",
627
- "windows-sys 0.52.0",
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.14"
648
+ version = "0.2.17"
659
649
  source = "registry+https://github.com/rust-lang/crates.io-index"
660
- checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
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.13"
702
+ version = "0.5.15"
713
703
  source = "registry+https://github.com/rust-lang/crates.io-index"
714
- checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
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.5"
711
+ version = "0.8.6"
722
712
  source = "registry+https://github.com/rust-lang/crates.io-index"
723
- checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
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.20"
730
+ version = "0.8.21"
741
731
  source = "registry+https://github.com/rust-lang/crates.io-index"
742
- checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
732
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
743
733
 
744
734
  [[package]]
745
735
  name = "crunchy"
746
- version = "0.2.2"
736
+ version = "0.2.3"
747
737
  source = "registry+https://github.com/rust-lang/crates.io-index"
748
- checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
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.0"
752
+ version = "1.3.1"
763
753
  source = "registry+https://github.com/rust-lang/crates.io-index"
764
- checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
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.11"
764
+ version = "0.1.12"
775
765
  source = "registry+https://github.com/rust-lang/crates.io-index"
776
- checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
766
+ checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
777
767
  dependencies = [
778
768
  "memchr",
779
769
  ]
780
770
 
781
771
  [[package]]
782
772
  name = "ctor"
783
- version = "0.2.8"
773
+ version = "0.2.9"
784
774
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
- checksum = "edb49164822f3ee45b17acd4a208cfc1251410cf0cad9a833234c9890774dd9f"
775
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
786
776
  dependencies = [
787
777
  "quote",
788
- "syn 2.0.87",
778
+ "syn 2.0.100",
789
779
  ]
790
780
 
791
781
  [[package]]
792
782
  name = "darling"
793
- version = "0.20.10"
783
+ version = "0.20.11"
794
784
  source = "registry+https://github.com/rust-lang/crates.io-index"
795
- checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
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.10"
793
+ version = "0.20.11"
804
794
  source = "registry+https://github.com/rust-lang/crates.io-index"
805
- checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
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.87",
802
+ "syn 2.0.100",
813
803
  ]
814
804
 
815
805
  [[package]]
816
806
  name = "darling_macro"
817
- version = "0.20.10"
807
+ version = "0.20.11"
818
808
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
809
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
820
810
  dependencies = [
821
811
  "darling_core",
822
812
  "quote",
823
- "syn 2.0.87",
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.3.11"
824
+ version = "0.4.0"
829
825
  source = "registry+https://github.com/rust-lang/crates.io-index"
830
- checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
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.87",
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.87",
860
+ "syn 2.0.100",
865
861
  ]
866
862
 
867
863
  [[package]]
868
864
  name = "derive_more"
869
- version = "0.99.18"
865
+ version = "2.0.1"
870
866
  source = "registry+https://github.com/rust-lang/crates.io-index"
871
- checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
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
- "rustc_version",
877
- "syn 2.0.87",
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 = "5.0.1"
896
+ version = "6.0.0"
893
897
  source = "registry+https://github.com/rust-lang/crates.io-index"
894
- checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
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.4.1"
905
+ version = "0.5.0"
902
906
  source = "registry+https://github.com/rust-lang/crates.io-index"
903
- checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
907
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
904
908
  dependencies = [
905
909
  "libc",
906
910
  "option-ext",
907
911
  "redox_users",
908
- "windows-sys 0.48.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.87",
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.13.0"
934
+ version = "1.15.0"
931
935
  source = "registry+https://github.com/rust-lang/crates.io-index"
932
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
936
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
933
937
 
934
938
  [[package]]
935
939
  name = "encode_unicode"
936
- version = "0.3.6"
940
+ version = "1.0.0"
937
941
  source = "registry+https://github.com/rust-lang/crates.io-index"
938
- checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
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.2"
1028
+ version = "0.1.3"
1025
1029
  source = "registry+https://github.com/rust-lang/crates.io-index"
1026
- checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab"
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.5"
1038
+ version = "0.11.8"
1035
1039
  source = "registry+https://github.com/rust-lang/crates.io-index"
1036
- checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"
1040
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
1037
1041
  dependencies = [
1038
1042
  "anstream",
1039
1043
  "anstyle",
1040
1044
  "env_filter",
1041
- "humantime",
1045
+ "jiff",
1042
1046
  "log",
1043
1047
  ]
1044
1048
 
1045
1049
  [[package]]
1046
1050
  name = "equivalent"
1047
- version = "1.0.1"
1051
+ version = "1.0.2"
1048
1052
  source = "registry+https://github.com/rust-lang/crates.io-index"
1049
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1053
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1050
1054
 
1051
1055
  [[package]]
1052
1056
  name = "errno"
1053
- version = "0.3.9"
1057
+ version = "0.3.11"
1054
1058
  source = "registry+https://github.com/rust-lang/crates.io-index"
1055
- checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
1059
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1056
1060
  dependencies = [
1057
1061
  "libc",
1058
- "windows-sys 0.52.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.2.0"
1073
+ version = "2.3.0"
1070
1074
  source = "registry+https://github.com/rust-lang/crates.io-index"
1071
- checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
1075
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1072
1076
 
1073
1077
  [[package]]
1074
1078
  name = "filetime"
@@ -1084,9 +1088,9 @@ dependencies = [
1084
1088
 
1085
1089
  [[package]]
1086
1090
  name = "flate2"
1087
- version = "1.0.34"
1091
+ version = "1.1.1"
1088
1092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1089
- checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
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.3"
1107
+ version = "0.1.5"
1104
1108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1105
- checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
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.1"
1225
+ version = "0.3.2"
1210
1226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1211
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
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.4.1"
1250
+ version = "2.6.0"
1235
1251
  source = "registry+https://github.com/rust-lang/crates.io-index"
1236
- checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
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.1"
1270
+ version = "0.15.2"
1255
1271
  source = "registry+https://github.com/rust-lang/crates.io-index"
1256
- checksum = "3a9bfc1af68b1726ea47d3d5109de126281def866b33970e10fbab11b5dafab3"
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.4.0"
1299
+ version = "0.5.0"
1284
1300
  source = "registry+https://github.com/rust-lang/crates.io-index"
1285
- checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
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.9.5"
1322
+ version = "1.10.1"
1307
1323
  source = "registry+https://github.com/rust-lang/crates.io-index"
1308
- checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
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.1.0"
1343
+ version = "2.2.0"
1328
1344
  source = "registry+https://github.com/rust-lang/crates.io-index"
1329
- checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
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.0"
1388
+ version = "1.5.1"
1373
1389
  source = "registry+https://github.com/rust-lang/crates.io-index"
1374
- checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
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.0"
1412
+ version = "1.5.1"
1397
1413
  source = "registry+https://github.com/rust-lang/crates.io-index"
1398
- checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
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.0"
1433
+ version = "1.5.1"
1418
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
1419
- checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
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.87",
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.8"
1494
+ version = "0.1.9"
1479
1495
  source = "registry+https://github.com/rust-lang/crates.io-index"
1480
- checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
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.6.0"
1523
+ version = "2.9.0"
1485
1524
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1525
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1487
1526
  dependencies = [
1488
1527
  "equivalent",
1489
- "hashbrown 0.15.1",
1528
+ "hashbrown 0.15.2",
1490
1529
  ]
1491
1530
 
1492
1531
  [[package]]
1493
1532
  name = "indicatif"
1494
- version = "0.17.9"
1533
+ version = "0.17.11"
1495
1534
  source = "registry+https://github.com/rust-lang/crates.io-index"
1496
- checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
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.5"
1546
+ version = "2.0.6"
1508
1547
  source = "registry+https://github.com/rust-lang/crates.io-index"
1509
- checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1548
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1510
1549
 
1511
1550
  [[package]]
1512
1551
  name = "inherent"
1513
- version = "1.0.11"
1552
+ version = "1.0.12"
1514
1553
  source = "registry+https://github.com/rust-lang/crates.io-index"
1515
- checksum = "0122b7114117e64a63ac49f752a5ca4624d534c7b1c7de796ac196381cd2d947"
1554
+ checksum = "6c38228f24186d9cc68c729accb4d413be9eaed6ad07ff79e0270d9e56f3de13"
1516
1555
  dependencies = [
1517
1556
  "proc-macro2",
1518
1557
  "quote",
1519
- "syn 2.0.87",
1558
+ "syn 2.0.100",
1520
1559
  ]
1521
1560
 
1522
1561
  [[package]]
1523
1562
  name = "insta"
1524
- version = "1.41.1"
1563
+ version = "1.42.2"
1525
1564
  source = "registry+https://github.com/rust-lang/crates.io-index"
1526
- checksum = "7e9ffc4d4892617c50a928c52b2961cb5174b6fc6ebf252b2fac9d21955c48b8"
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.13"
1599
+ version = "0.4.16"
1560
1600
  source = "registry+https://github.com/rust-lang/crates.io-index"
1561
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
1601
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1562
1602
  dependencies = [
1563
- "hermit-abi 0.4.0",
1603
+ "hermit-abi 0.5.0",
1564
1604
  "libc",
1565
- "windows-sys 0.52.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.11"
1634
+ version = "1.0.15"
1595
1635
  source = "registry+https://github.com/rust-lang/crates.io-index"
1596
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
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.0"
1649
+ version = "0.7.2"
1601
1650
  source = "registry+https://github.com/rust-lang/crates.io-index"
1602
- checksum = "c1e2b0210dc78b49337af9e49d7ae41a39dceac6e5985613f1cf7763e2f76a25"
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.32"
1688
+ version = "0.1.33"
1616
1689
  source = "registry+https://github.com/rust-lang/crates.io-index"
1617
- checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
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.72"
1698
+ version = "0.3.77"
1625
1699
  source = "registry+https://github.com/rust-lang/crates.io-index"
1626
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
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.162"
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 = "18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398"
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.5"
1765
+ version = "0.8.6"
1667
1766
  source = "registry+https://github.com/rust-lang/crates.io-index"
1668
- checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
1767
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1669
1768
  dependencies = [
1670
1769
  "cfg-if",
1671
- "windows-targets 0.52.6",
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.6.0",
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.2"
1792
+ version = "0.32.3"
1694
1793
  source = "registry+https://github.com/rust-lang/crates.io-index"
1695
- checksum = "c6cbc1aad631a7da0a7e9bc4b8669fa92ac9ca8eeb7b35a807376dd3034443ff"
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.2"
1805
+ version = "0.32.3"
1707
1806
  source = "registry+https://github.com/rust-lang/crates.io-index"
1708
- checksum = "74508ffbb24e36905d1718b261460e378a748029b07bcd7e06f0d18500b8194c"
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.68",
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.2"
1835
+ version = "0.32.3"
1737
1836
  source = "registry+https://github.com/rust-lang/crates.io-index"
1738
- checksum = "6a677c371ecb3bd02b751be306ea09876cd47cf426303ad5f10a3fd6f9a4ded6"
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.2"
1848
+ version = "0.32.3"
1750
1849
  source = "registry+https://github.com/rust-lang/crates.io-index"
1751
- checksum = "c35944000d05a177e981f037b5f0805f283b32f05a0c35713003bef136ca8cb4"
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.2"
1862
+ version = "0.32.3"
1764
1863
  source = "registry+https://github.com/rust-lang/crates.io-index"
1765
- checksum = "85b8f642bc9c9130682569975772a17336c6aab26d11fc0f823f3e663167ace6"
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.2"
1874
+ version = "0.32.3"
1776
1875
  source = "registry+https://github.com/rust-lang/crates.io-index"
1777
- checksum = "a7825d8d63592aa5727d67bd209170ac82df56c369533efbf0ddbac277bb68ec"
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.2"
1885
+ version = "0.32.3"
1787
1886
  source = "registry+https://github.com/rust-lang/crates.io-index"
1788
- checksum = "0c28191456debc98af6aa5f7db77872471983e9fa2a737b1c232b6ef543aed62"
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.68",
1896
+ "thiserror 1.0.69",
1798
1897
  "yada",
1799
1898
  ]
1800
1899
 
1801
1900
  [[package]]
1802
1901
  name = "lindera-decompress"
1803
- version = "0.32.2"
1902
+ version = "0.32.3"
1804
1903
  source = "registry+https://github.com/rust-lang/crates.io-index"
1805
- checksum = "4788a1ead2f63f3fc2888109272921dedd86a87b7d0bf05e9daab46600daac51"
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.2"
1913
+ version = "0.32.3"
1815
1914
  source = "registry+https://github.com/rust-lang/crates.io-index"
1816
- checksum = "bdf5f91725e32b9a21b1656baa7030766c9bafc4de4b4ddeb8ffdde7224dd2f6"
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.2"
1938
+ version = "0.32.3"
1840
1939
  source = "registry+https://github.com/rust-lang/crates.io-index"
1841
- checksum = "e41f00ba7ac541b0ffd8c30e7a73f2dd197546cc5780462ec4f2e4782945a780"
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.2"
1960
+ version = "0.32.3"
1862
1961
  source = "registry+https://github.com/rust-lang/crates.io-index"
1863
- checksum = "273d27e01e1377e2647314a4a5b9bdca4b52a867b319069ebae8c10191146eca"
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.2"
1985
+ version = "0.32.3"
1887
1986
  source = "registry+https://github.com/rust-lang/crates.io-index"
1888
- checksum = "b97a52ff0af5acb700093badaf7078051ab9ffd9071859724445a60193995f1f"
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.2"
1999
+ version = "0.32.3"
1901
2000
  source = "registry+https://github.com/rust-lang/crates.io-index"
1902
- checksum = "bf5031c52686128db13f774b2c5a8abfd52b4cc1f904041d8411aa19d630ce4d"
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.2"
2011
+ version = "0.32.3"
1913
2012
  source = "registry+https://github.com/rust-lang/crates.io-index"
1914
- checksum = "d6b36764b27b169aa11d24888141f206a6c246a5b195c1e67127485bac512fb6"
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.2"
2025
+ version = "0.32.3"
1927
2026
  source = "registry+https://github.com/rust-lang/crates.io-index"
1928
- checksum = "abf36e40ace904741efdd883ed5c4dba6425f65156a0fb5d3f73a386335950dc"
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.2"
2037
+ version = "0.32.3"
1939
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1940
- checksum = "4c92a1a3564b531953f0238cbcea392f2905f7b27b449978cf9e702a80e1086d"
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.2"
2052
+ version = "0.32.3"
1954
2053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1955
- checksum = "9f2c60425abc1548570c2568858f74a1f042105ecd89faa39c651b4315350fd9"
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.2"
2064
+ version = "0.32.3"
1966
2065
  source = "registry+https://github.com/rust-lang/crates.io-index"
1967
- checksum = "903e558981bcb6f59870aa7d6b4bcb09e8f7db778886a6a70f67fd74c9fa2ca3"
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.2"
2078
+ version = "0.32.3"
1980
2079
  source = "registry+https://github.com/rust-lang/crates.io-index"
1981
- checksum = "d227c3ce9cbd905f865c46c65a0470fd04e89b71104d7f92baa71a212ffe1d4b"
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.2"
2093
+ version = "0.32.3"
1995
2094
  source = "registry+https://github.com/rust-lang/crates.io-index"
1996
- checksum = "99e2c50015c242e02c451acb6748667ac6fd1d3d667cd7db48cd89e2f2d2377e"
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.14"
2111
+ version = "0.4.15"
2013
2112
  source = "registry+https://github.com/rust-lang/crates.io-index"
2014
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
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.3"
2123
+ version = "0.7.5"
2019
2124
  source = "registry+https://github.com/rust-lang/crates.io-index"
2020
- checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704"
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.22"
2156
+ version = "0.4.27"
2052
2157
  source = "registry+https://github.com/rust-lang/crates.io-index"
2053
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
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.1",
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.0"
2260
+ version = "0.8.8"
2150
2261
  source = "registry+https://github.com/rust-lang/crates.io-index"
2151
- checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2262
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2152
2263
  dependencies = [
2153
2264
  "adler2",
2154
2265
  ]
2155
2266
 
2156
2267
  [[package]]
2157
2268
  name = "mio"
2158
- version = "1.0.2"
2269
+ version = "1.0.3"
2159
2270
  source = "registry+https://github.com/rust-lang/crates.io-index"
2160
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
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.1"
2281
+ version = "0.4.3"
2172
2282
  source = "registry+https://github.com/rust-lang/crates.io-index"
2173
- checksum = "64142d38c84badf60abf06ff9bd80ad2174306a5b11bd4706535090a30a419df"
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.1"
2290
+ version = "0.4.3"
2181
2291
  source = "registry+https://github.com/rust-lang/crates.io-index"
2182
- checksum = "1bb5c1d8184f13f7d0ccbeeca0def2f9a181bce2624302793005f5ca8aa62e5e"
2292
+ checksum = "734799cf91479720b2f970c61a22850940dd91e27d4f02b1c6fc792778df2459"
2183
2293
  dependencies = [
2184
2294
  "proc-macro2",
2185
2295
  "quote",
2186
- "syn 2.0.87",
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.13"
2307
+ version = "2.16.17"
2198
2308
  source = "registry+https://github.com/rust-lang/crates.io-index"
2199
- checksum = "214f07a80874bb96a8433b3cdfc84980d56c7b02e1a0d7ba4ba0db5cef785e2b"
2309
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
2200
2310
  dependencies = [
2201
- "bitflags 2.6.0",
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.3"
2320
+ version = "2.1.6"
2211
2321
  source = "registry+https://github.com/rust-lang/crates.io-index"
2212
- checksum = "e1c0f5d67ee408a4685b61f5ab7e58605c8ae3f2b4189f0127d804ff13d5560a"
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 0.6.0",
2331
+ "convert_case",
2222
2332
  "napi-derive-backend",
2223
2333
  "proc-macro2",
2224
2334
  "quote",
2225
- "syn 2.0.87",
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 0.6.0",
2344
+ "convert_case",
2235
2345
  "once_cell",
2236
2346
  "proc-macro2",
2237
2347
  "quote",
2238
2348
  "regex",
2239
2349
  "semver",
2240
- "syn 2.0.87",
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.5"
2416
+ version = "0.36.7"
2307
2417
  source = "registry+https://github.com/rust-lang/crates.io-index"
2308
- checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2418
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2309
2419
  dependencies = [
2310
2420
  "memchr",
2311
2421
  ]
2312
2422
 
2313
2423
  [[package]]
2314
2424
  name = "odict"
2315
- version = "2.0.0"
2425
+ version = "2.5.0"
2316
2426
  dependencies = [
2317
- "anyhow",
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.9",
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 = "0.0.2"
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.0.0"
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.20.2"
2491
+ version = "1.21.3"
2363
2492
  source = "registry+https://github.com/rust-lang/crates.io-index"
2364
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2493
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2365
2494
 
2366
2495
  [[package]]
2367
2496
  name = "oneshot"
2368
- version = "0.1.8"
2497
+ version = "0.1.11"
2369
2498
  source = "registry+https://github.com/rust-lang/crates.io-index"
2370
- checksum = "e296cf87e61c9cfc1a61c3c63a0f7f286ed4554e0e22be84e8a38e1d264a2a29"
2499
+ checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea"
2371
2500
 
2372
2501
  [[package]]
2373
2502
  name = "oorandom"
2374
- version = "11.1.4"
2503
+ version = "11.1.5"
2375
2504
  source = "registry+https://github.com/rust-lang/crates.io-index"
2376
- checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
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 0.52.6",
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.2"
2553
+ version = "0.11.3"
2431
2554
  source = "registry+https://github.com/rust-lang/crates.io-index"
2432
- checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
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.2"
2562
+ version = "0.11.3"
2440
2563
  source = "registry+https://github.com/rust-lang/crates.io-index"
2441
- checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
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.2"
2572
+ version = "0.11.3"
2450
2573
  source = "registry+https://github.com/rust-lang/crates.io-index"
2451
- checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
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.2"
2582
+ version = "0.11.3"
2460
2583
  source = "registry+https://github.com/rust-lang/crates.io-index"
2461
- checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
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.15"
2611
+ version = "0.2.16"
2469
2612
  source = "registry+https://github.com/rust-lang/crates.io-index"
2470
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
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.31"
2623
+ version = "0.3.32"
2481
2624
  source = "registry+https://github.com/rust-lang/crates.io-index"
2482
- checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
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.9.0"
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 = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
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.20"
2678
+ version = "0.2.21"
2527
2679
  source = "registry+https://github.com/rust-lang/crates.io-index"
2528
- checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
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.89"
2711
+ version = "1.0.95"
2560
2712
  source = "registry+https://github.com/rust-lang/crates.io-index"
2561
- checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
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.87",
2735
+ "syn 2.0.100",
2584
2736
  ]
2585
2737
 
2586
2738
  [[package]]
2587
2739
  name = "pulldown-cmark"
2588
- version = "0.12.2"
2740
+ version = "0.13.0"
2589
2741
  source = "registry+https://github.com/rust-lang/crates.io-index"
2590
- checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14"
2742
+ checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
2591
2743
  dependencies = [
2592
- "bitflags 2.6.0",
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.23.3"
2759
+ version = "0.24.1"
2608
2760
  source = "registry+https://github.com/rust-lang/crates.io-index"
2609
- checksum = "e484fd2c8b4cb67ab05a318f1fd6fa8f199fcc30819f08f07d200809dba26c15"
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.23.3"
2778
+ version = "0.24.1"
2627
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2628
- checksum = "dc0e0469a84f208e20044b98965e1561028180219e35352a2afaf2b942beff3b"
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.23.3"
2788
+ version = "0.24.1"
2637
2789
  source = "registry+https://github.com/rust-lang/crates.io-index"
2638
- checksum = "eb1547a7f9966f6f1a0f0227564a9945fe36b90da5a93b3933fc3dc03fae372d"
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.23.3"
2798
+ version = "0.24.1"
2647
2799
  source = "registry+https://github.com/rust-lang/crates.io-index"
2648
- checksum = "fdb6da8ec6fa5cedd1626c886fc8749bdcbb09424a86461eb8cdf096b7c33257"
2800
+ checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
2649
2801
  dependencies = [
2650
2802
  "proc-macro2",
2651
2803
  "pyo3-macros-backend",
2652
2804
  "quote",
2653
- "syn 2.0.87",
2805
+ "syn 2.0.100",
2654
2806
  ]
2655
2807
 
2656
2808
  [[package]]
2657
2809
  name = "pyo3-macros-backend"
2658
- version = "0.23.3"
2810
+ version = "0.24.1"
2659
2811
  source = "registry+https://github.com/rust-lang/crates.io-index"
2660
- checksum = "38a385202ff5a92791168b1136afae5059d3ac118457bb7bc304c197c2d33e7d"
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.87",
2818
+ "syn 2.0.100",
2667
2819
  ]
2668
2820
 
2669
2821
  [[package]]
2670
2822
  name = "quick-xml"
2671
- version = "0.37.1"
2823
+ version = "0.37.4"
2672
2824
  source = "registry+https://github.com/rust-lang/crates.io-index"
2673
- checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03"
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.37"
2833
+ version = "1.0.40"
2682
2834
  source = "registry+https://github.com/rust-lang/crates.io-index"
2683
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
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.7"
2946
+ version = "0.5.11"
2760
2947
  source = "registry+https://github.com/rust-lang/crates.io-index"
2761
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2948
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2762
2949
  dependencies = [
2763
- "bitflags 2.6.0",
2950
+ "bitflags 2.9.0",
2764
2951
  ]
2765
2952
 
2766
2953
  [[package]]
2767
2954
  name = "redox_users"
2768
- version = "0.4.6"
2955
+ version = "0.5.0"
2769
2956
  source = "registry+https://github.com/rust-lang/crates.io-index"
2770
- checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2957
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
2771
2958
  dependencies = [
2772
- "getrandom",
2959
+ "getrandom 0.2.15",
2773
2960
  "libredox",
2774
- "thiserror 1.0.68",
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.8"
2978
+ version = "0.4.9"
2792
2979
  source = "registry+https://github.com/rust-lang/crates.io-index"
2793
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
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.8"
3010
+ version = "0.17.14"
2824
3011
  source = "registry+https://github.com/rust-lang/crates.io-index"
2825
- checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
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.9"
3024
+ version = "0.8.10"
2839
3025
  source = "registry+https://github.com/rust-lang/crates.io-index"
2840
- checksum = "b11a153aec4a6ab60795f8ebe2923c597b16b05bb1504377451e705ef1a45323"
3026
+ checksum = "1e147371c75553e1e2fcdb483944a8540b8438c31426279553b9a8182a9b7b65"
2841
3027
  dependencies = [
2842
3028
  "bytecheck",
2843
3029
  "bytes",
2844
- "hashbrown 0.15.1",
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.9"
3043
+ version = "0.8.10"
2858
3044
  source = "registry+https://github.com/rust-lang/crates.io-index"
2859
- checksum = "beb382a4d9f53bd5c0be86b10d8179c3f8a14c30bf774ff77096ed6581e35981"
3045
+ checksum = "246b40ac189af6c675d124b802e8ef6d5246c53e17367ce9501f8f66a81abb7a"
2860
3046
  dependencies = [
2861
3047
  "proc-macro2",
2862
3048
  "quote",
2863
- "syn 2.0.87",
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 = "rustc_version"
2890
- version = "0.4.1"
3081
+ name = "rustix"
3082
+ version = "0.38.44"
2891
3083
  source = "registry+https://github.com/rust-lang/crates.io-index"
2892
- checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3084
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2893
3085
  dependencies = [
2894
- "semver",
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.38.39"
3095
+ version = "1.0.5"
2900
3096
  source = "registry+https://github.com/rust-lang/crates.io-index"
2901
- checksum = "375116bee2be9ed569afe2154ea6a99dfdffd257f533f187498c2a8f5feaf4ee"
3097
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
2902
3098
  dependencies = [
2903
- "bitflags 2.6.0",
3099
+ "bitflags 2.9.0",
2904
3100
  "errno",
2905
3101
  "libc",
2906
- "linux-raw-sys",
2907
- "windows-sys 0.52.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.16"
3108
+ version = "0.23.26"
2913
3109
  source = "registry+https://github.com/rust-lang/crates.io-index"
2914
- checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
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.10.0"
3123
+ version = "1.11.0"
2928
3124
  source = "registry+https://github.com/rust-lang/crates.io-index"
2929
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
3125
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2930
3126
 
2931
3127
  [[package]]
2932
3128
  name = "rustls-webpki"
2933
- version = "0.102.8"
3129
+ version = "0.103.1"
2934
3130
  source = "registry+https://github.com/rust-lang/crates.io-index"
2935
- checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
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.18"
3140
+ version = "1.0.20"
2945
3141
  source = "registry+https://github.com/rust-lang/crates.io-index"
2946
- checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
3142
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2947
3143
 
2948
3144
  [[package]]
2949
3145
  name = "ryu"
2950
- version = "1.0.18"
3146
+ version = "1.0.20"
2951
3147
  source = "registry+https://github.com/rust-lang/crates.io-index"
2952
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
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.1"
3167
+ version = "0.32.4"
2972
3168
  source = "registry+https://github.com/rust-lang/crates.io-index"
2973
- checksum = "085e94f7d7271c0393ac2d164a39994b1dff1b06bc40cd9a0da04f3d672b0fee"
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.2"
3177
+ version = "0.4.3"
2982
3178
  source = "registry+https://github.com/rust-lang/crates.io-index"
2983
- checksum = "9834af2c4bd8c5162f00c89f1701fb6886119a88062cf76fe842ea9e232b9839"
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.87",
2990
- "thiserror 1.0.68",
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.23"
3191
+ version = "1.0.26"
2996
3192
  source = "registry+https://github.com/rust-lang/crates.io-index"
2997
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
3193
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2998
3194
 
2999
3195
  [[package]]
3000
3196
  name = "serde"
3001
- version = "1.0.216"
3197
+ version = "1.0.219"
3002
3198
  source = "registry+https://github.com/rust-lang/crates.io-index"
3003
- checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
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.216"
3206
+ version = "1.0.219"
3011
3207
  source = "registry+https://github.com/rust-lang/crates.io-index"
3012
- checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
3208
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3013
3209
  dependencies = [
3014
3210
  "proc-macro2",
3015
3211
  "quote",
3016
- "syn 2.0.87",
3212
+ "syn 2.0.100",
3017
3213
  ]
3018
3214
 
3019
3215
  [[package]]
3020
3216
  name = "serde_json"
3021
- version = "1.0.133"
3217
+ version = "1.0.140"
3022
3218
  source = "registry+https://github.com/rust-lang/crates.io-index"
3023
- checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
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.6.0"
3273
+ version = "2.7.0"
3078
3274
  source = "registry+https://github.com/rust-lang/crates.io-index"
3079
- checksum = "1de1d4f81173b03af4c0cbed3c898f6bff5b870e4a7f5d6f4057d62a7a4b686e"
3275
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3080
3276
 
3081
3277
  [[package]]
3082
3278
  name = "siphasher"
3083
- version = "0.3.11"
3279
+ version = "1.0.1"
3084
3280
  source = "registry+https://github.com/rust-lang/crates.io-index"
3085
- checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
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.13.2"
3309
+ version = "1.15.0"
3114
3310
  source = "registry+https://github.com/rust-lang/crates.io-index"
3115
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3311
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3116
3312
 
3117
3313
  [[package]]
3118
3314
  name = "socket2"
3119
- version = "0.5.7"
3315
+ version = "0.5.9"
3120
3316
  source = "registry+https://github.com/rust-lang/crates.io-index"
3121
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
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.87",
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.87"
3376
+ version = "2.0.100"
3193
3377
  source = "registry+https://github.com/rust-lang/crates.io-index"
3194
- checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
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.87",
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.68",
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.43"
3539
+ version = "0.4.44"
3356
3540
  source = "registry+https://github.com/rust-lang/crates.io-index"
3357
- checksum = "c65998313f8e17d0d553d28f91a0df93e4dbbbf770279c7bc21ca0f09ea1a1f6"
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.12.16"
3550
+ version = "0.13.2"
3367
3551
  source = "registry+https://github.com/rust-lang/crates.io-index"
3368
- checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3552
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3369
3553
 
3370
3554
  [[package]]
3371
3555
  name = "tempfile"
3372
- version = "3.14.0"
3556
+ version = "3.19.1"
3373
3557
  source = "registry+https://github.com/rust-lang/crates.io-index"
3374
- checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
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.68"
3569
+ version = "1.0.69"
3386
3570
  source = "registry+https://github.com/rust-lang/crates.io-index"
3387
- checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892"
3571
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3388
3572
  dependencies = [
3389
- "thiserror-impl 1.0.68",
3573
+ "thiserror-impl 1.0.69",
3390
3574
  ]
3391
3575
 
3392
3576
  [[package]]
3393
3577
  name = "thiserror"
3394
- version = "2.0.9"
3578
+ version = "2.0.12"
3395
3579
  source = "registry+https://github.com/rust-lang/crates.io-index"
3396
- checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
3580
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3397
3581
  dependencies = [
3398
- "thiserror-impl 2.0.9",
3582
+ "thiserror-impl 2.0.12",
3399
3583
  ]
3400
3584
 
3401
3585
  [[package]]
3402
3586
  name = "thiserror-impl"
3403
- version = "1.0.68"
3587
+ version = "1.0.69"
3404
3588
  source = "registry+https://github.com/rust-lang/crates.io-index"
3405
- checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e"
3589
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3406
3590
  dependencies = [
3407
3591
  "proc-macro2",
3408
3592
  "quote",
3409
- "syn 2.0.87",
3593
+ "syn 2.0.100",
3410
3594
  ]
3411
3595
 
3412
3596
  [[package]]
3413
3597
  name = "thiserror-impl"
3414
- version = "2.0.9"
3598
+ version = "2.0.12"
3415
3599
  source = "registry+https://github.com/rust-lang/crates.io-index"
3416
- checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
3600
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3417
3601
  dependencies = [
3418
3602
  "proc-macro2",
3419
3603
  "quote",
3420
- "syn 2.0.87",
3604
+ "syn 2.0.100",
3421
3605
  ]
3422
3606
 
3423
3607
  [[package]]
3424
3608
  name = "time"
3425
- version = "0.3.36"
3609
+ version = "0.3.41"
3426
3610
  source = "registry+https://github.com/rust-lang/crates.io-index"
3427
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
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.2"
3624
+ version = "0.1.4"
3441
3625
  source = "registry+https://github.com/rust-lang/crates.io-index"
3442
- checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3626
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3443
3627
 
3444
3628
  [[package]]
3445
3629
  name = "time-macros"
3446
- version = "0.2.18"
3630
+ version = "0.2.22"
3447
3631
  source = "registry+https://github.com/rust-lang/crates.io-index"
3448
- checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
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.8.0"
3660
+ version = "1.9.0"
3477
3661
  source = "registry+https://github.com/rust-lang/crates.io-index"
3478
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
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.41.1"
3675
+ version = "1.44.2"
3492
3676
  source = "registry+https://github.com/rust-lang/crates.io-index"
3493
- checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
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.12"
3692
+ version = "0.7.14"
3509
3693
  source = "registry+https://github.com/rust-lang/crates.io-index"
3510
- checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
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.40"
3705
+ version = "0.1.41"
3522
3706
  source = "registry+https://github.com/rust-lang/crates.io-index"
3523
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
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-core"
3532
- version = "0.1.32"
3716
+ name = "tracing-attributes"
3717
+ version = "0.1.28"
3533
3718
  source = "registry+https://github.com/rust-lang/crates.io-index"
3534
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
3719
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3535
3720
  dependencies = [
3536
- "once_cell",
3721
+ "proc-macro2",
3722
+ "quote",
3723
+ "syn 2.0.100",
3537
3724
  ]
3538
3725
 
3539
3726
  [[package]]
3540
- name = "twox-hash"
3541
- version = "1.6.3"
3727
+ name = "tracing-core"
3728
+ version = "0.1.33"
3542
3729
  source = "registry+https://github.com/rust-lang/crates.io-index"
3543
- checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
3730
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3544
3731
  dependencies = [
3545
- "cfg-if",
3546
- "static_assertions",
3732
+ "once_cell",
3547
3733
  ]
3548
3734
 
3549
3735
  [[package]]
3550
3736
  name = "typenum"
3551
- version = "1.17.0"
3737
+ version = "1.18.0"
3552
3738
  source = "registry+https://github.com/rust-lang/crates.io-index"
3553
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3739
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3554
3740
 
3555
3741
  [[package]]
3556
3742
  name = "unicase"
3557
- version = "2.8.0"
3743
+ version = "2.8.1"
3558
3744
  source = "registry+https://github.com/rust-lang/crates.io-index"
3559
- checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
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.13"
3755
+ version = "1.0.18"
3570
3756
  source = "registry+https://github.com/rust-lang/crates.io-index"
3571
- checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
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.3"
3794
+ version = "0.2.4"
3603
3795
  source = "registry+https://github.com/rust-lang/crates.io-index"
3604
- checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
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.10.1"
3806
+ version = "2.12.1"
3615
3807
  source = "registry+https://github.com/rust-lang/crates.io-index"
3616
- checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
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.3"
3821
+ version = "2.5.4"
3630
3822
  source = "registry+https://github.com/rust-lang/crates.io-index"
3631
- checksum = "8d157f1b96d14500ffdc1f10ba712e780825526c03d9a49b4d0324b0d9113ada"
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.11.0"
3856
+ version = "1.16.0"
3665
3857
  source = "registry+https://github.com/rust-lang/crates.io-index"
3666
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
3858
+ checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
3667
3859
  dependencies = [
3668
- "getrandom",
3669
- "rand",
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.11.0"
3870
+ version = "1.16.0"
3677
3871
  source = "registry+https://github.com/rust-lang/crates.io-index"
3678
- checksum = "6b91f57fe13a38d0ce9e28a03463d8d3c2468ed03d75375110ec71d93b449a08"
3872
+ checksum = "72dcd78c4f979627a754f5522cea6e6a25e55139056535fe6e69c506cd64a862"
3679
3873
  dependencies = [
3680
3874
  "proc-macro2",
3681
3875
  "quote",
3682
- "syn 2.0.87",
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 = "wana_kana"
3709
- version = "4.0.0"
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 = "a74666202acfcb4f9b995be2e3e9f7f530deb65e05a1407b8d0b30c9c451238a"
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.11.0+wasi-snapshot-preview1"
3909
+ version = "0.14.2+wasi-0.2.4"
3721
3910
  source = "registry+https://github.com/rust-lang/crates.io-index"
3722
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3911
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3912
+ dependencies = [
3913
+ "wit-bindgen-rt",
3914
+ ]
3723
3915
 
3724
3916
  [[package]]
3725
3917
  name = "wasm-bindgen"
3726
- version = "0.2.95"
3918
+ version = "0.2.100"
3727
3919
  source = "registry+https://github.com/rust-lang/crates.io-index"
3728
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
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.95"
3930
+ version = "0.2.100"
3738
3931
  source = "registry+https://github.com/rust-lang/crates.io-index"
3739
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
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.87",
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.95"
3944
+ version = "0.2.100"
3753
3945
  source = "registry+https://github.com/rust-lang/crates.io-index"
3754
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
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.95"
3954
+ version = "0.2.100"
3763
3955
  source = "registry+https://github.com/rust-lang/crates.io-index"
3764
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
3956
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3765
3957
  dependencies = [
3766
3958
  "proc-macro2",
3767
3959
  "quote",
3768
- "syn 2.0.87",
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.95"
3967
+ version = "0.2.100"
3776
3968
  source = "registry+https://github.com/rust-lang/crates.io-index"
3777
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
3969
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3970
+ dependencies = [
3971
+ "unicode-ident",
3972
+ ]
3778
3973
 
3779
3974
  [[package]]
3780
3975
  name = "web-sys"
3781
- version = "0.3.72"
3976
+ version = "0.3.77"
3782
3977
  source = "registry+https://github.com/rust-lang/crates.io-index"
3783
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
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.6"
3996
+ version = "0.26.8"
3802
3997
  source = "registry+https://github.com/rust-lang/crates.io-index"
3803
- checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958"
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 0.52.6",
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 0.52.6",
3874
- ]
3875
-
3876
- [[package]]
3877
- name = "windows-targets"
3878
- version = "0.48.5"
3879
- source = "registry+https://github.com/rust-lang/crates.io-index"
3880
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3881
- dependencies = [
3882
- "windows_aarch64_gnullvm 0.48.5",
3883
- "windows_aarch64_msvc 0.48.5",
3884
- "windows_i686_gnu 0.48.5",
3885
- "windows_i686_msvc 0.48.5",
3886
- "windows_x86_64_gnu 0.48.5",
3887
- "windows_x86_64_gnullvm 0.48.5",
3888
- "windows_x86_64_msvc 0.48.5",
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 0.52.6",
3898
- "windows_aarch64_msvc 0.52.6",
3899
- "windows_i686_gnu 0.52.6",
4068
+ "windows_aarch64_gnullvm",
4069
+ "windows_aarch64_msvc",
4070
+ "windows_i686_gnu",
3900
4071
  "windows_i686_gnullvm",
3901
- "windows_i686_msvc 0.52.6",
3902
- "windows_x86_64_gnu 0.52.6",
3903
- "windows_x86_64_gnullvm 0.52.6",
3904
- "windows_x86_64_msvc 0.52.6",
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.48.5"
4122
+ version = "0.52.6"
3988
4123
  source = "registry+https://github.com/rust-lang/crates.io-index"
3989
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4124
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3990
4125
 
3991
4126
  [[package]]
3992
- name = "windows_x86_64_msvc"
3993
- version = "0.52.6"
4127
+ name = "wit-bindgen-rt"
4128
+ version = "0.39.0"
3994
4129
  source = "registry+https://github.com/rust-lang/crates.io-index"
3995
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
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.3.1"
4149
+ version = "1.5.0"
4012
4150
  source = "registry+https://github.com/rust-lang/crates.io-index"
4013
- checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
4151
+ checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
4014
4152
  dependencies = [
4015
4153
  "libc",
4016
- "linux-raw-sys",
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.4"
4165
+ version = "0.7.5"
4029
4166
  source = "registry+https://github.com/rust-lang/crates.io-index"
4030
- checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5"
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.4"
4177
+ version = "0.7.5"
4041
4178
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
- checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95"
4179
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4043
4180
  dependencies = [
4044
4181
  "proc-macro2",
4045
4182
  "quote",
4046
- "syn 2.0.87",
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
- "byteorder",
4057
- "zerocopy-derive",
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.87",
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.4"
4229
+ version = "0.1.6"
4074
4230
  source = "registry+https://github.com/rust-lang/crates.io-index"
4075
- checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55"
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.4"
4238
+ version = "0.1.6"
4083
4239
  source = "registry+https://github.com/rust-lang/crates.io-index"
4084
- checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5"
4240
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4085
4241
  dependencies = [
4086
4242
  "proc-macro2",
4087
4243
  "quote",
4088
- "syn 2.0.87",
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.87",
4273
+ "syn 2.0.100",
4118
4274
  ]
4119
4275
 
4120
4276
  [[package]]
4121
4277
  name = "zstd"
4122
- version = "0.13.2"
4278
+ version = "0.13.3"
4123
4279
  source = "registry+https://github.com/rust-lang/crates.io-index"
4124
- checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
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.1"
4287
+ version = "7.2.4"
4132
4288
  source = "registry+https://github.com/rust-lang/crates.io-index"
4133
- checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
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.13+zstd.1.5.6"
4296
+ version = "2.0.15+zstd.1.5.7"
4141
4297
  source = "registry+https://github.com/rust-lang/crates.io-index"
4142
- checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4298
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4143
4299
  dependencies = [
4144
4300
  "cc",
4145
4301
  "pkg-config",