theopendictionary 1.4.0__tar.gz → 2.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of theopendictionary might be problematic. Click here for more details.

Files changed (197) hide show
  1. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/Cargo.lock +1584 -943
  2. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/Cargo.toml +5 -1
  3. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/PKG-INFO +2 -2
  4. theopendictionary-2.0.0/internal/Cargo.toml +16 -0
  5. theopendictionary-2.0.0/internal/src/enum_wrapper.rs +92 -0
  6. theopendictionary-2.0.0/internal/src/lib.rs +9 -0
  7. theopendictionary-2.0.0/internal/src/load.rs +49 -0
  8. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/CHANGELOG.md +81 -0
  9. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/Cargo.toml +46 -22
  10. theopendictionary-1.4.0/lib/src/config/aliases.rs → theopendictionary-2.0.0/lib/src/alias.rs +64 -8
  11. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/compress.rs +3 -3
  12. {theopendictionary-1.4.0/lib/src/config → theopendictionary-2.0.0/lib/src}/config.rs +4 -3
  13. theopendictionary-2.0.0/lib/src/core/compile.rs +98 -0
  14. {theopendictionary-1.4.0/lib/src/core/io → theopendictionary-2.0.0/lib/src/core}/consts.rs +1 -1
  15. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/core/lexicon.rs +2 -2
  16. theopendictionary-2.0.0/lib/src/core/lookup.rs +224 -0
  17. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/core/merge.rs +4 -4
  18. theopendictionary-2.0.0/lib/src/core/mod.rs +14 -0
  19. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/core/preview.rs +2 -2
  20. theopendictionary-2.0.0/lib/src/core/rank.rs +32 -0
  21. {theopendictionary-1.4.0/lib/src/core/io → theopendictionary-2.0.0/lib/src/core}/read.rs +29 -61
  22. theopendictionary-2.0.0/lib/src/core/resolve.rs +14 -0
  23. theopendictionary-1.4.0/lib/src/core/semver.rs → theopendictionary-2.0.0/lib/src/core/version.rs +54 -13
  24. theopendictionary-2.0.0/lib/src/core/write.rs +30 -0
  25. theopendictionary-2.0.0/lib/src/download/download.rs +546 -0
  26. theopendictionary-2.0.0/lib/src/download/metadata.rs +116 -0
  27. theopendictionary-2.0.0/lib/src/download/mod.rs +12 -0
  28. theopendictionary-2.0.0/lib/src/download/options.rs +71 -0
  29. theopendictionary-2.0.0/lib/src/download/remote.rs +48 -0
  30. theopendictionary-2.0.0/lib/src/download/utils.rs +77 -0
  31. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/error.rs +27 -3
  32. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/ext.rs +5 -3
  33. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/html/html.rs +6 -2
  34. theopendictionary-2.0.0/lib/src/format/json/definition.rs +39 -0
  35. theopendictionary-2.0.0/lib/src/format/json/dictionary.rs +36 -0
  36. theopendictionary-2.0.0/lib/src/format/json/entry.rs +36 -0
  37. theopendictionary-2.0.0/lib/src/format/json/entry_ref.rs +13 -0
  38. theopendictionary-2.0.0/lib/src/format/json/etymology.rs +40 -0
  39. theopendictionary-2.0.0/lib/src/format/json/example.rs +13 -0
  40. theopendictionary-2.0.0/lib/src/format/json/form.rs +17 -0
  41. theopendictionary-2.0.0/lib/src/format/json/group.rs +18 -0
  42. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/json/json.rs +15 -12
  43. theopendictionary-2.0.0/lib/src/format/json/media_url.rs +15 -0
  44. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/json/mod.rs +7 -2
  45. theopendictionary-2.0.0/lib/src/format/json/note.rs +17 -0
  46. theopendictionary-2.0.0/lib/src/format/json/pronunciation.rs +16 -0
  47. theopendictionary-2.0.0/lib/src/format/json/sense.rs +46 -0
  48. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/json/token.rs +15 -10
  49. theopendictionary-2.0.0/lib/src/format/json/translation.rs +11 -0
  50. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/definition.rs +7 -4
  51. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/entry.rs +1 -1
  52. theopendictionary-2.0.0/lib/src/format/md/etymology.rs +29 -0
  53. theopendictionary-2.0.0/lib/src/format/md/example.rs +40 -0
  54. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/group.rs +1 -1
  55. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/md.rs +3 -3
  56. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/mod.rs +1 -0
  57. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/note.rs +7 -4
  58. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/pprint.rs +1 -1
  59. theopendictionary-2.0.0/lib/src/format/md/pronunciation.rs +44 -0
  60. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/sense.rs +2 -2
  61. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/md/utils.rs +2 -4
  62. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/mod.rs +0 -1
  63. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/definitions.rs +1 -1
  64. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/dictionaries.rs +2 -2
  65. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/entries.rs +1 -1
  66. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/etymologies.rs +10 -3
  67. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/examples.rs +7 -3
  68. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/groups.rs +1 -1
  69. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/mod.rs +1 -0
  70. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/notes.rs +1 -1
  71. theopendictionary-2.0.0/lib/src/format/sql/pronunciations.rs +133 -0
  72. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/senses.rs +2 -2
  73. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/sql.rs +3 -1
  74. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/sql/utils.rs +6 -6
  75. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/xml.rs +2 -2
  76. theopendictionary-2.0.0/lib/src/fs.rs +35 -0
  77. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/lib.rs +15 -2
  78. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/md.rs +6 -9
  79. theopendictionary-2.0.0/lib/src/odict.rs +48 -0
  80. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/definition.rs +4 -0
  81. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/dictionary.rs +27 -28
  82. theopendictionary-2.0.0/lib/src/schema/entry.rs +85 -0
  83. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/entry_ref.rs +7 -0
  84. theopendictionary-2.0.0/lib/src/schema/enums.rs +33 -0
  85. theopendictionary-2.0.0/lib/src/schema/etymology.rs +56 -0
  86. theopendictionary-2.0.0/lib/src/schema/example.rs +19 -0
  87. theopendictionary-2.0.0/lib/src/schema/form.rs +23 -0
  88. theopendictionary-2.0.0/lib/src/schema/form_kind.rs +15 -0
  89. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/group.rs +5 -0
  90. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/id.rs +13 -3
  91. theopendictionary-2.0.0/lib/src/schema/media_url.rs +55 -0
  92. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/mod.rs +12 -0
  93. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/note.rs +8 -3
  94. theopendictionary-2.0.0/lib/src/schema/pos.rs +259 -0
  95. theopendictionary-2.0.0/lib/src/schema/pronunciation.rs +19 -0
  96. theopendictionary-2.0.0/lib/src/schema/pronunciation_kind.rs +19 -0
  97. theopendictionary-2.0.0/lib/src/schema/sense.rs +74 -0
  98. {theopendictionary-1.4.0/lib/src/models → theopendictionary-2.0.0/lib/src/schema}/serializable.rs +28 -1
  99. theopendictionary-2.0.0/lib/src/schema/translation.rs +13 -0
  100. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/search/charabia.rs +5 -27
  101. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/search/constants.rs +1 -1
  102. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/search/index.rs +5 -5
  103. theopendictionary-2.0.0/lib/src/search/mod.rs +7 -0
  104. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/search/search.rs +12 -5
  105. {theopendictionary-1.4.0/lib/src/core/lookup → theopendictionary-2.0.0/lib/src}/tokenize.rs +7 -16
  106. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/pyproject.toml +4 -1
  107. theopendictionary-2.0.0/python/CHANGELOG.md +107 -0
  108. theopendictionary-2.0.0/python/Cargo.toml +21 -0
  109. theopendictionary-2.0.0/python/src/dictionary.rs +227 -0
  110. theopendictionary-2.0.0/python/src/lib.rs +37 -0
  111. theopendictionary-2.0.0/python/src/types/definition.rs +18 -0
  112. theopendictionary-2.0.0/python/src/types/entry.rs +40 -0
  113. theopendictionary-2.0.0/python/src/types/enums.rs +34 -0
  114. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/python/src/types/etymology.rs +12 -16
  115. theopendictionary-2.0.0/python/src/types/example.rs +30 -0
  116. theopendictionary-2.0.0/python/src/types/form.rs +27 -0
  117. theopendictionary-2.0.0/python/src/types/group.rs +16 -0
  118. theopendictionary-2.0.0/python/src/types/index.rs +61 -0
  119. theopendictionary-2.0.0/python/src/types/load.rs +52 -0
  120. theopendictionary-2.0.0/python/src/types/lookup.rs +136 -0
  121. theopendictionary-2.0.0/python/src/types/media_url.rs +46 -0
  122. theopendictionary-2.0.0/python/src/types/mod.rs +33 -0
  123. theopendictionary-2.0.0/python/src/types/note.rs +16 -0
  124. theopendictionary-2.0.0/python/src/types/pronunciation.rs +29 -0
  125. theopendictionary-2.0.0/python/src/types/save.rs +61 -0
  126. theopendictionary-2.0.0/python/src/types/search.rs +76 -0
  127. theopendictionary-2.0.0/python/src/types/sense.rs +45 -0
  128. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/python/src/types/token.rs +7 -7
  129. theopendictionary-2.0.0/python/src/types/tokenize.rs +53 -0
  130. theopendictionary-2.0.0/python/src/types/translation.rs +21 -0
  131. theopendictionary-2.0.0/python/tasks.toml +24 -0
  132. theopendictionary-2.0.0/python/tests/__snapshots__/test_lookup.ambr +26 -0
  133. theopendictionary-2.0.0/python/tests/__snapshots__/test_tokenize.ambr +11 -0
  134. theopendictionary-2.0.0/python/tests/test_forms.py +75 -0
  135. theopendictionary-2.0.0/python/tests/test_lemma.py +86 -0
  136. theopendictionary-2.0.0/python/tests/test_load_options.py +223 -0
  137. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/python/tests/test_lookup.py +45 -10
  138. theopendictionary-2.0.0/python/tests/test_options.py +282 -0
  139. theopendictionary-2.0.0/python/tests/test_pronunciation.py +206 -0
  140. theopendictionary-2.0.0/python/tests/test_rank.py +140 -0
  141. theopendictionary-2.0.0/python/tests/test_save_options.py +284 -0
  142. theopendictionary-2.0.0/python/tests/test_tokenize.py +255 -0
  143. theopendictionary-1.4.0/lib/src/config/mod.rs +0 -24
  144. theopendictionary-1.4.0/lib/src/core/io/mod.rs +0 -6
  145. theopendictionary-1.4.0/lib/src/core/io/write.rs +0 -173
  146. theopendictionary-1.4.0/lib/src/core/lookup/mod.rs +0 -145
  147. theopendictionary-1.4.0/lib/src/core/lookup/options.rs +0 -43
  148. theopendictionary-1.4.0/lib/src/core/mod.rs +0 -17
  149. theopendictionary-1.4.0/lib/src/core/resolve.rs +0 -18
  150. theopendictionary-1.4.0/lib/src/format/json/definition.rs +0 -37
  151. theopendictionary-1.4.0/lib/src/format/json/dictionary.rs +0 -36
  152. theopendictionary-1.4.0/lib/src/format/json/entry.rs +0 -51
  153. theopendictionary-1.4.0/lib/src/format/json/entry_ref.rs +0 -29
  154. theopendictionary-1.4.0/lib/src/format/json/etymology.rs +0 -46
  155. theopendictionary-1.4.0/lib/src/format/json/form.rs +0 -30
  156. theopendictionary-1.4.0/lib/src/format/json/group.rs +0 -35
  157. theopendictionary-1.4.0/lib/src/format/json/note.rs +0 -30
  158. theopendictionary-1.4.0/lib/src/format/json/sense.rs +0 -48
  159. theopendictionary-1.4.0/lib/src/format/json/utils.rs +0 -14
  160. theopendictionary-1.4.0/lib/src/format/md/etymology.rs +0 -19
  161. theopendictionary-1.4.0/lib/src/format/md/example.rs +0 -20
  162. theopendictionary-1.4.0/lib/src/fs.rs +0 -11
  163. theopendictionary-1.4.0/lib/src/models/entry.rs +0 -53
  164. theopendictionary-1.4.0/lib/src/models/etymology.rs +0 -58
  165. theopendictionary-1.4.0/lib/src/models/example.rs +0 -8
  166. theopendictionary-1.4.0/lib/src/models/form.rs +0 -60
  167. theopendictionary-1.4.0/lib/src/models/pos.rs +0 -290
  168. theopendictionary-1.4.0/lib/src/models/sense.rs +0 -23
  169. theopendictionary-1.4.0/lib/src/search/mod.rs +0 -9
  170. theopendictionary-1.4.0/python/.gitignore +0 -72
  171. theopendictionary-1.4.0/python/CHANGELOG.md +0 -53
  172. theopendictionary-1.4.0/python/Cargo.toml +0 -20
  173. theopendictionary-1.4.0/python/requirements.txt +0 -5
  174. theopendictionary-1.4.0/python/setup.cfg +0 -2
  175. theopendictionary-1.4.0/python/src/dictionary.rs +0 -246
  176. theopendictionary-1.4.0/python/src/lib.rs +0 -14
  177. theopendictionary-1.4.0/python/src/types/definition.rs +0 -34
  178. theopendictionary-1.4.0/python/src/types/entry.rs +0 -61
  179. theopendictionary-1.4.0/python/src/types/example.rs +0 -18
  180. theopendictionary-1.4.0/python/src/types/form.rs +0 -42
  181. theopendictionary-1.4.0/python/src/types/form_kind.rs +0 -52
  182. theopendictionary-1.4.0/python/src/types/group.rs +0 -33
  183. theopendictionary-1.4.0/python/src/types/lookup.rs +0 -56
  184. theopendictionary-1.4.0/python/src/types/mod.rs +0 -17
  185. theopendictionary-1.4.0/python/src/types/note.rs +0 -30
  186. theopendictionary-1.4.0/python/src/types/sense.rs +0 -30
  187. theopendictionary-1.4.0/python/tasks.toml +0 -32
  188. theopendictionary-1.4.0/python/tests/__snapshots__/test_lookup.ambr +0 -26
  189. theopendictionary-1.4.0/python/tests/__snapshots__/test_tokenize.ambr +0 -11
  190. theopendictionary-1.4.0/python/tests/test_forms.py +0 -66
  191. theopendictionary-1.4.0/python/tests/test_lemma.py +0 -74
  192. theopendictionary-1.4.0/python/tests/test_tokenize.py +0 -121
  193. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/report.json +0 -0
  194. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/format/html/mod.rs +0 -0
  195. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/src/search/schema.rs +0 -0
  196. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/lib/tasks.toml +0 -0
  197. {theopendictionary-1.4.0 → theopendictionary-2.0.0}/python/src/utils.rs +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.9.0",
11
+ "bitflags 2.9.4",
12
12
  "bytes",
13
13
  "futures-core",
14
14
  "futures-sink",
@@ -21,26 +21,26 @@ dependencies = [
21
21
 
22
22
  [[package]]
23
23
  name = "actix-http"
24
- version = "3.10.0"
24
+ version = "3.11.1"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "0fa882656b67966045e4152c634051e70346939fced7117d5f0b52146a7c74c9"
26
+ checksum = "44cceded2fb55f3c4b67068fa64962e2ca59614edc5b03167de9ff82ae803da0"
27
27
  dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
30
30
  "actix-service",
31
31
  "actix-utils",
32
32
  "base64",
33
- "bitflags 2.9.0",
33
+ "bitflags 2.9.4",
34
34
  "brotli",
35
35
  "bytes",
36
36
  "bytestring",
37
37
  "derive_more",
38
38
  "encoding_rs",
39
39
  "flate2",
40
- "foldhash",
40
+ "foldhash 0.1.5",
41
41
  "futures-core",
42
- "h2",
43
- "http",
42
+ "h2 0.3.27",
43
+ "http 0.2.12",
44
44
  "httparse",
45
45
  "httpdate",
46
46
  "itoa",
@@ -49,7 +49,7 @@ dependencies = [
49
49
  "mime",
50
50
  "percent-encoding",
51
51
  "pin-project-lite",
52
- "rand 0.9.1",
52
+ "rand 0.9.2",
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.100",
68
+ "syn 2.0.106",
69
69
  ]
70
70
 
71
71
  [[package]]
@@ -76,7 +76,7 @@ checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
76
76
  dependencies = [
77
77
  "bytestring",
78
78
  "cfg-if",
79
- "http",
79
+ "http 0.2.12",
80
80
  "regex",
81
81
  "regex-lite",
82
82
  "serde",
@@ -85,9 +85,9 @@ dependencies = [
85
85
 
86
86
  [[package]]
87
87
  name = "actix-rt"
88
- version = "2.10.0"
88
+ version = "2.11.0"
89
89
  source = "registry+https://github.com/rust-lang/crates.io-index"
90
- checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
90
+ checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63"
91
91
  dependencies = [
92
92
  "futures-core",
93
93
  "tokio",
@@ -95,9 +95,9 @@ dependencies = [
95
95
 
96
96
  [[package]]
97
97
  name = "actix-server"
98
- version = "2.5.1"
98
+ version = "2.6.0"
99
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
100
- checksum = "6398974fd4284f4768af07965701efbbb5fdc0616bff20cade1bb14b77675e24"
100
+ checksum = "a65064ea4a457eaf07f2fba30b4c695bf43b721790e9530d26cb6f9019ff7502"
101
101
  dependencies = [
102
102
  "actix-rt",
103
103
  "actix-service",
@@ -105,7 +105,7 @@ dependencies = [
105
105
  "futures-core",
106
106
  "futures-util",
107
107
  "mio",
108
- "socket2",
108
+ "socket2 0.5.10",
109
109
  "tokio",
110
110
  "tracing",
111
111
  ]
@@ -132,9 +132,9 @@ dependencies = [
132
132
 
133
133
  [[package]]
134
134
  name = "actix-web"
135
- version = "4.10.2"
135
+ version = "4.11.0"
136
136
  source = "registry+https://github.com/rust-lang/crates.io-index"
137
- checksum = "f2e3b15b3dc6c6ed996e4032389e9849d4ab002b1e92fbfe85b5f307d1479b4d"
137
+ checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea"
138
138
  dependencies = [
139
139
  "actix-codec",
140
140
  "actix-http",
@@ -151,7 +151,7 @@ dependencies = [
151
151
  "cookie",
152
152
  "derive_more",
153
153
  "encoding_rs",
154
- "foldhash",
154
+ "foldhash 0.1.5",
155
155
  "futures-core",
156
156
  "futures-util",
157
157
  "impl-more",
@@ -167,7 +167,7 @@ dependencies = [
167
167
  "serde_json",
168
168
  "serde_urlencoded",
169
169
  "smallvec",
170
- "socket2",
170
+ "socket2 0.5.10",
171
171
  "time",
172
172
  "tracing",
173
173
  "url",
@@ -182,23 +182,14 @@ dependencies = [
182
182
  "actix-router",
183
183
  "proc-macro2",
184
184
  "quote",
185
- "syn 2.0.100",
186
- ]
187
-
188
- [[package]]
189
- name = "addr2line"
190
- version = "0.24.2"
191
- source = "registry+https://github.com/rust-lang/crates.io-index"
192
- checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
193
- dependencies = [
194
- "gimli",
185
+ "syn 2.0.106",
195
186
  ]
196
187
 
197
188
  [[package]]
198
189
  name = "adler2"
199
- version = "2.0.0"
190
+ version = "2.0.1"
200
191
  source = "registry+https://github.com/rust-lang/crates.io-index"
201
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
192
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
202
193
 
203
194
  [[package]]
204
195
  name = "adler32"
@@ -208,14 +199,14 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
208
199
 
209
200
  [[package]]
210
201
  name = "ahash"
211
- version = "0.8.11"
202
+ version = "0.8.12"
212
203
  source = "registry+https://github.com/rust-lang/crates.io-index"
213
- checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
204
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
214
205
  dependencies = [
215
206
  "cfg-if",
216
207
  "once_cell",
217
208
  "version_check",
218
- "zerocopy 0.7.35",
209
+ "zerocopy",
219
210
  ]
220
211
 
221
212
  [[package]]
@@ -256,9 +247,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
256
247
 
257
248
  [[package]]
258
249
  name = "anstream"
259
- version = "0.6.18"
250
+ version = "0.6.20"
260
251
  source = "registry+https://github.com/rust-lang/crates.io-index"
261
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
252
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
262
253
  dependencies = [
263
254
  "anstyle",
264
255
  "anstyle-parse",
@@ -271,44 +262,44 @@ dependencies = [
271
262
 
272
263
  [[package]]
273
264
  name = "anstyle"
274
- version = "1.0.10"
265
+ version = "1.0.11"
275
266
  source = "registry+https://github.com/rust-lang/crates.io-index"
276
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
267
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
277
268
 
278
269
  [[package]]
279
270
  name = "anstyle-parse"
280
- version = "0.2.6"
271
+ version = "0.2.7"
281
272
  source = "registry+https://github.com/rust-lang/crates.io-index"
282
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
273
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
283
274
  dependencies = [
284
275
  "utf8parse",
285
276
  ]
286
277
 
287
278
  [[package]]
288
279
  name = "anstyle-query"
289
- version = "1.1.2"
280
+ version = "1.1.4"
290
281
  source = "registry+https://github.com/rust-lang/crates.io-index"
291
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
282
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
292
283
  dependencies = [
293
- "windows-sys 0.59.0",
284
+ "windows-sys 0.60.2",
294
285
  ]
295
286
 
296
287
  [[package]]
297
288
  name = "anstyle-wincon"
298
- version = "3.0.7"
289
+ version = "3.0.10"
299
290
  source = "registry+https://github.com/rust-lang/crates.io-index"
300
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
291
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
301
292
  dependencies = [
302
293
  "anstyle",
303
- "once_cell",
304
- "windows-sys 0.59.0",
294
+ "once_cell_polyfill",
295
+ "windows-sys 0.60.2",
305
296
  ]
306
297
 
307
298
  [[package]]
308
299
  name = "anyhow"
309
- version = "1.0.98"
300
+ version = "1.0.100"
310
301
  source = "registry+https://github.com/rust-lang/crates.io-index"
311
- checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
302
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
312
303
 
313
304
  [[package]]
314
305
  name = "arc-swap"
@@ -322,37 +313,38 @@ version = "0.7.6"
322
313
  source = "registry+https://github.com/rust-lang/crates.io-index"
323
314
  checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
324
315
 
316
+ [[package]]
317
+ name = "assert-json-diff"
318
+ version = "2.0.2"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
321
+ dependencies = [
322
+ "serde",
323
+ "serde_json",
324
+ ]
325
+
325
326
  [[package]]
326
327
  name = "async-trait"
327
- version = "0.1.88"
328
+ version = "0.1.89"
328
329
  source = "registry+https://github.com/rust-lang/crates.io-index"
329
- checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
330
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
330
331
  dependencies = [
331
332
  "proc-macro2",
332
333
  "quote",
333
- "syn 2.0.100",
334
+ "syn 2.0.106",
334
335
  ]
335
336
 
336
337
  [[package]]
337
- name = "autocfg"
338
- version = "1.4.0"
338
+ name = "atomic-waker"
339
+ version = "1.1.2"
339
340
  source = "registry+https://github.com/rust-lang/crates.io-index"
340
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
341
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
341
342
 
342
343
  [[package]]
343
- name = "backtrace"
344
- version = "0.3.74"
344
+ name = "autocfg"
345
+ version = "1.5.0"
345
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
346
- checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
347
- dependencies = [
348
- "addr2line",
349
- "cfg-if",
350
- "libc",
351
- "miniz_oxide",
352
- "object",
353
- "rustc-demangle",
354
- "windows-targets",
355
- ]
347
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
356
348
 
357
349
  [[package]]
358
350
  name = "base64"
@@ -362,11 +354,22 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
362
354
 
363
355
  [[package]]
364
356
  name = "bincode"
365
- version = "1.3.3"
357
+ version = "2.0.1"
366
358
  source = "registry+https://github.com/rust-lang/crates.io-index"
367
- checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
359
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
368
360
  dependencies = [
361
+ "bincode_derive",
369
362
  "serde",
363
+ "unty",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "bincode_derive"
368
+ version = "2.0.1"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
371
+ dependencies = [
372
+ "virtue",
370
373
  ]
371
374
 
372
375
  [[package]]
@@ -377,9 +380,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
377
380
 
378
381
  [[package]]
379
382
  name = "bitflags"
380
- version = "2.9.0"
383
+ version = "2.9.4"
381
384
  source = "registry+https://github.com/rust-lang/crates.io-index"
382
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
385
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
383
386
 
384
387
  [[package]]
385
388
  name = "bitpacking"
@@ -399,11 +402,36 @@ dependencies = [
399
402
  "generic-array",
400
403
  ]
401
404
 
405
+ [[package]]
406
+ name = "bon"
407
+ version = "3.7.1"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "537c317ddf588aab15c695bf92cf55dec159b93221c074180ca3e0e5a94da415"
410
+ dependencies = [
411
+ "bon-macros",
412
+ "rustversion",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "bon-macros"
417
+ version = "3.7.1"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "ca5abbf2d4a4c6896197c9de13d6d7cb7eff438c63dacde1dde980569cb00248"
420
+ dependencies = [
421
+ "darling 0.21.3",
422
+ "ident_case",
423
+ "prettyplease",
424
+ "proc-macro2",
425
+ "quote",
426
+ "rustversion",
427
+ "syn 2.0.106",
428
+ ]
429
+
402
430
  [[package]]
403
431
  name = "brotli"
404
- version = "7.0.0"
432
+ version = "8.0.2"
405
433
  source = "registry+https://github.com/rust-lang/crates.io-index"
406
- checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
434
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
407
435
  dependencies = [
408
436
  "alloc-no-stdlib",
409
437
  "alloc-stdlib",
@@ -412,9 +440,9 @@ dependencies = [
412
440
 
413
441
  [[package]]
414
442
  name = "brotli-decompressor"
415
- version = "4.0.3"
443
+ version = "5.0.0"
416
444
  source = "registry+https://github.com/rust-lang/crates.io-index"
417
- checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
445
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
418
446
  dependencies = [
419
447
  "alloc-no-stdlib",
420
448
  "alloc-stdlib",
@@ -422,9 +450,9 @@ dependencies = [
422
450
 
423
451
  [[package]]
424
452
  name = "bumpalo"
425
- version = "3.17.0"
453
+ version = "3.19.0"
426
454
  source = "registry+https://github.com/rust-lang/crates.io-index"
427
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
455
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
428
456
 
429
457
  [[package]]
430
458
  name = "bytecheck"
@@ -446,7 +474,7 @@ checksum = "efb7846e0cb180355c2dec69e721edafa36919850f1a9f52ffba4ebc0393cb71"
446
474
  dependencies = [
447
475
  "proc-macro2",
448
476
  "quote",
449
- "syn 2.0.100",
477
+ "syn 2.0.106",
450
478
  ]
451
479
 
452
480
  [[package]]
@@ -478,10 +506,11 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
478
506
 
479
507
  [[package]]
480
508
  name = "cc"
481
- version = "1.2.19"
509
+ version = "1.2.35"
482
510
  source = "registry+https://github.com/rust-lang/crates.io-index"
483
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
511
+ checksum = "590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3"
484
512
  dependencies = [
513
+ "find-msvc-tools",
485
514
  "jobserver",
486
515
  "libc",
487
516
  "shlex",
@@ -504,15 +533,21 @@ checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
504
533
 
505
534
  [[package]]
506
535
  name = "cfg-if"
507
- version = "1.0.0"
536
+ version = "1.0.3"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
539
+
540
+ [[package]]
541
+ name = "cfg_aliases"
542
+ version = "0.2.1"
508
543
  source = "registry+https://github.com/rust-lang/crates.io-index"
509
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
544
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
510
545
 
511
546
  [[package]]
512
547
  name = "charabia"
513
- version = "0.9.3"
548
+ version = "0.9.7"
514
549
  source = "registry+https://github.com/rust-lang/crates.io-index"
515
- checksum = "650d52f87a36472ea1c803dee49d6bfd23d426efa9363e2f4c4a0e6a236d3407"
550
+ checksum = "7c2f456825b7f15eac01a1cae40c12c3f55e931d4327e6e4fa59508d664e9568"
516
551
  dependencies = [
517
552
  "aho-corasick",
518
553
  "csv",
@@ -557,9 +592,9 @@ dependencies = [
557
592
 
558
593
  [[package]]
559
594
  name = "clap"
560
- version = "4.5.36"
595
+ version = "4.5.49"
561
596
  source = "registry+https://github.com/rust-lang/crates.io-index"
562
- checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
597
+ checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f"
563
598
  dependencies = [
564
599
  "clap_builder",
565
600
  "clap_derive",
@@ -567,39 +602,39 @@ dependencies = [
567
602
 
568
603
  [[package]]
569
604
  name = "clap_builder"
570
- version = "4.5.36"
605
+ version = "4.5.49"
571
606
  source = "registry+https://github.com/rust-lang/crates.io-index"
572
- checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
607
+ checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730"
573
608
  dependencies = [
574
609
  "anstream",
575
610
  "anstyle",
576
611
  "clap_lex",
577
- "strsim",
612
+ "strsim 0.11.1",
578
613
  ]
579
614
 
580
615
  [[package]]
581
616
  name = "clap_derive"
582
- version = "4.5.32"
617
+ version = "4.5.49"
583
618
  source = "registry+https://github.com/rust-lang/crates.io-index"
584
- checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
619
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
585
620
  dependencies = [
586
621
  "heck 0.5.0",
587
622
  "proc-macro2",
588
623
  "quote",
589
- "syn 2.0.100",
624
+ "syn 2.0.106",
590
625
  ]
591
626
 
592
627
  [[package]]
593
628
  name = "clap_lex"
594
- version = "0.7.4"
629
+ version = "0.7.5"
595
630
  source = "registry+https://github.com/rust-lang/crates.io-index"
596
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
631
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
597
632
 
598
633
  [[package]]
599
634
  name = "colorchoice"
600
- version = "1.0.3"
635
+ version = "1.0.4"
601
636
  source = "registry+https://github.com/rust-lang/crates.io-index"
602
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
637
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
603
638
 
604
639
  [[package]]
605
640
  name = "console"
@@ -610,15 +645,27 @@ dependencies = [
610
645
  "encode_unicode",
611
646
  "libc",
612
647
  "once_cell",
613
- "unicode-width 0.2.0",
614
648
  "windows-sys 0.59.0",
615
649
  ]
616
650
 
651
+ [[package]]
652
+ name = "console"
653
+ version = "0.16.1"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
656
+ dependencies = [
657
+ "encode_unicode",
658
+ "libc",
659
+ "once_cell",
660
+ "unicode-width",
661
+ "windows-sys 0.61.0",
662
+ ]
663
+
617
664
  [[package]]
618
665
  name = "convert_case"
619
- version = "0.6.0"
666
+ version = "0.8.0"
620
667
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
- checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
668
+ checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
622
669
  dependencies = [
623
670
  "unicode-segmentation",
624
671
  ]
@@ -654,47 +701,45 @@ dependencies = [
654
701
 
655
702
  [[package]]
656
703
  name = "crc32fast"
657
- version = "1.4.2"
704
+ version = "1.5.0"
658
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
659
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
706
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
660
707
  dependencies = [
661
708
  "cfg-if",
662
709
  ]
663
710
 
664
711
  [[package]]
665
712
  name = "criterion"
666
- version = "0.5.1"
713
+ version = "0.7.0"
667
714
  source = "registry+https://github.com/rust-lang/crates.io-index"
668
- checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
715
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
669
716
  dependencies = [
670
717
  "anes",
671
718
  "cast",
672
719
  "ciborium",
673
720
  "clap",
674
721
  "criterion-plot",
675
- "is-terminal",
676
- "itertools 0.10.5",
722
+ "itertools 0.13.0",
677
723
  "num-traits",
678
- "once_cell",
679
724
  "oorandom",
680
725
  "plotters",
681
726
  "rayon",
682
727
  "regex",
683
728
  "serde",
684
- "serde_derive",
685
729
  "serde_json",
686
730
  "tinytemplate",
731
+ "tokio",
687
732
  "walkdir",
688
733
  ]
689
734
 
690
735
  [[package]]
691
736
  name = "criterion-plot"
692
- version = "0.5.0"
737
+ version = "0.6.0"
693
738
  source = "registry+https://github.com/rust-lang/crates.io-index"
694
- checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
739
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
695
740
  dependencies = [
696
741
  "cast",
697
- "itertools 0.10.5",
742
+ "itertools 0.13.0",
698
743
  ]
699
744
 
700
745
  [[package]]
@@ -733,9 +778,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
733
778
 
734
779
  [[package]]
735
780
  name = "crunchy"
736
- version = "0.2.3"
781
+ version = "0.2.4"
737
782
  source = "registry+https://github.com/rust-lang/crates.io-index"
738
- checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
783
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
739
784
 
740
785
  [[package]]
741
786
  name = "crypto-common"
@@ -770,12 +815,28 @@ dependencies = [
770
815
 
771
816
  [[package]]
772
817
  name = "ctor"
773
- version = "0.2.9"
818
+ version = "0.5.0"
774
819
  source = "registry+https://github.com/rust-lang/crates.io-index"
775
- checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
820
+ checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb"
776
821
  dependencies = [
777
- "quote",
778
- "syn 2.0.100",
822
+ "ctor-proc-macro",
823
+ "dtor",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "ctor-proc-macro"
828
+ version = "0.0.6"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
831
+
832
+ [[package]]
833
+ name = "darling"
834
+ version = "0.14.4"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
837
+ dependencies = [
838
+ "darling_core 0.14.4",
839
+ "darling_macro 0.14.4",
779
840
  ]
780
841
 
781
842
  [[package]]
@@ -784,8 +845,32 @@ version = "0.20.11"
784
845
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
846
  checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
786
847
  dependencies = [
787
- "darling_core",
788
- "darling_macro",
848
+ "darling_core 0.20.11",
849
+ "darling_macro 0.20.11",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "darling"
854
+ version = "0.21.3"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
857
+ dependencies = [
858
+ "darling_core 0.21.3",
859
+ "darling_macro 0.21.3",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "darling_core"
864
+ version = "0.14.4"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
867
+ dependencies = [
868
+ "fnv",
869
+ "ident_case",
870
+ "proc-macro2",
871
+ "quote",
872
+ "strsim 0.10.0",
873
+ "syn 1.0.109",
789
874
  ]
790
875
 
791
876
  [[package]]
@@ -798,8 +883,33 @@ dependencies = [
798
883
  "ident_case",
799
884
  "proc-macro2",
800
885
  "quote",
801
- "strsim",
802
- "syn 2.0.100",
886
+ "strsim 0.11.1",
887
+ "syn 2.0.106",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "darling_core"
892
+ version = "0.21.3"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
895
+ dependencies = [
896
+ "fnv",
897
+ "ident_case",
898
+ "proc-macro2",
899
+ "quote",
900
+ "strsim 0.11.1",
901
+ "syn 2.0.106",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "darling_macro"
906
+ version = "0.14.4"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
909
+ dependencies = [
910
+ "darling_core 0.14.4",
911
+ "quote",
912
+ "syn 1.0.109",
803
913
  ]
804
914
 
805
915
  [[package]]
@@ -808,9 +918,20 @@ version = "0.20.11"
808
918
  source = "registry+https://github.com/rust-lang/crates.io-index"
809
919
  checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
810
920
  dependencies = [
811
- "darling_core",
921
+ "darling_core 0.20.11",
812
922
  "quote",
813
- "syn 2.0.100",
923
+ "syn 2.0.106",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "darling_macro"
928
+ version = "0.21.3"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
931
+ dependencies = [
932
+ "darling_core 0.21.3",
933
+ "quote",
934
+ "syn 2.0.106",
814
935
  ]
815
936
 
816
937
  [[package]]
@@ -819,11 +940,28 @@ version = "0.3.7"
819
940
  source = "registry+https://github.com/rust-lang/crates.io-index"
820
941
  checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
821
942
 
943
+ [[package]]
944
+ name = "deadpool"
945
+ version = "0.12.2"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "5ed5957ff93768adf7a65ab167a17835c3d2c3c50d084fe305174c112f468e2f"
948
+ dependencies = [
949
+ "deadpool-runtime",
950
+ "num_cpus",
951
+ "tokio",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "deadpool-runtime"
956
+ version = "0.1.4"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
959
+
822
960
  [[package]]
823
961
  name = "deranged"
824
- version = "0.4.0"
962
+ version = "0.5.3"
825
963
  source = "registry+https://github.com/rust-lang/crates.io-index"
826
- checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
964
+ checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc"
827
965
  dependencies = [
828
966
  "powerfmt",
829
967
  "serde",
@@ -844,10 +982,10 @@ version = "0.20.2"
844
982
  source = "registry+https://github.com/rust-lang/crates.io-index"
845
983
  checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
846
984
  dependencies = [
847
- "darling",
985
+ "darling 0.20.11",
848
986
  "proc-macro2",
849
987
  "quote",
850
- "syn 2.0.100",
988
+ "syn 2.0.106",
851
989
  ]
852
990
 
853
991
  [[package]]
@@ -857,7 +995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
857
995
  checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
858
996
  dependencies = [
859
997
  "derive_builder_core",
860
- "syn 2.0.100",
998
+ "syn 2.0.106",
861
999
  ]
862
1000
 
863
1001
  [[package]]
@@ -877,7 +1015,7 @@ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
877
1015
  dependencies = [
878
1016
  "proc-macro2",
879
1017
  "quote",
880
- "syn 2.0.100",
1018
+ "syn 2.0.106",
881
1019
  "unicode-xid",
882
1020
  ]
883
1021
 
@@ -909,7 +1047,7 @@ dependencies = [
909
1047
  "libc",
910
1048
  "option-ext",
911
1049
  "redox_users",
912
- "windows-sys 0.59.0",
1050
+ "windows-sys 0.61.0",
913
1051
  ]
914
1052
 
915
1053
  [[package]]
@@ -920,14 +1058,29 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
920
1058
  dependencies = [
921
1059
  "proc-macro2",
922
1060
  "quote",
923
- "syn 2.0.100",
1061
+ "syn 2.0.106",
924
1062
  ]
925
1063
 
926
1064
  [[package]]
927
1065
  name = "downcast-rs"
928
- version = "1.2.1"
1066
+ version = "2.0.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
1069
+
1070
+ [[package]]
1071
+ name = "dtor"
1072
+ version = "0.1.0"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934"
1075
+ dependencies = [
1076
+ "dtor-proc-macro",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "dtor-proc-macro"
1081
+ version = "0.0.6"
929
1082
  source = "registry+https://github.com/rust-lang/crates.io-index"
930
- checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
1083
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
931
1084
 
932
1085
  [[package]]
933
1086
  name = "either"
@@ -1054,12 +1207,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1054
1207
 
1055
1208
  [[package]]
1056
1209
  name = "errno"
1057
- version = "0.3.11"
1210
+ version = "0.3.13"
1058
1211
  source = "registry+https://github.com/rust-lang/crates.io-index"
1059
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
1212
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
1060
1213
  dependencies = [
1061
1214
  "libc",
1062
- "windows-sys 0.59.0",
1215
+ "windows-sys 0.60.2",
1063
1216
  ]
1064
1217
 
1065
1218
  [[package]]
@@ -1076,21 +1229,27 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1076
1229
 
1077
1230
  [[package]]
1078
1231
  name = "filetime"
1079
- version = "0.2.25"
1232
+ version = "0.2.26"
1080
1233
  source = "registry+https://github.com/rust-lang/crates.io-index"
1081
- checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
1234
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
1082
1235
  dependencies = [
1083
1236
  "cfg-if",
1084
1237
  "libc",
1085
1238
  "libredox",
1086
- "windows-sys 0.59.0",
1239
+ "windows-sys 0.60.2",
1087
1240
  ]
1088
1241
 
1242
+ [[package]]
1243
+ name = "find-msvc-tools"
1244
+ version = "0.1.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650"
1247
+
1089
1248
  [[package]]
1090
1249
  name = "flate2"
1091
- version = "1.1.1"
1250
+ version = "1.1.2"
1092
1251
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
1252
+ checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
1094
1253
  dependencies = [
1095
1254
  "crc32fast",
1096
1255
  "miniz_oxide",
@@ -1108,23 +1267,29 @@ version = "0.1.5"
1108
1267
  source = "registry+https://github.com/rust-lang/crates.io-index"
1109
1268
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1110
1269
 
1270
+ [[package]]
1271
+ name = "foldhash"
1272
+ version = "0.2.0"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1275
+
1111
1276
  [[package]]
1112
1277
  name = "form_urlencoded"
1113
- version = "1.2.1"
1278
+ version = "1.2.2"
1114
1279
  source = "registry+https://github.com/rust-lang/crates.io-index"
1115
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1280
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1116
1281
  dependencies = [
1117
1282
  "percent-encoding",
1118
1283
  ]
1119
1284
 
1120
1285
  [[package]]
1121
1286
  name = "fs4"
1122
- version = "0.8.4"
1287
+ version = "0.13.1"
1123
1288
  source = "registry+https://github.com/rust-lang/crates.io-index"
1124
- checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
1289
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
1125
1290
  dependencies = [
1126
- "rustix 0.38.44",
1127
- "windows-sys 0.52.0",
1291
+ "rustix",
1292
+ "windows-sys 0.59.0",
1128
1293
  ]
1129
1294
 
1130
1295
  [[package]]
@@ -1133,12 +1298,65 @@ version = "0.4.7"
1133
1298
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
1299
  checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a"
1135
1300
 
1301
+ [[package]]
1302
+ name = "futures"
1303
+ version = "0.3.31"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1306
+ dependencies = [
1307
+ "futures-channel",
1308
+ "futures-core",
1309
+ "futures-executor",
1310
+ "futures-io",
1311
+ "futures-sink",
1312
+ "futures-task",
1313
+ "futures-util",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "futures-channel"
1318
+ version = "0.3.31"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1321
+ dependencies = [
1322
+ "futures-core",
1323
+ "futures-sink",
1324
+ ]
1325
+
1136
1326
  [[package]]
1137
1327
  name = "futures-core"
1138
1328
  version = "0.3.31"
1139
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1140
1330
  checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1141
1331
 
1332
+ [[package]]
1333
+ name = "futures-executor"
1334
+ version = "0.3.31"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1337
+ dependencies = [
1338
+ "futures-core",
1339
+ "futures-task",
1340
+ "futures-util",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "futures-io"
1345
+ version = "0.3.31"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1348
+
1349
+ [[package]]
1350
+ name = "futures-macro"
1351
+ version = "0.3.31"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1354
+ dependencies = [
1355
+ "proc-macro2",
1356
+ "quote",
1357
+ "syn 2.0.106",
1358
+ ]
1359
+
1142
1360
  [[package]]
1143
1361
  name = "futures-sink"
1144
1362
  version = "0.3.31"
@@ -1157,10 +1375,16 @@ version = "0.3.31"
1157
1375
  source = "registry+https://github.com/rust-lang/crates.io-index"
1158
1376
  checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1159
1377
  dependencies = [
1378
+ "futures-channel",
1160
1379
  "futures-core",
1380
+ "futures-io",
1381
+ "futures-macro",
1382
+ "futures-sink",
1161
1383
  "futures-task",
1384
+ "memchr",
1162
1385
  "pin-project-lite",
1163
1386
  "pin-utils",
1387
+ "slab",
1164
1388
  ]
1165
1389
 
1166
1390
  [[package]]
@@ -1184,60 +1408,77 @@ dependencies = [
1184
1408
 
1185
1409
  [[package]]
1186
1410
  name = "getopts"
1187
- version = "0.2.21"
1411
+ version = "0.2.24"
1188
1412
  source = "registry+https://github.com/rust-lang/crates.io-index"
1189
- checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
1413
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
1190
1414
  dependencies = [
1191
- "unicode-width 0.1.14",
1415
+ "unicode-width",
1192
1416
  ]
1193
1417
 
1194
1418
  [[package]]
1195
1419
  name = "getrandom"
1196
- version = "0.2.15"
1420
+ version = "0.2.16"
1197
1421
  source = "registry+https://github.com/rust-lang/crates.io-index"
1198
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1422
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1199
1423
  dependencies = [
1200
1424
  "cfg-if",
1425
+ "js-sys",
1201
1426
  "libc",
1202
- "wasi 0.11.0+wasi-snapshot-preview1",
1427
+ "wasi 0.11.1+wasi-snapshot-preview1",
1428
+ "wasm-bindgen",
1203
1429
  ]
1204
1430
 
1205
1431
  [[package]]
1206
1432
  name = "getrandom"
1207
- version = "0.3.2"
1433
+ version = "0.3.3"
1208
1434
  source = "registry+https://github.com/rust-lang/crates.io-index"
1209
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1435
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1210
1436
  dependencies = [
1211
1437
  "cfg-if",
1438
+ "js-sys",
1212
1439
  "libc",
1213
1440
  "r-efi",
1214
- "wasi 0.14.2+wasi-0.2.4",
1441
+ "wasi 0.14.3+wasi-0.2.4",
1442
+ "wasm-bindgen",
1215
1443
  ]
1216
1444
 
1217
1445
  [[package]]
1218
- name = "gimli"
1219
- version = "0.31.1"
1446
+ name = "glob"
1447
+ version = "0.3.3"
1220
1448
  source = "registry+https://github.com/rust-lang/crates.io-index"
1221
- checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1449
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1222
1450
 
1223
1451
  [[package]]
1224
- name = "glob"
1225
- version = "0.3.2"
1452
+ name = "h2"
1453
+ version = "0.3.27"
1226
1454
  source = "registry+https://github.com/rust-lang/crates.io-index"
1227
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1455
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1456
+ dependencies = [
1457
+ "bytes",
1458
+ "fnv",
1459
+ "futures-core",
1460
+ "futures-sink",
1461
+ "futures-util",
1462
+ "http 0.2.12",
1463
+ "indexmap",
1464
+ "slab",
1465
+ "tokio",
1466
+ "tokio-util",
1467
+ "tracing",
1468
+ ]
1228
1469
 
1229
1470
  [[package]]
1230
1471
  name = "h2"
1231
- version = "0.3.26"
1472
+ version = "0.4.12"
1232
1473
  source = "registry+https://github.com/rust-lang/crates.io-index"
1233
- checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1474
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1234
1475
  dependencies = [
1476
+ "atomic-waker",
1235
1477
  "bytes",
1236
1478
  "fnv",
1237
1479
  "futures-core",
1238
1480
  "futures-sink",
1239
- "futures-util",
1240
- "http",
1481
+ "http 1.3.1",
1241
1482
  "indexmap",
1242
1483
  "slab",
1243
1484
  "tokio",
@@ -1267,13 +1508,24 @@ dependencies = [
1267
1508
 
1268
1509
  [[package]]
1269
1510
  name = "hashbrown"
1270
- version = "0.15.2"
1511
+ version = "0.15.5"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1514
+ dependencies = [
1515
+ "allocator-api2",
1516
+ "equivalent",
1517
+ "foldhash 0.1.5",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "hashbrown"
1522
+ version = "0.16.0"
1271
1523
  source = "registry+https://github.com/rust-lang/crates.io-index"
1272
- checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1524
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1273
1525
  dependencies = [
1274
1526
  "allocator-api2",
1275
1527
  "equivalent",
1276
- "foldhash",
1528
+ "foldhash 0.2.0",
1277
1529
  ]
1278
1530
 
1279
1531
  [[package]]
@@ -1290,15 +1542,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1290
1542
 
1291
1543
  [[package]]
1292
1544
  name = "hermit-abi"
1293
- version = "0.3.9"
1545
+ version = "0.5.2"
1294
1546
  source = "registry+https://github.com/rust-lang/crates.io-index"
1295
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1296
-
1297
- [[package]]
1298
- name = "hermit-abi"
1299
- version = "0.5.0"
1300
- source = "registry+https://github.com/rust-lang/crates.io-index"
1301
- checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e"
1547
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1302
1548
 
1303
1549
  [[package]]
1304
1550
  name = "htmlescape"
@@ -1317,6 +1563,40 @@ dependencies = [
1317
1563
  "itoa",
1318
1564
  ]
1319
1565
 
1566
+ [[package]]
1567
+ name = "http"
1568
+ version = "1.3.1"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1571
+ dependencies = [
1572
+ "bytes",
1573
+ "fnv",
1574
+ "itoa",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "http-body"
1579
+ version = "1.0.1"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1582
+ dependencies = [
1583
+ "bytes",
1584
+ "http 1.3.1",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "http-body-util"
1589
+ version = "0.1.3"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1592
+ dependencies = [
1593
+ "bytes",
1594
+ "futures-core",
1595
+ "http 1.3.1",
1596
+ "http-body",
1597
+ "pin-project-lite",
1598
+ ]
1599
+
1320
1600
  [[package]]
1321
1601
  name = "httparse"
1322
1602
  version = "1.10.1"
@@ -1330,70 +1610,109 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
1610
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1331
1611
 
1332
1612
  [[package]]
1333
- name = "humansize"
1334
- version = "2.1.3"
1613
+ name = "hyper"
1614
+ version = "1.7.0"
1335
1615
  source = "registry+https://github.com/rust-lang/crates.io-index"
1336
- checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
1616
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1337
1617
  dependencies = [
1338
- "libm",
1618
+ "atomic-waker",
1619
+ "bytes",
1620
+ "futures-channel",
1621
+ "futures-core",
1622
+ "h2 0.4.12",
1623
+ "http 1.3.1",
1624
+ "http-body",
1625
+ "httparse",
1626
+ "httpdate",
1627
+ "itoa",
1628
+ "pin-project-lite",
1629
+ "pin-utils",
1630
+ "smallvec",
1631
+ "tokio",
1632
+ "want",
1339
1633
  ]
1340
1634
 
1341
1635
  [[package]]
1342
- name = "humantime"
1343
- version = "2.2.0"
1636
+ name = "hyper-rustls"
1637
+ version = "0.27.7"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1640
+ dependencies = [
1641
+ "http 1.3.1",
1642
+ "hyper",
1643
+ "hyper-util",
1644
+ "rustls",
1645
+ "rustls-pki-types",
1646
+ "tokio",
1647
+ "tokio-rustls",
1648
+ "tower-service",
1649
+ "webpki-roots",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "hyper-util"
1654
+ version = "0.1.16"
1344
1655
  source = "registry+https://github.com/rust-lang/crates.io-index"
1345
- checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
1656
+ checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1657
+ dependencies = [
1658
+ "base64",
1659
+ "bytes",
1660
+ "futures-channel",
1661
+ "futures-core",
1662
+ "futures-util",
1663
+ "http 1.3.1",
1664
+ "http-body",
1665
+ "hyper",
1666
+ "ipnet",
1667
+ "libc",
1668
+ "percent-encoding",
1669
+ "pin-project-lite",
1670
+ "socket2 0.5.10",
1671
+ "tokio",
1672
+ "tower-service",
1673
+ "tracing",
1674
+ ]
1346
1675
 
1347
1676
  [[package]]
1348
- name = "icu_collections"
1349
- version = "1.5.0"
1677
+ name = "hyperloglogplus"
1678
+ version = "0.4.1"
1350
1679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1351
- checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1680
+ checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
1352
1681
  dependencies = [
1353
- "displaydoc",
1354
- "yoke",
1355
- "zerofrom",
1356
- "zerovec",
1682
+ "serde",
1357
1683
  ]
1358
1684
 
1359
1685
  [[package]]
1360
- name = "icu_locid"
1361
- version = "1.5.0"
1686
+ name = "icu_collections"
1687
+ version = "2.0.0"
1362
1688
  source = "registry+https://github.com/rust-lang/crates.io-index"
1363
- checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1689
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1364
1690
  dependencies = [
1365
1691
  "displaydoc",
1366
- "litemap",
1367
- "tinystr",
1368
- "writeable",
1692
+ "potential_utf",
1693
+ "yoke",
1694
+ "zerofrom",
1369
1695
  "zerovec",
1370
1696
  ]
1371
1697
 
1372
1698
  [[package]]
1373
- name = "icu_locid_transform"
1374
- version = "1.5.0"
1699
+ name = "icu_locale_core"
1700
+ version = "2.0.0"
1375
1701
  source = "registry+https://github.com/rust-lang/crates.io-index"
1376
- checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1702
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1377
1703
  dependencies = [
1378
1704
  "displaydoc",
1379
- "icu_locid",
1380
- "icu_locid_transform_data",
1381
- "icu_provider",
1705
+ "litemap",
1382
1706
  "tinystr",
1707
+ "writeable",
1383
1708
  "zerovec",
1384
1709
  ]
1385
1710
 
1386
- [[package]]
1387
- name = "icu_locid_transform_data"
1388
- version = "1.5.1"
1389
- source = "registry+https://github.com/rust-lang/crates.io-index"
1390
- checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1391
-
1392
1711
  [[package]]
1393
1712
  name = "icu_normalizer"
1394
- version = "1.5.0"
1713
+ version = "2.0.0"
1395
1714
  source = "registry+https://github.com/rust-lang/crates.io-index"
1396
- checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1715
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1397
1716
  dependencies = [
1398
1717
  "displaydoc",
1399
1718
  "icu_collections",
@@ -1401,67 +1720,54 @@ dependencies = [
1401
1720
  "icu_properties",
1402
1721
  "icu_provider",
1403
1722
  "smallvec",
1404
- "utf16_iter",
1405
- "utf8_iter",
1406
- "write16",
1407
1723
  "zerovec",
1408
1724
  ]
1409
1725
 
1410
1726
  [[package]]
1411
1727
  name = "icu_normalizer_data"
1412
- version = "1.5.1"
1728
+ version = "2.0.0"
1413
1729
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1730
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1415
1731
 
1416
1732
  [[package]]
1417
1733
  name = "icu_properties"
1418
- version = "1.5.1"
1734
+ version = "2.0.1"
1419
1735
  source = "registry+https://github.com/rust-lang/crates.io-index"
1420
- checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1736
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1421
1737
  dependencies = [
1422
1738
  "displaydoc",
1423
1739
  "icu_collections",
1424
- "icu_locid_transform",
1740
+ "icu_locale_core",
1425
1741
  "icu_properties_data",
1426
1742
  "icu_provider",
1427
- "tinystr",
1743
+ "potential_utf",
1744
+ "zerotrie",
1428
1745
  "zerovec",
1429
1746
  ]
1430
1747
 
1431
1748
  [[package]]
1432
1749
  name = "icu_properties_data"
1433
- version = "1.5.1"
1750
+ version = "2.0.1"
1434
1751
  source = "registry+https://github.com/rust-lang/crates.io-index"
1435
- checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1752
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1436
1753
 
1437
1754
  [[package]]
1438
1755
  name = "icu_provider"
1439
- version = "1.5.0"
1756
+ version = "2.0.0"
1440
1757
  source = "registry+https://github.com/rust-lang/crates.io-index"
1441
- checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1758
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1442
1759
  dependencies = [
1443
1760
  "displaydoc",
1444
- "icu_locid",
1445
- "icu_provider_macros",
1761
+ "icu_locale_core",
1446
1762
  "stable_deref_trait",
1447
1763
  "tinystr",
1448
1764
  "writeable",
1449
1765
  "yoke",
1450
1766
  "zerofrom",
1767
+ "zerotrie",
1451
1768
  "zerovec",
1452
1769
  ]
1453
1770
 
1454
- [[package]]
1455
- name = "icu_provider_macros"
1456
- version = "1.5.0"
1457
- source = "registry+https://github.com/rust-lang/crates.io-index"
1458
- checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1459
- dependencies = [
1460
- "proc-macro2",
1461
- "quote",
1462
- "syn 2.0.100",
1463
- ]
1464
-
1465
1771
  [[package]]
1466
1772
  name = "ident_case"
1467
1773
  version = "1.0.1"
@@ -1470,9 +1776,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1470
1776
 
1471
1777
  [[package]]
1472
1778
  name = "idna"
1473
- version = "1.0.3"
1779
+ version = "1.1.0"
1474
1780
  source = "registry+https://github.com/rust-lang/crates.io-index"
1475
- checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1781
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1476
1782
  dependencies = [
1477
1783
  "idna_adapter",
1478
1784
  "smallvec",
@@ -1481,9 +1787,9 @@ dependencies = [
1481
1787
 
1482
1788
  [[package]]
1483
1789
  name = "idna_adapter"
1484
- version = "1.2.0"
1790
+ version = "1.2.1"
1485
1791
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1792
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1487
1793
  dependencies = [
1488
1794
  "icu_normalizer",
1489
1795
  "icu_properties",
@@ -1497,47 +1803,61 @@ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
1497
1803
 
1498
1804
  [[package]]
1499
1805
  name = "include-flate"
1500
- version = "0.3.0"
1806
+ version = "0.3.1"
1501
1807
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
1808
+ checksum = "e01b7cb6ca682a621e7cda1c358c9724b53a7b4409be9be1dd443b7f3a26f998"
1503
1809
  dependencies = [
1504
1810
  "include-flate-codegen",
1505
- "lazy_static",
1811
+ "include-flate-compress",
1506
1812
  "libflate",
1813
+ "zstd",
1507
1814
  ]
1508
1815
 
1509
1816
  [[package]]
1510
1817
  name = "include-flate-codegen"
1511
- version = "0.2.0"
1818
+ version = "0.3.1"
1512
1819
  source = "registry+https://github.com/rust-lang/crates.io-index"
1513
- checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
1820
+ checksum = "4f49bf5274aebe468d6e6eba14a977eaf1efa481dc173f361020de70c1c48050"
1514
1821
  dependencies = [
1822
+ "include-flate-compress",
1515
1823
  "libflate",
1824
+ "proc-macro-error",
1516
1825
  "proc-macro2",
1517
1826
  "quote",
1518
- "syn 2.0.100",
1827
+ "syn 2.0.106",
1828
+ "zstd",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "include-flate-compress"
1833
+ version = "0.3.1"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "eae6a40e716bcd5931f5dbb79cd921512a4f647e2e9413fded3171fca3824dbc"
1836
+ dependencies = [
1837
+ "libflate",
1838
+ "zstd",
1519
1839
  ]
1520
1840
 
1521
1841
  [[package]]
1522
1842
  name = "indexmap"
1523
- version = "2.9.0"
1843
+ version = "2.11.0"
1524
1844
  source = "registry+https://github.com/rust-lang/crates.io-index"
1525
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1845
+ checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
1526
1846
  dependencies = [
1527
1847
  "equivalent",
1528
- "hashbrown 0.15.2",
1848
+ "hashbrown 0.15.5",
1529
1849
  ]
1530
1850
 
1531
1851
  [[package]]
1532
1852
  name = "indicatif"
1533
- version = "0.17.11"
1853
+ version = "0.18.0"
1534
1854
  source = "registry+https://github.com/rust-lang/crates.io-index"
1535
- checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1855
+ checksum = "70a646d946d06bedbbc4cac4c218acf4bbf2d87757a784857025f4d447e4e1cd"
1536
1856
  dependencies = [
1537
- "console",
1538
- "number_prefix",
1857
+ "console 0.16.1",
1539
1858
  "portable-atomic",
1540
- "unicode-width 0.2.0",
1859
+ "unicode-width",
1860
+ "unit-prefix",
1541
1861
  "web-time",
1542
1862
  ]
1543
1863
 
@@ -1555,19 +1875,17 @@ checksum = "6c38228f24186d9cc68c729accb4d413be9eaed6ad07ff79e0270d9e56f3de13"
1555
1875
  dependencies = [
1556
1876
  "proc-macro2",
1557
1877
  "quote",
1558
- "syn 2.0.100",
1878
+ "syn 2.0.106",
1559
1879
  ]
1560
1880
 
1561
1881
  [[package]]
1562
1882
  name = "insta"
1563
- version = "1.42.2"
1883
+ version = "1.43.2"
1564
1884
  source = "registry+https://github.com/rust-lang/crates.io-index"
1565
- checksum = "50259abbaa67d11d2bcafc7ba1d094ed7a0c70e3ce893f0d0997f73558cb3084"
1885
+ checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
1566
1886
  dependencies = [
1567
- "console",
1568
- "linked-hash-map",
1887
+ "console 0.15.11",
1569
1888
  "once_cell",
1570
- "pin-project",
1571
1889
  "similar",
1572
1890
  ]
1573
1891
 
@@ -1583,6 +1901,20 @@ dependencies = [
1583
1901
  "web-sys",
1584
1902
  ]
1585
1903
 
1904
+ [[package]]
1905
+ name = "internal"
1906
+ version = "0.1.0"
1907
+ dependencies = [
1908
+ "odict",
1909
+ "strum",
1910
+ ]
1911
+
1912
+ [[package]]
1913
+ name = "ipnet"
1914
+ version = "2.11.0"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1917
+
1586
1918
  [[package]]
1587
1919
  name = "irg-kvariants"
1588
1920
  version = "0.1.1"
@@ -1595,14 +1927,13 @@ dependencies = [
1595
1927
  ]
1596
1928
 
1597
1929
  [[package]]
1598
- name = "is-terminal"
1599
- version = "0.4.16"
1930
+ name = "iri-string"
1931
+ version = "0.7.8"
1600
1932
  source = "registry+https://github.com/rust-lang/crates.io-index"
1601
- checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
1933
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1602
1934
  dependencies = [
1603
- "hermit-abi 0.5.0",
1604
- "libc",
1605
- "windows-sys 0.59.0",
1935
+ "memchr",
1936
+ "serde",
1606
1937
  ]
1607
1938
 
1608
1939
  [[package]]
@@ -1613,18 +1944,18 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1613
1944
 
1614
1945
  [[package]]
1615
1946
  name = "itertools"
1616
- version = "0.10.5"
1947
+ version = "0.13.0"
1617
1948
  source = "registry+https://github.com/rust-lang/crates.io-index"
1618
- checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1949
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1619
1950
  dependencies = [
1620
1951
  "either",
1621
1952
  ]
1622
1953
 
1623
1954
  [[package]]
1624
1955
  name = "itertools"
1625
- version = "0.12.1"
1956
+ version = "0.14.0"
1626
1957
  source = "registry+https://github.com/rust-lang/crates.io-index"
1627
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1958
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1628
1959
  dependencies = [
1629
1960
  "either",
1630
1961
  ]
@@ -1646,9 +1977,9 @@ dependencies = [
1646
1977
 
1647
1978
  [[package]]
1648
1979
  name = "jieba-rs"
1649
- version = "0.7.2"
1980
+ version = "0.7.4"
1650
1981
  source = "registry+https://github.com/rust-lang/crates.io-index"
1651
- checksum = "6d1bcad6332969e4d48ee568d430e14ee6dea70740c2549d005d87677ebefb0c"
1982
+ checksum = "f5dd552bbb95d578520ee68403bf8aaf0dbbb2ce55b0854d019f9350ad61040a"
1652
1983
  dependencies = [
1653
1984
  "cedarwood",
1654
1985
  "fxhash",
@@ -1661,9 +1992,9 @@ dependencies = [
1661
1992
 
1662
1993
  [[package]]
1663
1994
  name = "jiff"
1664
- version = "0.2.8"
1995
+ version = "0.2.15"
1665
1996
  source = "registry+https://github.com/rust-lang/crates.io-index"
1666
- checksum = "e5ad87c89110f55e4cd4dc2893a9790820206729eaf221555f742d540b0724a0"
1997
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
1667
1998
  dependencies = [
1668
1999
  "jiff-static",
1669
2000
  "log",
@@ -1674,22 +2005,22 @@ dependencies = [
1674
2005
 
1675
2006
  [[package]]
1676
2007
  name = "jiff-static"
1677
- version = "0.2.8"
2008
+ version = "0.2.15"
1678
2009
  source = "registry+https://github.com/rust-lang/crates.io-index"
1679
- checksum = "d076d5b64a7e2fe6f0743f02c43ca4a6725c0f904203bfe276a5b3e793103605"
2010
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
1680
2011
  dependencies = [
1681
2012
  "proc-macro2",
1682
2013
  "quote",
1683
- "syn 2.0.100",
2014
+ "syn 2.0.106",
1684
2015
  ]
1685
2016
 
1686
2017
  [[package]]
1687
2018
  name = "jobserver"
1688
- version = "0.1.33"
2019
+ version = "0.1.34"
1689
2020
  source = "registry+https://github.com/rust-lang/crates.io-index"
1690
- checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
2021
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1691
2022
  dependencies = [
1692
- "getrandom 0.3.2",
2023
+ "getrandom 0.3.3",
1693
2024
  "libc",
1694
2025
  ]
1695
2026
 
@@ -1732,9 +2063,9 @@ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
1732
2063
 
1733
2064
  [[package]]
1734
2065
  name = "libc"
1735
- version = "0.2.172"
2066
+ version = "0.2.175"
1736
2067
  source = "registry+https://github.com/rust-lang/crates.io-index"
1737
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2068
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1738
2069
 
1739
2070
  [[package]]
1740
2071
  name = "libflate"
@@ -1762,182 +2093,79 @@ dependencies = [
1762
2093
 
1763
2094
  [[package]]
1764
2095
  name = "libloading"
1765
- version = "0.8.6"
2096
+ version = "0.8.8"
1766
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
1767
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2098
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1768
2099
  dependencies = [
1769
2100
  "cfg-if",
1770
- "windows-targets",
2101
+ "windows-targets 0.53.3",
1771
2102
  ]
1772
2103
 
1773
2104
  [[package]]
1774
2105
  name = "libm"
1775
- version = "0.2.11"
2106
+ version = "0.2.15"
1776
2107
  source = "registry+https://github.com/rust-lang/crates.io-index"
1777
- checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
2108
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1778
2109
 
1779
2110
  [[package]]
1780
2111
  name = "libredox"
1781
- version = "0.1.3"
2112
+ version = "0.1.9"
1782
2113
  source = "registry+https://github.com/rust-lang/crates.io-index"
1783
- checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2114
+ checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
1784
2115
  dependencies = [
1785
- "bitflags 2.9.0",
2116
+ "bitflags 2.9.4",
1786
2117
  "libc",
1787
- "redox_syscall",
2118
+ "redox_syscall 0.5.17",
1788
2119
  ]
1789
2120
 
1790
2121
  [[package]]
1791
2122
  name = "lindera"
1792
- version = "0.32.3"
2123
+ version = "0.43.3"
1793
2124
  source = "registry+https://github.com/rust-lang/crates.io-index"
1794
- checksum = "832c220475557e3b44a46cad1862b57f010f0c6e93d771d0e628e08689c068b1"
1795
- dependencies = [
1796
- "lindera-analyzer",
1797
- "lindera-core",
1798
- "lindera-dictionary",
1799
- "lindera-filter",
1800
- "lindera-tokenizer",
1801
- ]
1802
-
1803
- [[package]]
1804
- name = "lindera-analyzer"
1805
- version = "0.32.3"
1806
- source = "registry+https://github.com/rust-lang/crates.io-index"
1807
- checksum = "a8e26651714abf5167e6b6a80f5cdaa0cad41c5fcb84d8ba96bebafcb9029339"
2125
+ checksum = "877750979d709bb5fb2d616a2c9968301ead80147db2270c8f23d8239467f159"
1808
2126
  dependencies = [
1809
2127
  "anyhow",
1810
2128
  "bincode",
1811
2129
  "byteorder",
1812
- "encoding",
2130
+ "csv",
1813
2131
  "kanaria",
1814
- "lindera-cc-cedict-builder",
1815
- "lindera-core",
2132
+ "lindera-cc-cedict",
1816
2133
  "lindera-dictionary",
1817
- "lindera-filter",
1818
- "lindera-ipadic-builder",
1819
- "lindera-ko-dic-builder",
1820
- "lindera-tokenizer",
1821
- "lindera-unidic-builder",
2134
+ "lindera-ipadic",
2135
+ "lindera-ipadic-neologd",
2136
+ "lindera-ko-dic",
2137
+ "lindera-unidic",
1822
2138
  "once_cell",
1823
2139
  "regex",
1824
2140
  "serde",
1825
2141
  "serde_json",
1826
- "thiserror 1.0.69",
2142
+ "serde_yaml",
2143
+ "strum",
2144
+ "strum_macros",
1827
2145
  "unicode-blocks",
1828
2146
  "unicode-normalization",
1829
2147
  "unicode-segmentation",
1830
2148
  "yada",
1831
2149
  ]
1832
2150
 
1833
- [[package]]
1834
- name = "lindera-assets"
1835
- version = "0.32.3"
1836
- source = "registry+https://github.com/rust-lang/crates.io-index"
1837
- checksum = "ebb01f1ca53c1e642234c6c7fdb9ac664ad0c1ab9502f33e4200201bac7e6ce7"
1838
- dependencies = [
1839
- "encoding",
1840
- "flate2",
1841
- "lindera-core",
1842
- "tar",
1843
- "ureq",
1844
- ]
1845
-
1846
2151
  [[package]]
1847
2152
  name = "lindera-cc-cedict"
1848
- version = "0.32.3"
2153
+ version = "0.43.3"
1849
2154
  source = "registry+https://github.com/rust-lang/crates.io-index"
1850
- checksum = "5f7618d9aa947fdd7c38eae2b79f0fd237ecb5067608f1363610ba20d20ab5a8"
2155
+ checksum = "4efb27e037efbd41fdce30e3771084a46040cdfdbec718425879f8aa7dfa16f2"
1851
2156
  dependencies = [
1852
2157
  "bincode",
1853
2158
  "byteorder",
1854
- "lindera-cc-cedict-builder",
1855
- "lindera-core",
1856
- "lindera-decompress",
1857
- "once_cell",
1858
- ]
1859
-
1860
- [[package]]
1861
- name = "lindera-cc-cedict-builder"
1862
- version = "0.32.3"
1863
- source = "registry+https://github.com/rust-lang/crates.io-index"
1864
- checksum = "efdbcb809d81428935d601a78c94bfb39500749213f7320705f427a7a1d31aec"
1865
- dependencies = [
1866
- "anyhow",
1867
- "lindera-core",
1868
- "lindera-decompress",
1869
- "lindera-dictionary-builder",
1870
- ]
1871
-
1872
- [[package]]
1873
- name = "lindera-compress"
1874
- version = "0.32.3"
1875
- source = "registry+https://github.com/rust-lang/crates.io-index"
1876
- checksum = "eac178afa2456dac469d3b1a2d7fbaf3e1ea796a1f52321e8ac29545a53c239c"
1877
- dependencies = [
1878
- "anyhow",
1879
- "flate2",
1880
- "lindera-decompress",
1881
- ]
1882
-
1883
- [[package]]
1884
- name = "lindera-core"
1885
- version = "0.32.3"
1886
- source = "registry+https://github.com/rust-lang/crates.io-index"
1887
- checksum = "649777465f48147ce593ab6db347e235e3af8f693a23f4437be94a1cdbdf5fdf"
1888
- dependencies = [
1889
- "anyhow",
1890
- "bincode",
1891
- "byteorder",
1892
- "encoding_rs",
1893
- "log",
2159
+ "lindera-dictionary",
1894
2160
  "once_cell",
1895
- "serde",
1896
- "thiserror 1.0.69",
1897
- "yada",
1898
- ]
1899
-
1900
- [[package]]
1901
- name = "lindera-decompress"
1902
- version = "0.32.3"
1903
- source = "registry+https://github.com/rust-lang/crates.io-index"
1904
- checksum = "9e3faaceb85e43ac250021866c6db3cdc9997b44b3d3ea498594d04edc91fc45"
1905
- dependencies = [
1906
- "anyhow",
1907
- "flate2",
1908
- "serde",
2161
+ "tokio",
1909
2162
  ]
1910
2163
 
1911
2164
  [[package]]
1912
2165
  name = "lindera-dictionary"
1913
- version = "0.32.3"
2166
+ version = "0.43.3"
1914
2167
  source = "registry+https://github.com/rust-lang/crates.io-index"
1915
- checksum = "31e15b2d2d8a4ad45f2e373a084931cf3dfbde15f124044e2436bb920af3366c"
1916
- dependencies = [
1917
- "anyhow",
1918
- "bincode",
1919
- "byteorder",
1920
- "lindera-cc-cedict",
1921
- "lindera-cc-cedict-builder",
1922
- "lindera-core",
1923
- "lindera-ipadic",
1924
- "lindera-ipadic-builder",
1925
- "lindera-ipadic-neologd",
1926
- "lindera-ipadic-neologd-builder",
1927
- "lindera-ko-dic",
1928
- "lindera-ko-dic-builder",
1929
- "lindera-unidic",
1930
- "lindera-unidic-builder",
1931
- "serde",
1932
- "strum",
1933
- "strum_macros",
1934
- ]
1935
-
1936
- [[package]]
1937
- name = "lindera-dictionary-builder"
1938
- version = "0.32.3"
1939
- source = "registry+https://github.com/rust-lang/crates.io-index"
1940
- checksum = "59802949110545b59b663917ed3fd55dc3b3a8cde6bd20137d7fe24372cfb9aa"
2168
+ checksum = "4cbb45e81527092e1af24c45bf068376df34faaa9f98d44a99ec59c7edfdb45a"
1941
2169
  dependencies = [
1942
2170
  "anyhow",
1943
2171
  "bincode",
@@ -1947,171 +2175,72 @@ dependencies = [
1947
2175
  "encoding",
1948
2176
  "encoding_rs",
1949
2177
  "encoding_rs_io",
2178
+ "flate2",
1950
2179
  "glob",
1951
- "lindera-compress",
1952
- "lindera-core",
1953
- "lindera-decompress",
1954
2180
  "log",
1955
- "yada",
1956
- ]
1957
-
1958
- [[package]]
1959
- name = "lindera-filter"
1960
- version = "0.32.3"
1961
- source = "registry+https://github.com/rust-lang/crates.io-index"
1962
- checksum = "1320f118c3fc9e897f4ebfc16864e5ef8c0b06ba769c0a50e53f193f9d682bf8"
1963
- dependencies = [
1964
- "anyhow",
1965
- "csv",
1966
- "kanaria",
1967
- "lindera-cc-cedict-builder",
1968
- "lindera-core",
1969
- "lindera-dictionary",
1970
- "lindera-ipadic-builder",
1971
- "lindera-ko-dic-builder",
1972
- "lindera-unidic-builder",
2181
+ "md5",
1973
2182
  "once_cell",
1974
- "regex",
2183
+ "rand 0.9.2",
2184
+ "reqwest",
1975
2185
  "serde",
1976
- "serde_json",
1977
- "unicode-blocks",
1978
- "unicode-normalization",
1979
- "unicode-segmentation",
2186
+ "tar",
2187
+ "thiserror 2.0.17",
2188
+ "tokio",
1980
2189
  "yada",
1981
2190
  ]
1982
2191
 
1983
2192
  [[package]]
1984
2193
  name = "lindera-ipadic"
1985
- version = "0.32.3"
2194
+ version = "0.43.3"
1986
2195
  source = "registry+https://github.com/rust-lang/crates.io-index"
1987
- checksum = "5b4731bf3730f1f38266d7ee9bca7d460cd336645c9dfd4e6a1082e58ab1e993"
2196
+ checksum = "447887ebb06c9faf7e9b41c03b491ae3e12aca2c0e119a865b682863a1b538aa"
1988
2197
  dependencies = [
1989
2198
  "bincode",
1990
2199
  "byteorder",
1991
- "lindera-core",
1992
- "lindera-decompress",
1993
- "lindera-ipadic-builder",
2200
+ "lindera-dictionary",
1994
2201
  "once_cell",
1995
- ]
1996
-
1997
- [[package]]
1998
- name = "lindera-ipadic-builder"
1999
- version = "0.32.3"
2000
- source = "registry+https://github.com/rust-lang/crates.io-index"
2001
- checksum = "309966c12e682f67205c3cd3c8dc55bbdcd1eb3b5c7c5cb41fb8acd18906d340"
2002
- dependencies = [
2003
- "anyhow",
2004
- "lindera-core",
2005
- "lindera-decompress",
2006
- "lindera-dictionary-builder",
2202
+ "tokio",
2007
2203
  ]
2008
2204
 
2009
2205
  [[package]]
2010
2206
  name = "lindera-ipadic-neologd"
2011
- version = "0.32.3"
2207
+ version = "0.43.3"
2012
2208
  source = "registry+https://github.com/rust-lang/crates.io-index"
2013
- checksum = "e90e919b4cfb9962d24ee1e1d50a7c163bbf356376495ad66d1996e20b9f9e44"
2209
+ checksum = "8da7829c17dee5b1068f241c1989f83a2d98307ed5d3b87fcc91bd06b7a7b44e"
2014
2210
  dependencies = [
2015
2211
  "bincode",
2016
2212
  "byteorder",
2017
- "lindera-core",
2018
- "lindera-decompress",
2019
- "lindera-ipadic-neologd-builder",
2213
+ "lindera-dictionary",
2020
2214
  "once_cell",
2021
- ]
2022
-
2023
- [[package]]
2024
- name = "lindera-ipadic-neologd-builder"
2025
- version = "0.32.3"
2026
- source = "registry+https://github.com/rust-lang/crates.io-index"
2027
- checksum = "7e517df0d501f9f8bf3126da20fc8cb9a5e37921e0eec1824d7a62f096463e02"
2028
- dependencies = [
2029
- "anyhow",
2030
- "lindera-core",
2031
- "lindera-decompress",
2032
- "lindera-dictionary-builder",
2215
+ "tokio",
2033
2216
  ]
2034
2217
 
2035
2218
  [[package]]
2036
2219
  name = "lindera-ko-dic"
2037
- version = "0.32.3"
2220
+ version = "0.43.3"
2038
2221
  source = "registry+https://github.com/rust-lang/crates.io-index"
2039
- checksum = "e9c6da4e68bc8b452a54b96d65361ebdceb4b6f36ecf262425c0e1f77960ae82"
2222
+ checksum = "8dc88354c6f8fbdeb7aa3d44673eb0ca03b7ad6e8d4edb62332604bb7806d17b"
2040
2223
  dependencies = [
2041
2224
  "bincode",
2042
2225
  "byteorder",
2043
- "lindera-assets",
2044
- "lindera-core",
2045
- "lindera-decompress",
2046
- "lindera-ko-dic-builder",
2047
- "once_cell",
2048
- ]
2049
-
2050
- [[package]]
2051
- name = "lindera-ko-dic-builder"
2052
- version = "0.32.3"
2053
- source = "registry+https://github.com/rust-lang/crates.io-index"
2054
- checksum = "afc95884cc8f6dfb176caf5991043a4acf94c359215bbd039ea765e00454f271"
2055
- dependencies = [
2056
- "anyhow",
2057
- "lindera-core",
2058
- "lindera-decompress",
2059
- "lindera-dictionary-builder",
2060
- ]
2061
-
2062
- [[package]]
2063
- name = "lindera-tokenizer"
2064
- version = "0.32.3"
2065
- source = "registry+https://github.com/rust-lang/crates.io-index"
2066
- checksum = "d122042e1232a55c3604692445952a134e523822e9b4b9ab32a53ff890037ad4"
2067
- dependencies = [
2068
- "bincode",
2069
- "lindera-core",
2070
2226
  "lindera-dictionary",
2071
2227
  "once_cell",
2072
- "serde",
2073
- "serde_json",
2228
+ "tokio",
2074
2229
  ]
2075
2230
 
2076
2231
  [[package]]
2077
2232
  name = "lindera-unidic"
2078
- version = "0.32.3"
2233
+ version = "0.43.3"
2079
2234
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
- checksum = "cbffae1fb2f2614abdcb50f99b138476dbac19862ffa57bfdc9c7b5d5b22a90c"
2235
+ checksum = "4cf374587e0202193c73f443cb0ba0d34ff0013949b2355aeeeb0f840679681e"
2081
2236
  dependencies = [
2082
2237
  "bincode",
2083
2238
  "byteorder",
2084
- "lindera-assets",
2085
- "lindera-core",
2086
- "lindera-decompress",
2087
- "lindera-unidic-builder",
2239
+ "lindera-dictionary",
2088
2240
  "once_cell",
2241
+ "tokio",
2089
2242
  ]
2090
2243
 
2091
- [[package]]
2092
- name = "lindera-unidic-builder"
2093
- version = "0.32.3"
2094
- source = "registry+https://github.com/rust-lang/crates.io-index"
2095
- checksum = "fe50055327712ebd1bcc74b657cf78c728a78b9586e3f99d5dd0b6a0be221c5d"
2096
- dependencies = [
2097
- "anyhow",
2098
- "lindera-core",
2099
- "lindera-decompress",
2100
- "lindera-dictionary-builder",
2101
- ]
2102
-
2103
- [[package]]
2104
- name = "linked-hash-map"
2105
- version = "0.5.6"
2106
- source = "registry+https://github.com/rust-lang/crates.io-index"
2107
- checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2108
-
2109
- [[package]]
2110
- name = "linux-raw-sys"
2111
- version = "0.4.15"
2112
- source = "registry+https://github.com/rust-lang/crates.io-index"
2113
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2114
-
2115
2244
  [[package]]
2116
2245
  name = "linux-raw-sys"
2117
2246
  version = "0.9.4"
@@ -2120,9 +2249,9 @@ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2120
2249
 
2121
2250
  [[package]]
2122
2251
  name = "litemap"
2123
- version = "0.7.5"
2252
+ version = "0.8.0"
2124
2253
  source = "registry+https://github.com/rust-lang/crates.io-index"
2125
- checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2254
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2126
2255
 
2127
2256
  [[package]]
2128
2257
  name = "local-channel"
@@ -2143,9 +2272,9 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2143
2272
 
2144
2273
  [[package]]
2145
2274
  name = "lock_api"
2146
- version = "0.4.12"
2275
+ version = "0.4.13"
2147
2276
  source = "registry+https://github.com/rust-lang/crates.io-index"
2148
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2277
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2149
2278
  dependencies = [
2150
2279
  "autocfg",
2151
2280
  "scopeguard",
@@ -2163,23 +2292,29 @@ version = "0.12.5"
2163
2292
  source = "registry+https://github.com/rust-lang/crates.io-index"
2164
2293
  checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2165
2294
  dependencies = [
2166
- "hashbrown 0.15.2",
2295
+ "hashbrown 0.15.5",
2167
2296
  ]
2168
2297
 
2169
2298
  [[package]]
2170
2299
  name = "lru"
2171
- version = "0.14.0"
2300
+ version = "0.16.2"
2172
2301
  source = "registry+https://github.com/rust-lang/crates.io-index"
2173
- checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198"
2302
+ checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
2174
2303
  dependencies = [
2175
- "hashbrown 0.15.2",
2304
+ "hashbrown 0.16.0",
2176
2305
  ]
2177
2306
 
2307
+ [[package]]
2308
+ name = "lru-slab"
2309
+ version = "0.1.2"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2312
+
2178
2313
  [[package]]
2179
2314
  name = "lz4_flex"
2180
- version = "0.11.3"
2315
+ version = "0.11.5"
2181
2316
  source = "registry+https://github.com/rust-lang/crates.io-index"
2182
- checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
2317
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
2183
2318
 
2184
2319
  [[package]]
2185
2320
  name = "map-macro"
@@ -2187,27 +2322,32 @@ version = "0.3.0"
2187
2322
  source = "registry+https://github.com/rust-lang/crates.io-index"
2188
2323
  checksum = "fb950a42259642e5a3483115aca87eebed2a64886993463af9c9739c205b8d3a"
2189
2324
 
2325
+ [[package]]
2326
+ name = "md5"
2327
+ version = "0.7.0"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2330
+
2190
2331
  [[package]]
2191
2332
  name = "measure_time"
2192
- version = "0.8.3"
2333
+ version = "0.9.0"
2193
2334
  source = "registry+https://github.com/rust-lang/crates.io-index"
2194
- checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc"
2335
+ checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
2195
2336
  dependencies = [
2196
- "instant",
2197
2337
  "log",
2198
2338
  ]
2199
2339
 
2200
2340
  [[package]]
2201
2341
  name = "memchr"
2202
- version = "2.7.4"
2342
+ version = "2.7.5"
2203
2343
  source = "registry+https://github.com/rust-lang/crates.io-index"
2204
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2344
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2205
2345
 
2206
2346
  [[package]]
2207
2347
  name = "memmap2"
2208
- version = "0.9.5"
2348
+ version = "0.9.8"
2209
2349
  source = "registry+https://github.com/rust-lang/crates.io-index"
2210
- checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
2350
+ checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
2211
2351
  dependencies = [
2212
2352
  "libc",
2213
2353
  ]
@@ -2223,9 +2363,9 @@ dependencies = [
2223
2363
 
2224
2364
  [[package]]
2225
2365
  name = "merge"
2226
- version = "0.1.0"
2366
+ version = "0.2.0"
2227
2367
  source = "registry+https://github.com/rust-lang/crates.io-index"
2228
- checksum = "10bbef93abb1da61525bbc45eeaff6473a41907d19f8f9aa5168d214e10693e9"
2368
+ checksum = "56e520ba58faea3487f75df198b1d079644ec226ea3b0507d002c6fa4b8cf93a"
2229
2369
  dependencies = [
2230
2370
  "merge_derive",
2231
2371
  "num-traits",
@@ -2233,14 +2373,14 @@ dependencies = [
2233
2373
 
2234
2374
  [[package]]
2235
2375
  name = "merge_derive"
2236
- version = "0.1.0"
2376
+ version = "0.2.0"
2237
2377
  source = "registry+https://github.com/rust-lang/crates.io-index"
2238
- checksum = "209d075476da2e63b4b29e72a2ef627b840589588e71400a25e3565c4f849d07"
2378
+ checksum = "5c8f8ce6efff81cbc83caf4af0905c46e58cb46892f63ad3835e81b47eaf7968"
2239
2379
  dependencies = [
2240
- "proc-macro-error",
2380
+ "proc-macro-error2",
2241
2381
  "proc-macro2",
2242
2382
  "quote",
2243
- "syn 1.0.109",
2383
+ "syn 2.0.106",
2244
2384
  ]
2245
2385
 
2246
2386
  [[package]]
@@ -2257,43 +2397,43 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2257
2397
 
2258
2398
  [[package]]
2259
2399
  name = "miniz_oxide"
2260
- version = "0.8.8"
2400
+ version = "0.8.9"
2261
2401
  source = "registry+https://github.com/rust-lang/crates.io-index"
2262
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2402
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2263
2403
  dependencies = [
2264
2404
  "adler2",
2265
2405
  ]
2266
2406
 
2267
2407
  [[package]]
2268
2408
  name = "mio"
2269
- version = "1.0.3"
2409
+ version = "1.0.4"
2270
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2271
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2411
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2272
2412
  dependencies = [
2273
2413
  "libc",
2274
2414
  "log",
2275
- "wasi 0.11.0+wasi-snapshot-preview1",
2276
- "windows-sys 0.52.0",
2415
+ "wasi 0.11.1+wasi-snapshot-preview1",
2416
+ "windows-sys 0.59.0",
2277
2417
  ]
2278
2418
 
2279
2419
  [[package]]
2280
2420
  name = "munge"
2281
- version = "0.4.3"
2421
+ version = "0.4.6"
2282
2422
  source = "registry+https://github.com/rust-lang/crates.io-index"
2283
- checksum = "a0091202c98cf06da46c279fdf50cccb6b1c43b4521abdf6a27b4c7e71d5d9d7"
2423
+ checksum = "d7feb0b48aa0a25f9fe0899482c6e1379ee7a11b24a53073eacdecb9adb6dc60"
2284
2424
  dependencies = [
2285
2425
  "munge_macro",
2286
2426
  ]
2287
2427
 
2288
2428
  [[package]]
2289
2429
  name = "munge_macro"
2290
- version = "0.4.3"
2430
+ version = "0.4.6"
2291
2431
  source = "registry+https://github.com/rust-lang/crates.io-index"
2292
- checksum = "734799cf91479720b2f970c61a22850940dd91e27d4f02b1c6fc792778df2459"
2432
+ checksum = "f2e3795a5d2da581a8b252fec6022eee01aea10161a4d1bf237d4cbe47f7e988"
2293
2433
  dependencies = [
2294
2434
  "proc-macro2",
2295
2435
  "quote",
2296
- "syn 2.0.100",
2436
+ "syn 2.0.106",
2297
2437
  ]
2298
2438
 
2299
2439
  [[package]]
@@ -2304,61 +2444,67 @@ checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
2304
2444
 
2305
2445
  [[package]]
2306
2446
  name = "napi"
2307
- version = "2.16.17"
2447
+ version = "3.3.0"
2308
2448
  source = "registry+https://github.com/rust-lang/crates.io-index"
2309
- checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
2449
+ checksum = "f1b74e3dce5230795bb4d2821b941706dee733c7308752507254b0497f39cad7"
2310
2450
  dependencies = [
2311
- "bitflags 2.9.0",
2451
+ "bitflags 2.9.4",
2312
2452
  "ctor",
2313
- "napi-derive",
2453
+ "napi-build",
2314
2454
  "napi-sys",
2315
- "once_cell",
2455
+ "nohash-hasher",
2456
+ "rustc-hash",
2457
+ "tokio",
2316
2458
  ]
2317
2459
 
2318
2460
  [[package]]
2319
2461
  name = "napi-build"
2320
- version = "2.1.6"
2462
+ version = "2.2.3"
2321
2463
  source = "registry+https://github.com/rust-lang/crates.io-index"
2322
- checksum = "e28acfa557c083f6e254a786e01ba253fc56f18ee000afcd4f79af735f73a6da"
2464
+ checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14"
2323
2465
 
2324
2466
  [[package]]
2325
2467
  name = "napi-derive"
2326
- version = "2.16.13"
2468
+ version = "3.2.5"
2327
2469
  source = "registry+https://github.com/rust-lang/crates.io-index"
2328
- checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
2470
+ checksum = "7552d5a579b834614bbd496db5109f1b9f1c758f08224b0dee1e408333adf0d0"
2329
2471
  dependencies = [
2330
- "cfg-if",
2331
2472
  "convert_case",
2473
+ "ctor",
2332
2474
  "napi-derive-backend",
2333
2475
  "proc-macro2",
2334
2476
  "quote",
2335
- "syn 2.0.100",
2477
+ "syn 2.0.106",
2336
2478
  ]
2337
2479
 
2338
2480
  [[package]]
2339
2481
  name = "napi-derive-backend"
2340
- version = "1.0.75"
2482
+ version = "2.2.0"
2341
2483
  source = "registry+https://github.com/rust-lang/crates.io-index"
2342
- checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
2484
+ checksum = "5f6a81ac7486b70f2532a289603340862c06eea5a1e650c1ffeda2ce1238516a"
2343
2485
  dependencies = [
2344
2486
  "convert_case",
2345
- "once_cell",
2346
2487
  "proc-macro2",
2347
2488
  "quote",
2348
- "regex",
2349
2489
  "semver",
2350
- "syn 2.0.100",
2490
+ "syn 2.0.106",
2351
2491
  ]
2352
2492
 
2353
2493
  [[package]]
2354
2494
  name = "napi-sys"
2355
- version = "2.4.0"
2495
+ version = "3.0.0"
2356
2496
  source = "registry+https://github.com/rust-lang/crates.io-index"
2357
- checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
2497
+ checksum = "3e4e7135a8f97aa0f1509cce21a8a1f9dcec1b50d8dee006b48a5adb69a9d64d"
2358
2498
  dependencies = [
2359
2499
  "libloading",
2360
2500
  ]
2361
2501
 
2502
+ [[package]]
2503
+ name = "nohash-hasher"
2504
+ version = "0.2.0"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2507
+
2362
2508
  [[package]]
2363
2509
  name = "nom"
2364
2510
  version = "7.1.3"
@@ -2397,93 +2543,93 @@ dependencies = [
2397
2543
 
2398
2544
  [[package]]
2399
2545
  name = "num_cpus"
2400
- version = "1.16.0"
2546
+ version = "1.17.0"
2401
2547
  source = "registry+https://github.com/rust-lang/crates.io-index"
2402
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2548
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2403
2549
  dependencies = [
2404
- "hermit-abi 0.3.9",
2550
+ "hermit-abi",
2405
2551
  "libc",
2406
2552
  ]
2407
2553
 
2408
- [[package]]
2409
- name = "number_prefix"
2410
- version = "0.4.0"
2411
- source = "registry+https://github.com/rust-lang/crates.io-index"
2412
- checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2413
-
2414
- [[package]]
2415
- name = "object"
2416
- version = "0.36.7"
2417
- source = "registry+https://github.com/rust-lang/crates.io-index"
2418
- checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2419
- dependencies = [
2420
- "memchr",
2421
- ]
2422
-
2423
2554
  [[package]]
2424
2555
  name = "odict"
2425
- version = "2.5.0"
2556
+ version = "3.0.0"
2426
2557
  dependencies = [
2427
2558
  "brotli",
2428
2559
  "byteorder",
2429
2560
  "charabia",
2430
2561
  "criterion",
2431
2562
  "dirs",
2563
+ "futures-util",
2432
2564
  "insta",
2433
2565
  "map-macro",
2434
2566
  "pulldown-cmark",
2435
2567
  "quick-xml",
2436
2568
  "rayon",
2437
2569
  "regex",
2570
+ "reqwest",
2571
+ "reqwest-middleware",
2572
+ "reqwest-retry",
2438
2573
  "rkyv",
2439
2574
  "sea-query",
2440
2575
  "serde",
2441
2576
  "serde_json",
2577
+ "structural-convert",
2578
+ "strum",
2442
2579
  "tantivy",
2443
2580
  "tempfile",
2444
- "thiserror 2.0.12",
2581
+ "thiserror 2.0.17",
2582
+ "tokio",
2583
+ "url",
2445
2584
  "uuid",
2446
- "validation",
2585
+ "wiremock",
2447
2586
  ]
2448
2587
 
2449
2588
  [[package]]
2450
2589
  name = "odict-cli"
2451
- version = "2.4.1"
2590
+ version = "3.0.0"
2452
2591
  dependencies = [
2453
2592
  "actix-web",
2454
2593
  "anyhow",
2455
2594
  "clap",
2456
- "console",
2595
+ "console 0.16.1",
2457
2596
  "derive_more",
2458
2597
  "env_logger",
2459
- "humansize",
2460
- "humantime",
2461
2598
  "indicatif",
2462
- "lru 0.14.0",
2599
+ "internal",
2600
+ "lru 0.16.2",
2463
2601
  "num-format",
2464
2602
  "odict",
2465
2603
  "pulldown-cmark",
2466
2604
  "serde",
2605
+ "tokio",
2467
2606
  ]
2468
2607
 
2469
2608
  [[package]]
2470
2609
  name = "odict_node"
2471
2610
  version = "1.1.1"
2472
2611
  dependencies = [
2612
+ "internal",
2473
2613
  "merge",
2474
2614
  "napi",
2475
2615
  "napi-build",
2476
2616
  "napi-derive",
2477
2617
  "odict",
2618
+ "structural-convert",
2478
2619
  ]
2479
2620
 
2480
2621
  [[package]]
2481
2622
  name = "odict_python"
2482
- version = "1.4.0"
2623
+ version = "2.0.0"
2483
2624
  dependencies = [
2484
2625
  "either",
2626
+ "internal",
2627
+ "merge",
2485
2628
  "odict",
2486
2629
  "pyo3",
2630
+ "pyo3-async-runtimes",
2631
+ "structural-convert",
2632
+ "tokio",
2487
2633
  ]
2488
2634
 
2489
2635
  [[package]]
@@ -2492,6 +2638,12 @@ version = "1.21.3"
2492
2638
  source = "registry+https://github.com/rust-lang/crates.io-index"
2493
2639
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2494
2640
 
2641
+ [[package]]
2642
+ name = "once_cell_polyfill"
2643
+ version = "1.70.1"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2646
+
2495
2647
  [[package]]
2496
2648
  name = "oneshot"
2497
2649
  version = "0.1.11"
@@ -2511,42 +2663,67 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2511
2663
  checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2512
2664
 
2513
2665
  [[package]]
2514
- name = "ownedbytes"
2515
- version = "0.7.0"
2666
+ name = "ownedbytes"
2667
+ version = "0.9.0"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "2fbd56f7631767e61784dc43f8580f403f4475bd4aaa4da003e6295e1bab4a7e"
2670
+ dependencies = [
2671
+ "stable_deref_trait",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "parking_lot"
2676
+ version = "0.11.2"
2516
2677
  source = "registry+https://github.com/rust-lang/crates.io-index"
2517
- checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558"
2678
+ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2518
2679
  dependencies = [
2519
- "stable_deref_trait",
2680
+ "instant",
2681
+ "lock_api",
2682
+ "parking_lot_core 0.8.6",
2520
2683
  ]
2521
2684
 
2522
2685
  [[package]]
2523
2686
  name = "parking_lot"
2524
- version = "0.12.3"
2687
+ version = "0.12.4"
2525
2688
  source = "registry+https://github.com/rust-lang/crates.io-index"
2526
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2689
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2527
2690
  dependencies = [
2528
2691
  "lock_api",
2529
- "parking_lot_core",
2692
+ "parking_lot_core 0.9.11",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "parking_lot_core"
2697
+ version = "0.8.6"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2700
+ dependencies = [
2701
+ "cfg-if",
2702
+ "instant",
2703
+ "libc",
2704
+ "redox_syscall 0.2.16",
2705
+ "smallvec",
2706
+ "winapi",
2530
2707
  ]
2531
2708
 
2532
2709
  [[package]]
2533
2710
  name = "parking_lot_core"
2534
- version = "0.9.10"
2711
+ version = "0.9.11"
2535
2712
  source = "registry+https://github.com/rust-lang/crates.io-index"
2536
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2713
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2537
2714
  dependencies = [
2538
2715
  "cfg-if",
2539
2716
  "libc",
2540
- "redox_syscall",
2717
+ "redox_syscall 0.5.17",
2541
2718
  "smallvec",
2542
- "windows-targets",
2719
+ "windows-targets 0.52.6",
2543
2720
  ]
2544
2721
 
2545
2722
  [[package]]
2546
2723
  name = "percent-encoding"
2547
- version = "2.3.1"
2724
+ version = "2.3.2"
2548
2725
  source = "registry+https://github.com/rust-lang/crates.io-index"
2549
- checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2726
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2550
2727
 
2551
2728
  [[package]]
2552
2729
  name = "phf"
@@ -2586,26 +2763,6 @@ dependencies = [
2586
2763
  "siphasher",
2587
2764
  ]
2588
2765
 
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
-
2609
2766
  [[package]]
2610
2767
  name = "pin-project-lite"
2611
2768
  version = "0.2.16"
@@ -2654,9 +2811,9 @@ dependencies = [
2654
2811
 
2655
2812
  [[package]]
2656
2813
  name = "portable-atomic"
2657
- version = "1.11.0"
2814
+ version = "1.11.1"
2658
2815
  source = "registry+https://github.com/rust-lang/crates.io-index"
2659
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2816
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2660
2817
 
2661
2818
  [[package]]
2662
2819
  name = "portable-atomic-util"
@@ -2667,6 +2824,15 @@ dependencies = [
2667
2824
  "portable-atomic",
2668
2825
  ]
2669
2826
 
2827
+ [[package]]
2828
+ name = "potential_utf"
2829
+ version = "0.1.3"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2832
+ dependencies = [
2833
+ "zerovec",
2834
+ ]
2835
+
2670
2836
  [[package]]
2671
2837
  name = "powerfmt"
2672
2838
  version = "0.2.0"
@@ -2679,7 +2845,17 @@ version = "0.2.21"
2679
2845
  source = "registry+https://github.com/rust-lang/crates.io-index"
2680
2846
  checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2681
2847
  dependencies = [
2682
- "zerocopy 0.8.24",
2848
+ "zerocopy",
2849
+ ]
2850
+
2851
+ [[package]]
2852
+ name = "prettyplease"
2853
+ version = "0.2.37"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2856
+ dependencies = [
2857
+ "proc-macro2",
2858
+ "syn 2.0.106",
2683
2859
  ]
2684
2860
 
2685
2861
  [[package]]
@@ -2706,11 +2882,33 @@ dependencies = [
2706
2882
  "version_check",
2707
2883
  ]
2708
2884
 
2885
+ [[package]]
2886
+ name = "proc-macro-error-attr2"
2887
+ version = "2.0.0"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2890
+ dependencies = [
2891
+ "proc-macro2",
2892
+ "quote",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "proc-macro-error2"
2897
+ version = "2.0.1"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2900
+ dependencies = [
2901
+ "proc-macro-error-attr2",
2902
+ "proc-macro2",
2903
+ "quote",
2904
+ "syn 2.0.106",
2905
+ ]
2906
+
2709
2907
  [[package]]
2710
2908
  name = "proc-macro2"
2711
- version = "1.0.95"
2909
+ version = "1.0.101"
2712
2910
  source = "registry+https://github.com/rust-lang/crates.io-index"
2713
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2911
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2714
2912
  dependencies = [
2715
2913
  "unicode-ident",
2716
2914
  ]
@@ -2732,7 +2930,7 @@ checksum = "ca414edb151b4c8d125c12566ab0d74dc9cdba36fb80eb7b848c15f495fd32d1"
2732
2930
  dependencies = [
2733
2931
  "proc-macro2",
2734
2932
  "quote",
2735
- "syn 2.0.100",
2933
+ "syn 2.0.106",
2736
2934
  ]
2737
2935
 
2738
2936
  [[package]]
@@ -2741,7 +2939,7 @@ version = "0.13.0"
2741
2939
  source = "registry+https://github.com/rust-lang/crates.io-index"
2742
2940
  checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
2743
2941
  dependencies = [
2744
- "bitflags 2.9.0",
2942
+ "bitflags 2.9.4",
2745
2943
  "getopts",
2746
2944
  "memchr",
2747
2945
  "pulldown-cmark-escape",
@@ -2756,11 +2954,10 @@ checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
2756
2954
 
2757
2955
  [[package]]
2758
2956
  name = "pyo3"
2759
- version = "0.24.1"
2957
+ version = "0.26.0"
2760
2958
  source = "registry+https://github.com/rust-lang/crates.io-index"
2761
- checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
2959
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
2762
2960
  dependencies = [
2763
- "cfg-if",
2764
2961
  "either",
2765
2962
  "indoc",
2766
2963
  "libc",
@@ -2774,20 +2971,44 @@ dependencies = [
2774
2971
  ]
2775
2972
 
2776
2973
  [[package]]
2777
- name = "pyo3-build-config"
2778
- version = "0.24.1"
2974
+ name = "pyo3-async-runtimes"
2975
+ version = "0.26.0"
2779
2976
  source = "registry+https://github.com/rust-lang/crates.io-index"
2780
- checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
2977
+ checksum = "e6ee6d4cb3e8d5b925f5cdb38da183e0ff18122eb2048d4041c9e7034d026e23"
2781
2978
  dependencies = [
2979
+ "futures",
2782
2980
  "once_cell",
2981
+ "pin-project-lite",
2982
+ "pyo3",
2983
+ "pyo3-async-runtimes-macros",
2984
+ "tokio",
2985
+ ]
2986
+
2987
+ [[package]]
2988
+ name = "pyo3-async-runtimes-macros"
2989
+ version = "0.26.0"
2990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2991
+ checksum = "c29bc5c673e36a8102d0b9179149c1bb59990d8db4f3ae58bd7dceccab90b951"
2992
+ dependencies = [
2993
+ "proc-macro2",
2994
+ "quote",
2995
+ "syn 2.0.106",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "pyo3-build-config"
3000
+ version = "0.26.0"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
3003
+ dependencies = [
2783
3004
  "target-lexicon",
2784
3005
  ]
2785
3006
 
2786
3007
  [[package]]
2787
3008
  name = "pyo3-ffi"
2788
- version = "0.24.1"
3009
+ version = "0.26.0"
2789
3010
  source = "registry+https://github.com/rust-lang/crates.io-index"
2790
- checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
3011
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
2791
3012
  dependencies = [
2792
3013
  "libc",
2793
3014
  "pyo3-build-config",
@@ -2795,39 +3016,94 @@ dependencies = [
2795
3016
 
2796
3017
  [[package]]
2797
3018
  name = "pyo3-macros"
2798
- version = "0.24.1"
3019
+ version = "0.26.0"
2799
3020
  source = "registry+https://github.com/rust-lang/crates.io-index"
2800
- checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
3021
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
2801
3022
  dependencies = [
2802
3023
  "proc-macro2",
2803
3024
  "pyo3-macros-backend",
2804
3025
  "quote",
2805
- "syn 2.0.100",
3026
+ "syn 2.0.106",
2806
3027
  ]
2807
3028
 
2808
3029
  [[package]]
2809
3030
  name = "pyo3-macros-backend"
2810
- version = "0.24.1"
3031
+ version = "0.26.0"
2811
3032
  source = "registry+https://github.com/rust-lang/crates.io-index"
2812
- checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
3033
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
2813
3034
  dependencies = [
2814
3035
  "heck 0.5.0",
2815
3036
  "proc-macro2",
2816
3037
  "pyo3-build-config",
2817
3038
  "quote",
2818
- "syn 2.0.100",
3039
+ "syn 2.0.106",
2819
3040
  ]
2820
3041
 
2821
3042
  [[package]]
2822
3043
  name = "quick-xml"
2823
- version = "0.37.4"
3044
+ version = "0.38.3"
2824
3045
  source = "registry+https://github.com/rust-lang/crates.io-index"
2825
- checksum = "a4ce8c88de324ff838700f36fb6ab86c96df0e3c4ab6ef3a9b2044465cce1369"
3046
+ checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
2826
3047
  dependencies = [
2827
3048
  "memchr",
2828
3049
  "serde",
2829
3050
  ]
2830
3051
 
3052
+ [[package]]
3053
+ name = "quinn"
3054
+ version = "0.11.9"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3057
+ dependencies = [
3058
+ "bytes",
3059
+ "cfg_aliases",
3060
+ "pin-project-lite",
3061
+ "quinn-proto",
3062
+ "quinn-udp",
3063
+ "rustc-hash",
3064
+ "rustls",
3065
+ "socket2 0.5.10",
3066
+ "thiserror 2.0.17",
3067
+ "tokio",
3068
+ "tracing",
3069
+ "web-time",
3070
+ ]
3071
+
3072
+ [[package]]
3073
+ name = "quinn-proto"
3074
+ version = "0.11.13"
3075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3076
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3077
+ dependencies = [
3078
+ "bytes",
3079
+ "getrandom 0.3.3",
3080
+ "lru-slab",
3081
+ "rand 0.9.2",
3082
+ "ring",
3083
+ "rustc-hash",
3084
+ "rustls",
3085
+ "rustls-pki-types",
3086
+ "slab",
3087
+ "thiserror 2.0.17",
3088
+ "tinyvec",
3089
+ "tracing",
3090
+ "web-time",
3091
+ ]
3092
+
3093
+ [[package]]
3094
+ name = "quinn-udp"
3095
+ version = "0.5.14"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3098
+ dependencies = [
3099
+ "cfg_aliases",
3100
+ "libc",
3101
+ "once_cell",
3102
+ "socket2 0.5.10",
3103
+ "tracing",
3104
+ "windows-sys 0.60.2",
3105
+ ]
3106
+
2831
3107
  [[package]]
2832
3108
  name = "quote"
2833
3109
  version = "1.0.40"
@@ -2839,9 +3115,9 @@ dependencies = [
2839
3115
 
2840
3116
  [[package]]
2841
3117
  name = "r-efi"
2842
- version = "5.2.0"
3118
+ version = "5.3.0"
2843
3119
  source = "registry+https://github.com/rust-lang/crates.io-index"
2844
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3120
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2845
3121
 
2846
3122
  [[package]]
2847
3123
  name = "rancor"
@@ -2865,9 +3141,9 @@ dependencies = [
2865
3141
 
2866
3142
  [[package]]
2867
3143
  name = "rand"
2868
- version = "0.9.1"
3144
+ version = "0.9.2"
2869
3145
  source = "registry+https://github.com/rust-lang/crates.io-index"
2870
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
3146
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2871
3147
  dependencies = [
2872
3148
  "rand_chacha 0.9.0",
2873
3149
  "rand_core 0.9.3",
@@ -2899,7 +3175,7 @@ version = "0.6.4"
2899
3175
  source = "registry+https://github.com/rust-lang/crates.io-index"
2900
3176
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2901
3177
  dependencies = [
2902
- "getrandom 0.2.15",
3178
+ "getrandom 0.2.16",
2903
3179
  ]
2904
3180
 
2905
3181
  [[package]]
@@ -2908,7 +3184,7 @@ version = "0.9.3"
2908
3184
  source = "registry+https://github.com/rust-lang/crates.io-index"
2909
3185
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2910
3186
  dependencies = [
2911
- "getrandom 0.3.2",
3187
+ "getrandom 0.3.3",
2912
3188
  ]
2913
3189
 
2914
3190
  [[package]]
@@ -2923,9 +3199,9 @@ dependencies = [
2923
3199
 
2924
3200
  [[package]]
2925
3201
  name = "rayon"
2926
- version = "1.10.0"
3202
+ version = "1.11.0"
2927
3203
  source = "registry+https://github.com/rust-lang/crates.io-index"
2928
- checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
3204
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2929
3205
  dependencies = [
2930
3206
  "either",
2931
3207
  "rayon-core",
@@ -2933,9 +3209,9 @@ dependencies = [
2933
3209
 
2934
3210
  [[package]]
2935
3211
  name = "rayon-core"
2936
- version = "1.12.1"
3212
+ version = "1.13.0"
2937
3213
  source = "registry+https://github.com/rust-lang/crates.io-index"
2938
- checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
3214
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2939
3215
  dependencies = [
2940
3216
  "crossbeam-deque",
2941
3217
  "crossbeam-utils",
@@ -2943,29 +3219,38 @@ dependencies = [
2943
3219
 
2944
3220
  [[package]]
2945
3221
  name = "redox_syscall"
2946
- version = "0.5.11"
3222
+ version = "0.2.16"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
3225
+ dependencies = [
3226
+ "bitflags 1.3.2",
3227
+ ]
3228
+
3229
+ [[package]]
3230
+ name = "redox_syscall"
3231
+ version = "0.5.17"
2947
3232
  source = "registry+https://github.com/rust-lang/crates.io-index"
2948
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
3233
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
2949
3234
  dependencies = [
2950
- "bitflags 2.9.0",
3235
+ "bitflags 2.9.4",
2951
3236
  ]
2952
3237
 
2953
3238
  [[package]]
2954
3239
  name = "redox_users"
2955
- version = "0.5.0"
3240
+ version = "0.5.2"
2956
3241
  source = "registry+https://github.com/rust-lang/crates.io-index"
2957
- checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
3242
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2958
3243
  dependencies = [
2959
- "getrandom 0.2.15",
3244
+ "getrandom 0.2.16",
2960
3245
  "libredox",
2961
- "thiserror 2.0.12",
3246
+ "thiserror 2.0.17",
2962
3247
  ]
2963
3248
 
2964
3249
  [[package]]
2965
3250
  name = "regex"
2966
- version = "1.11.1"
3251
+ version = "1.12.2"
2967
3252
  source = "registry+https://github.com/rust-lang/crates.io-index"
2968
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
3253
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2969
3254
  dependencies = [
2970
3255
  "aho-corasick",
2971
3256
  "memchr",
@@ -2975,9 +3260,9 @@ dependencies = [
2975
3260
 
2976
3261
  [[package]]
2977
3262
  name = "regex-automata"
2978
- version = "0.4.9"
3263
+ version = "0.4.12"
2979
3264
  source = "registry+https://github.com/rust-lang/crates.io-index"
2980
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
3265
+ checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
2981
3266
  dependencies = [
2982
3267
  "aho-corasick",
2983
3268
  "memchr",
@@ -2986,15 +3271,15 @@ dependencies = [
2986
3271
 
2987
3272
  [[package]]
2988
3273
  name = "regex-lite"
2989
- version = "0.1.6"
3274
+ version = "0.1.7"
2990
3275
  source = "registry+https://github.com/rust-lang/crates.io-index"
2991
- checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
3276
+ checksum = "943f41321c63ef1c92fd763bfe054d2668f7f225a5c29f0105903dc2fc04ba30"
2992
3277
 
2993
3278
  [[package]]
2994
3279
  name = "regex-syntax"
2995
- version = "0.8.5"
3280
+ version = "0.8.6"
2996
3281
  source = "registry+https://github.com/rust-lang/crates.io-index"
2997
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3282
+ checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
2998
3283
 
2999
3284
  [[package]]
3000
3285
  name = "rend"
@@ -3005,6 +3290,94 @@ dependencies = [
3005
3290
  "bytecheck",
3006
3291
  ]
3007
3292
 
3293
+ [[package]]
3294
+ name = "reqwest"
3295
+ version = "0.12.24"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
3298
+ dependencies = [
3299
+ "base64",
3300
+ "bytes",
3301
+ "futures-core",
3302
+ "futures-util",
3303
+ "h2 0.4.12",
3304
+ "http 1.3.1",
3305
+ "http-body",
3306
+ "http-body-util",
3307
+ "hyper",
3308
+ "hyper-rustls",
3309
+ "hyper-util",
3310
+ "js-sys",
3311
+ "log",
3312
+ "percent-encoding",
3313
+ "pin-project-lite",
3314
+ "quinn",
3315
+ "rustls",
3316
+ "rustls-pki-types",
3317
+ "serde",
3318
+ "serde_json",
3319
+ "serde_urlencoded",
3320
+ "sync_wrapper",
3321
+ "tokio",
3322
+ "tokio-rustls",
3323
+ "tokio-util",
3324
+ "tower",
3325
+ "tower-http",
3326
+ "tower-service",
3327
+ "url",
3328
+ "wasm-bindgen",
3329
+ "wasm-bindgen-futures",
3330
+ "wasm-streams",
3331
+ "web-sys",
3332
+ "webpki-roots",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "reqwest-middleware"
3337
+ version = "0.4.2"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e"
3340
+ dependencies = [
3341
+ "anyhow",
3342
+ "async-trait",
3343
+ "http 1.3.1",
3344
+ "reqwest",
3345
+ "serde",
3346
+ "thiserror 1.0.69",
3347
+ "tower-service",
3348
+ ]
3349
+
3350
+ [[package]]
3351
+ name = "reqwest-retry"
3352
+ version = "0.7.0"
3353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3354
+ checksum = "29c73e4195a6bfbcb174b790d9b3407ab90646976c55de58a6515da25d851178"
3355
+ dependencies = [
3356
+ "anyhow",
3357
+ "async-trait",
3358
+ "futures",
3359
+ "getrandom 0.2.16",
3360
+ "http 1.3.1",
3361
+ "hyper",
3362
+ "parking_lot 0.11.2",
3363
+ "reqwest",
3364
+ "reqwest-middleware",
3365
+ "retry-policies",
3366
+ "thiserror 1.0.69",
3367
+ "tokio",
3368
+ "tracing",
3369
+ "wasm-timer",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "retry-policies"
3374
+ version = "0.4.0"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "5875471e6cab2871bc150ecb8c727db5113c9338cc3354dc5ee3425b6aa40a1c"
3377
+ dependencies = [
3378
+ "rand 0.8.5",
3379
+ ]
3380
+
3008
3381
  [[package]]
3009
3382
  name = "ring"
3010
3383
  version = "0.17.14"
@@ -3013,7 +3386,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3013
3386
  dependencies = [
3014
3387
  "cc",
3015
3388
  "cfg-if",
3016
- "getrandom 0.2.15",
3389
+ "getrandom 0.2.16",
3017
3390
  "libc",
3018
3391
  "untrusted",
3019
3392
  "windows-sys 0.52.0",
@@ -3021,13 +3394,13 @@ dependencies = [
3021
3394
 
3022
3395
  [[package]]
3023
3396
  name = "rkyv"
3024
- version = "0.8.10"
3397
+ version = "0.8.12"
3025
3398
  source = "registry+https://github.com/rust-lang/crates.io-index"
3026
- checksum = "1e147371c75553e1e2fcdb483944a8540b8438c31426279553b9a8182a9b7b65"
3399
+ checksum = "35a640b26f007713818e9a9b65d34da1cf58538207b052916a83d80e43f3ffa4"
3027
3400
  dependencies = [
3028
3401
  "bytecheck",
3029
3402
  "bytes",
3030
- "hashbrown 0.15.2",
3403
+ "hashbrown 0.15.5",
3031
3404
  "indexmap",
3032
3405
  "munge",
3033
3406
  "ptr_meta",
@@ -3040,13 +3413,13 @@ dependencies = [
3040
3413
 
3041
3414
  [[package]]
3042
3415
  name = "rkyv_derive"
3043
- version = "0.8.10"
3416
+ version = "0.8.12"
3044
3417
  source = "registry+https://github.com/rust-lang/crates.io-index"
3045
- checksum = "246b40ac189af6c675d124b802e8ef6d5246c53e17367ce9501f8f66a81abb7a"
3418
+ checksum = "bd83f5f173ff41e00337d97f6572e416d022ef8a19f371817259ae960324c482"
3046
3419
  dependencies = [
3047
3420
  "proc-macro2",
3048
3421
  "quote",
3049
- "syn 2.0.100",
3422
+ "syn 2.0.106",
3050
3423
  ]
3051
3424
 
3052
3425
  [[package]]
@@ -3065,51 +3438,31 @@ dependencies = [
3065
3438
  "serde_derive",
3066
3439
  ]
3067
3440
 
3068
- [[package]]
3069
- name = "rustc-demangle"
3070
- version = "0.1.24"
3071
- source = "registry+https://github.com/rust-lang/crates.io-index"
3072
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
3073
-
3074
3441
  [[package]]
3075
3442
  name = "rustc-hash"
3076
- version = "1.1.0"
3443
+ version = "2.1.1"
3077
3444
  source = "registry+https://github.com/rust-lang/crates.io-index"
3078
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3445
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3079
3446
 
3080
3447
  [[package]]
3081
3448
  name = "rustix"
3082
- version = "0.38.44"
3449
+ version = "1.0.8"
3083
3450
  source = "registry+https://github.com/rust-lang/crates.io-index"
3084
- checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
3451
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
3085
3452
  dependencies = [
3086
- "bitflags 2.9.0",
3453
+ "bitflags 2.9.4",
3087
3454
  "errno",
3088
3455
  "libc",
3089
- "linux-raw-sys 0.4.15",
3090
- "windows-sys 0.59.0",
3091
- ]
3092
-
3093
- [[package]]
3094
- name = "rustix"
3095
- version = "1.0.5"
3096
- source = "registry+https://github.com/rust-lang/crates.io-index"
3097
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
3098
- dependencies = [
3099
- "bitflags 2.9.0",
3100
- "errno",
3101
- "libc",
3102
- "linux-raw-sys 0.9.4",
3103
- "windows-sys 0.59.0",
3456
+ "linux-raw-sys",
3457
+ "windows-sys 0.60.2",
3104
3458
  ]
3105
3459
 
3106
3460
  [[package]]
3107
3461
  name = "rustls"
3108
- version = "0.23.26"
3462
+ version = "0.23.31"
3109
3463
  source = "registry+https://github.com/rust-lang/crates.io-index"
3110
- checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
3464
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
3111
3465
  dependencies = [
3112
- "log",
3113
3466
  "once_cell",
3114
3467
  "ring",
3115
3468
  "rustls-pki-types",
@@ -3120,15 +3473,19 @@ dependencies = [
3120
3473
 
3121
3474
  [[package]]
3122
3475
  name = "rustls-pki-types"
3123
- version = "1.11.0"
3476
+ version = "1.12.0"
3124
3477
  source = "registry+https://github.com/rust-lang/crates.io-index"
3125
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3478
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
3479
+ dependencies = [
3480
+ "web-time",
3481
+ "zeroize",
3482
+ ]
3126
3483
 
3127
3484
  [[package]]
3128
3485
  name = "rustls-webpki"
3129
- version = "0.103.1"
3486
+ version = "0.103.4"
3130
3487
  source = "registry+https://github.com/rust-lang/crates.io-index"
3131
- checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
3488
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
3132
3489
  dependencies = [
3133
3490
  "ring",
3134
3491
  "rustls-pki-types",
@@ -3137,9 +3494,9 @@ dependencies = [
3137
3494
 
3138
3495
  [[package]]
3139
3496
  name = "rustversion"
3140
- version = "1.0.20"
3497
+ version = "1.0.22"
3141
3498
  source = "registry+https://github.com/rust-lang/crates.io-index"
3142
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
3499
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3143
3500
 
3144
3501
  [[package]]
3145
3502
  name = "ryu"
@@ -3164,9 +3521,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3164
3521
 
3165
3522
  [[package]]
3166
3523
  name = "sea-query"
3167
- version = "0.32.4"
3524
+ version = "0.32.7"
3168
3525
  source = "registry+https://github.com/rust-lang/crates.io-index"
3169
- checksum = "d99447c24da0cded00089e2021e1624af90878c65f7534319448d01da3df869d"
3526
+ checksum = "8a5d1c518eaf5eda38e5773f902b26ab6d5e9e9e2bb2349ca6c64cf96f80448c"
3170
3527
  dependencies = [
3171
3528
  "inherent",
3172
3529
  "sea-query-derive",
@@ -3178,12 +3535,12 @@ version = "0.4.3"
3178
3535
  source = "registry+https://github.com/rust-lang/crates.io-index"
3179
3536
  checksum = "bae0cbad6ab996955664982739354128c58d16e126114fe88c2a493642502aab"
3180
3537
  dependencies = [
3181
- "darling",
3538
+ "darling 0.20.11",
3182
3539
  "heck 0.4.1",
3183
3540
  "proc-macro2",
3184
3541
  "quote",
3185
- "syn 2.0.100",
3186
- "thiserror 2.0.12",
3542
+ "syn 2.0.106",
3543
+ "thiserror 2.0.17",
3187
3544
  ]
3188
3545
 
3189
3546
  [[package]]
@@ -3194,34 +3551,45 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
3194
3551
 
3195
3552
  [[package]]
3196
3553
  name = "serde"
3197
- version = "1.0.219"
3554
+ version = "1.0.228"
3555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3556
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3557
+ dependencies = [
3558
+ "serde_core",
3559
+ "serde_derive",
3560
+ ]
3561
+
3562
+ [[package]]
3563
+ name = "serde_core"
3564
+ version = "1.0.228"
3198
3565
  source = "registry+https://github.com/rust-lang/crates.io-index"
3199
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
3566
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3200
3567
  dependencies = [
3201
3568
  "serde_derive",
3202
3569
  ]
3203
3570
 
3204
3571
  [[package]]
3205
3572
  name = "serde_derive"
3206
- version = "1.0.219"
3573
+ version = "1.0.228"
3207
3574
  source = "registry+https://github.com/rust-lang/crates.io-index"
3208
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3575
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3209
3576
  dependencies = [
3210
3577
  "proc-macro2",
3211
3578
  "quote",
3212
- "syn 2.0.100",
3579
+ "syn 2.0.106",
3213
3580
  ]
3214
3581
 
3215
3582
  [[package]]
3216
3583
  name = "serde_json"
3217
- version = "1.0.140"
3584
+ version = "1.0.145"
3218
3585
  source = "registry+https://github.com/rust-lang/crates.io-index"
3219
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3586
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3220
3587
  dependencies = [
3221
3588
  "itoa",
3222
3589
  "memchr",
3223
3590
  "ryu",
3224
3591
  "serde",
3592
+ "serde_core",
3225
3593
  ]
3226
3594
 
3227
3595
  [[package]]
@@ -3236,6 +3604,19 @@ dependencies = [
3236
3604
  "serde",
3237
3605
  ]
3238
3606
 
3607
+ [[package]]
3608
+ name = "serde_yaml"
3609
+ version = "0.9.34+deprecated"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3612
+ dependencies = [
3613
+ "indexmap",
3614
+ "itoa",
3615
+ "ryu",
3616
+ "serde",
3617
+ "unsafe-libyaml",
3618
+ ]
3619
+
3239
3620
  [[package]]
3240
3621
  name = "sha1"
3241
3622
  version = "0.10.6"
@@ -3255,9 +3636,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3255
3636
 
3256
3637
  [[package]]
3257
3638
  name = "signal-hook-registry"
3258
- version = "1.4.2"
3639
+ version = "1.4.6"
3259
3640
  source = "registry+https://github.com/rust-lang/crates.io-index"
3260
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3641
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3261
3642
  dependencies = [
3262
3643
  "libc",
3263
3644
  ]
@@ -3282,21 +3663,18 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3282
3663
 
3283
3664
  [[package]]
3284
3665
  name = "sketches-ddsketch"
3285
- version = "0.2.2"
3666
+ version = "0.3.0"
3286
3667
  source = "registry+https://github.com/rust-lang/crates.io-index"
3287
- checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
3668
+ checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
3288
3669
  dependencies = [
3289
3670
  "serde",
3290
3671
  ]
3291
3672
 
3292
3673
  [[package]]
3293
3674
  name = "slab"
3294
- version = "0.4.9"
3675
+ version = "0.4.11"
3295
3676
  source = "registry+https://github.com/rust-lang/crates.io-index"
3296
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3297
- dependencies = [
3298
- "autocfg",
3299
- ]
3677
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3300
3678
 
3301
3679
  [[package]]
3302
3680
  name = "slice-group-by"
@@ -3306,20 +3684,30 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
3306
3684
 
3307
3685
  [[package]]
3308
3686
  name = "smallvec"
3309
- version = "1.15.0"
3687
+ version = "1.15.1"
3310
3688
  source = "registry+https://github.com/rust-lang/crates.io-index"
3311
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3689
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3312
3690
 
3313
3691
  [[package]]
3314
3692
  name = "socket2"
3315
- version = "0.5.9"
3693
+ version = "0.5.10"
3316
3694
  source = "registry+https://github.com/rust-lang/crates.io-index"
3317
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3695
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3318
3696
  dependencies = [
3319
3697
  "libc",
3320
3698
  "windows-sys 0.52.0",
3321
3699
  ]
3322
3700
 
3701
+ [[package]]
3702
+ name = "socket2"
3703
+ version = "0.6.0"
3704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3705
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
3706
+ dependencies = [
3707
+ "libc",
3708
+ "windows-sys 0.59.0",
3709
+ ]
3710
+
3323
3711
  [[package]]
3324
3712
  name = "stable_deref_trait"
3325
3713
  version = "1.2.0"
@@ -3327,31 +3715,57 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
3715
  checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3328
3716
 
3329
3717
  [[package]]
3330
- name = "strsim"
3331
- version = "0.11.1"
3718
+ name = "strsim"
3719
+ version = "0.10.0"
3720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3721
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3722
+
3723
+ [[package]]
3724
+ name = "strsim"
3725
+ version = "0.11.1"
3726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3727
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3728
+
3729
+ [[package]]
3730
+ name = "structural-convert"
3731
+ version = "0.13.0"
3732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3733
+ checksum = "e7c8b1faa3959a2aa326258e7ce07e28e0342f0c17d1d6ad092ddaa7057219d6"
3734
+ dependencies = [
3735
+ "structural-convert-derive",
3736
+ ]
3737
+
3738
+ [[package]]
3739
+ name = "structural-convert-derive"
3740
+ version = "0.3.0"
3332
3741
  source = "registry+https://github.com/rust-lang/crates.io-index"
3333
- checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3742
+ checksum = "6a5b3e4f58827163c8e46f249d87f48e508ffedd04cf4f03f2cbf115761c9d99"
3743
+ dependencies = [
3744
+ "darling 0.14.4",
3745
+ "proc-macro2",
3746
+ "quote",
3747
+ "syn 1.0.109",
3748
+ ]
3334
3749
 
3335
3750
  [[package]]
3336
3751
  name = "strum"
3337
- version = "0.26.3"
3752
+ version = "0.27.2"
3338
3753
  source = "registry+https://github.com/rust-lang/crates.io-index"
3339
- checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
3754
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
3340
3755
  dependencies = [
3341
3756
  "strum_macros",
3342
3757
  ]
3343
3758
 
3344
3759
  [[package]]
3345
3760
  name = "strum_macros"
3346
- version = "0.26.4"
3761
+ version = "0.27.2"
3347
3762
  source = "registry+https://github.com/rust-lang/crates.io-index"
3348
- checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3763
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3349
3764
  dependencies = [
3350
3765
  "heck 0.5.0",
3351
3766
  "proc-macro2",
3352
3767
  "quote",
3353
- "rustversion",
3354
- "syn 2.0.100",
3768
+ "syn 2.0.106",
3355
3769
  ]
3356
3770
 
3357
3771
  [[package]]
@@ -3373,36 +3787,46 @@ dependencies = [
3373
3787
 
3374
3788
  [[package]]
3375
3789
  name = "syn"
3376
- version = "2.0.100"
3790
+ version = "2.0.106"
3377
3791
  source = "registry+https://github.com/rust-lang/crates.io-index"
3378
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
3792
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3379
3793
  dependencies = [
3380
3794
  "proc-macro2",
3381
3795
  "quote",
3382
3796
  "unicode-ident",
3383
3797
  ]
3384
3798
 
3799
+ [[package]]
3800
+ name = "sync_wrapper"
3801
+ version = "1.0.2"
3802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3803
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3804
+ dependencies = [
3805
+ "futures-core",
3806
+ ]
3807
+
3385
3808
  [[package]]
3386
3809
  name = "synstructure"
3387
- version = "0.13.1"
3810
+ version = "0.13.2"
3388
3811
  source = "registry+https://github.com/rust-lang/crates.io-index"
3389
- checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3812
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3390
3813
  dependencies = [
3391
3814
  "proc-macro2",
3392
3815
  "quote",
3393
- "syn 2.0.100",
3816
+ "syn 2.0.106",
3394
3817
  ]
3395
3818
 
3396
3819
  [[package]]
3397
3820
  name = "tantivy"
3398
- version = "0.22.0"
3821
+ version = "0.25.0"
3399
3822
  source = "registry+https://github.com/rust-lang/crates.io-index"
3400
- checksum = "f8d0582f186c0a6d55655d24543f15e43607299425c5ad8352c242b914b31856"
3823
+ checksum = "502915c7381c5cb2d2781503962610cb880ad8f1a0ca95df1bae645d5ebf2545"
3401
3824
  dependencies = [
3402
3825
  "aho-corasick",
3403
3826
  "arc-swap",
3404
3827
  "base64",
3405
3828
  "bitpacking",
3829
+ "bon",
3406
3830
  "byteorder",
3407
3831
  "census",
3408
3832
  "crc32fast",
@@ -3412,14 +3836,14 @@ dependencies = [
3412
3836
  "fnv",
3413
3837
  "fs4",
3414
3838
  "htmlescape",
3415
- "itertools 0.12.1",
3839
+ "hyperloglogplus",
3840
+ "itertools 0.14.0",
3416
3841
  "levenshtein_automata",
3417
3842
  "log",
3418
3843
  "lru 0.12.5",
3419
3844
  "lz4_flex",
3420
3845
  "measure_time",
3421
3846
  "memmap2",
3422
- "num_cpus",
3423
3847
  "once_cell",
3424
3848
  "oneshot",
3425
3849
  "rayon",
@@ -3438,7 +3862,7 @@ dependencies = [
3438
3862
  "tantivy-stacker",
3439
3863
  "tantivy-tokenizer-api",
3440
3864
  "tempfile",
3441
- "thiserror 1.0.69",
3865
+ "thiserror 2.0.17",
3442
3866
  "time",
3443
3867
  "uuid",
3444
3868
  "winapi",
@@ -3446,22 +3870,22 @@ dependencies = [
3446
3870
 
3447
3871
  [[package]]
3448
3872
  name = "tantivy-bitpacker"
3449
- version = "0.6.0"
3873
+ version = "0.9.0"
3450
3874
  source = "registry+https://github.com/rust-lang/crates.io-index"
3451
- checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df"
3875
+ checksum = "c3b04eed5108d8283607da6710fe17a7663523440eaf7ea5a1a440d19a1448b6"
3452
3876
  dependencies = [
3453
3877
  "bitpacking",
3454
3878
  ]
3455
3879
 
3456
3880
  [[package]]
3457
3881
  name = "tantivy-columnar"
3458
- version = "0.3.0"
3882
+ version = "0.6.0"
3459
3883
  source = "registry+https://github.com/rust-lang/crates.io-index"
3460
- checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e"
3884
+ checksum = "8b628488ae936c83e92b5c4056833054ca56f76c0e616aee8339e24ac89119cd"
3461
3885
  dependencies = [
3462
3886
  "downcast-rs",
3463
3887
  "fastdivide",
3464
- "itertools 0.12.1",
3888
+ "itertools 0.14.0",
3465
3889
  "serde",
3466
3890
  "tantivy-bitpacker",
3467
3891
  "tantivy-common",
@@ -3471,9 +3895,9 @@ dependencies = [
3471
3895
 
3472
3896
  [[package]]
3473
3897
  name = "tantivy-common"
3474
- version = "0.7.0"
3898
+ version = "0.10.0"
3475
3899
  source = "registry+https://github.com/rust-lang/crates.io-index"
3476
- checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4"
3900
+ checksum = "f880aa7cab0c063a47b62596d10991cdd0b6e0e0575d9c5eeb298b307a25de55"
3477
3901
  dependencies = [
3478
3902
  "async-trait",
3479
3903
  "byteorder",
@@ -3495,19 +3919,23 @@ dependencies = [
3495
3919
 
3496
3920
  [[package]]
3497
3921
  name = "tantivy-query-grammar"
3498
- version = "0.22.0"
3922
+ version = "0.25.0"
3499
3923
  source = "registry+https://github.com/rust-lang/crates.io-index"
3500
- checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82"
3924
+ checksum = "768fccdc84d60d86235d42d7e4c33acf43c418258ff5952abf07bd7837fcd26b"
3501
3925
  dependencies = [
3502
3926
  "nom",
3927
+ "serde",
3928
+ "serde_json",
3503
3929
  ]
3504
3930
 
3505
3931
  [[package]]
3506
3932
  name = "tantivy-sstable"
3507
- version = "0.3.0"
3933
+ version = "0.6.0"
3508
3934
  source = "registry+https://github.com/rust-lang/crates.io-index"
3509
- checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e"
3935
+ checksum = "f8292095d1a8a2c2b36380ec455f910ab52dde516af36321af332c93f20ab7d5"
3510
3936
  dependencies = [
3937
+ "futures-util",
3938
+ "itertools 0.14.0",
3511
3939
  "tantivy-bitpacker",
3512
3940
  "tantivy-common",
3513
3941
  "tantivy-fst",
@@ -3516,9 +3944,9 @@ dependencies = [
3516
3944
 
3517
3945
  [[package]]
3518
3946
  name = "tantivy-stacker"
3519
- version = "0.3.0"
3947
+ version = "0.6.0"
3520
3948
  source = "registry+https://github.com/rust-lang/crates.io-index"
3521
- checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8"
3949
+ checksum = "23d38a379411169f0b3002c9cba61cdfe315f757e9d4f239c00c282497a0749d"
3522
3950
  dependencies = [
3523
3951
  "murmurhash32",
3524
3952
  "rand_distr",
@@ -3527,9 +3955,9 @@ dependencies = [
3527
3955
 
3528
3956
  [[package]]
3529
3957
  name = "tantivy-tokenizer-api"
3530
- version = "0.3.0"
3958
+ version = "0.6.0"
3531
3959
  source = "registry+https://github.com/rust-lang/crates.io-index"
3532
- checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04"
3960
+ checksum = "23024f6aeb25ceb1a0e27740c84bdb0fae52626737b7e9a9de6ad5aa25c7b038"
3533
3961
  dependencies = [
3534
3962
  "serde",
3535
3963
  ]
@@ -3553,15 +3981,15 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
3553
3981
 
3554
3982
  [[package]]
3555
3983
  name = "tempfile"
3556
- version = "3.19.1"
3984
+ version = "3.23.0"
3557
3985
  source = "registry+https://github.com/rust-lang/crates.io-index"
3558
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3986
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3559
3987
  dependencies = [
3560
3988
  "fastrand",
3561
- "getrandom 0.3.2",
3989
+ "getrandom 0.3.3",
3562
3990
  "once_cell",
3563
- "rustix 1.0.5",
3564
- "windows-sys 0.59.0",
3991
+ "rustix",
3992
+ "windows-sys 0.61.0",
3565
3993
  ]
3566
3994
 
3567
3995
  [[package]]
@@ -3575,11 +4003,11 @@ dependencies = [
3575
4003
 
3576
4004
  [[package]]
3577
4005
  name = "thiserror"
3578
- version = "2.0.12"
4006
+ version = "2.0.17"
3579
4007
  source = "registry+https://github.com/rust-lang/crates.io-index"
3580
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
4008
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3581
4009
  dependencies = [
3582
- "thiserror-impl 2.0.12",
4010
+ "thiserror-impl 2.0.17",
3583
4011
  ]
3584
4012
 
3585
4013
  [[package]]
@@ -3590,28 +4018,27 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3590
4018
  dependencies = [
3591
4019
  "proc-macro2",
3592
4020
  "quote",
3593
- "syn 2.0.100",
4021
+ "syn 2.0.106",
3594
4022
  ]
3595
4023
 
3596
4024
  [[package]]
3597
4025
  name = "thiserror-impl"
3598
- version = "2.0.12"
4026
+ version = "2.0.17"
3599
4027
  source = "registry+https://github.com/rust-lang/crates.io-index"
3600
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4028
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3601
4029
  dependencies = [
3602
4030
  "proc-macro2",
3603
4031
  "quote",
3604
- "syn 2.0.100",
4032
+ "syn 2.0.106",
3605
4033
  ]
3606
4034
 
3607
4035
  [[package]]
3608
4036
  name = "time"
3609
- version = "0.3.41"
4037
+ version = "0.3.42"
3610
4038
  source = "registry+https://github.com/rust-lang/crates.io-index"
3611
- checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
4039
+ checksum = "8ca967379f9d8eb8058d86ed467d81d03e81acd45757e4ca341c24affbe8e8e3"
3612
4040
  dependencies = [
3613
4041
  "deranged",
3614
- "itoa",
3615
4042
  "num-conv",
3616
4043
  "powerfmt",
3617
4044
  "serde",
@@ -3621,15 +4048,15 @@ dependencies = [
3621
4048
 
3622
4049
  [[package]]
3623
4050
  name = "time-core"
3624
- version = "0.1.4"
4051
+ version = "0.1.5"
3625
4052
  source = "registry+https://github.com/rust-lang/crates.io-index"
3626
- checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
4053
+ checksum = "a9108bb380861b07264b950ded55a44a14a4adc68b9f5efd85aafc3aa4d40a68"
3627
4054
 
3628
4055
  [[package]]
3629
4056
  name = "time-macros"
3630
- version = "0.2.22"
4057
+ version = "0.2.23"
3631
4058
  source = "registry+https://github.com/rust-lang/crates.io-index"
3632
- checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
4059
+ checksum = "7182799245a7264ce590b349d90338f1c1affad93d2639aed5f8f69c090b334c"
3633
4060
  dependencies = [
3634
4061
  "num-conv",
3635
4062
  "time-core",
@@ -3637,9 +4064,9 @@ dependencies = [
3637
4064
 
3638
4065
  [[package]]
3639
4066
  name = "tinystr"
3640
- version = "0.7.6"
4067
+ version = "0.8.1"
3641
4068
  source = "registry+https://github.com/rust-lang/crates.io-index"
3642
- checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4069
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3643
4070
  dependencies = [
3644
4071
  "displaydoc",
3645
4072
  "zerovec",
@@ -3657,9 +4084,9 @@ dependencies = [
3657
4084
 
3658
4085
  [[package]]
3659
4086
  name = "tinyvec"
3660
- version = "1.9.0"
4087
+ version = "1.10.0"
3661
4088
  source = "registry+https://github.com/rust-lang/crates.io-index"
3662
- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
4089
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3663
4090
  dependencies = [
3664
4091
  "tinyvec_macros",
3665
4092
  ]
@@ -3672,26 +4099,47 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3672
4099
 
3673
4100
  [[package]]
3674
4101
  name = "tokio"
3675
- version = "1.44.2"
4102
+ version = "1.48.0"
3676
4103
  source = "registry+https://github.com/rust-lang/crates.io-index"
3677
- checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
4104
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3678
4105
  dependencies = [
3679
- "backtrace",
3680
4106
  "bytes",
3681
4107
  "libc",
3682
4108
  "mio",
3683
- "parking_lot",
4109
+ "parking_lot 0.12.4",
3684
4110
  "pin-project-lite",
3685
4111
  "signal-hook-registry",
3686
- "socket2",
3687
- "windows-sys 0.52.0",
4112
+ "socket2 0.6.0",
4113
+ "tokio-macros",
4114
+ "windows-sys 0.61.0",
4115
+ ]
4116
+
4117
+ [[package]]
4118
+ name = "tokio-macros"
4119
+ version = "2.6.0"
4120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4121
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
4122
+ dependencies = [
4123
+ "proc-macro2",
4124
+ "quote",
4125
+ "syn 2.0.106",
4126
+ ]
4127
+
4128
+ [[package]]
4129
+ name = "tokio-rustls"
4130
+ version = "0.26.2"
4131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4132
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
4133
+ dependencies = [
4134
+ "rustls",
4135
+ "tokio",
3688
4136
  ]
3689
4137
 
3690
4138
  [[package]]
3691
4139
  name = "tokio-util"
3692
- version = "0.7.14"
4140
+ version = "0.7.16"
3693
4141
  source = "registry+https://github.com/rust-lang/crates.io-index"
3694
- checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
4142
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
3695
4143
  dependencies = [
3696
4144
  "bytes",
3697
4145
  "futures-core",
@@ -3700,6 +4148,51 @@ dependencies = [
3700
4148
  "tokio",
3701
4149
  ]
3702
4150
 
4151
+ [[package]]
4152
+ name = "tower"
4153
+ version = "0.5.2"
4154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4155
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4156
+ dependencies = [
4157
+ "futures-core",
4158
+ "futures-util",
4159
+ "pin-project-lite",
4160
+ "sync_wrapper",
4161
+ "tokio",
4162
+ "tower-layer",
4163
+ "tower-service",
4164
+ ]
4165
+
4166
+ [[package]]
4167
+ name = "tower-http"
4168
+ version = "0.6.6"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
4171
+ dependencies = [
4172
+ "bitflags 2.9.4",
4173
+ "bytes",
4174
+ "futures-util",
4175
+ "http 1.3.1",
4176
+ "http-body",
4177
+ "iri-string",
4178
+ "pin-project-lite",
4179
+ "tower",
4180
+ "tower-layer",
4181
+ "tower-service",
4182
+ ]
4183
+
4184
+ [[package]]
4185
+ name = "tower-layer"
4186
+ version = "0.3.3"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4189
+
4190
+ [[package]]
4191
+ name = "tower-service"
4192
+ version = "0.3.3"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4195
+
3703
4196
  [[package]]
3704
4197
  name = "tracing"
3705
4198
  version = "0.1.41"
@@ -3714,24 +4207,30 @@ dependencies = [
3714
4207
 
3715
4208
  [[package]]
3716
4209
  name = "tracing-attributes"
3717
- version = "0.1.28"
4210
+ version = "0.1.30"
3718
4211
  source = "registry+https://github.com/rust-lang/crates.io-index"
3719
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
4212
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3720
4213
  dependencies = [
3721
4214
  "proc-macro2",
3722
4215
  "quote",
3723
- "syn 2.0.100",
4216
+ "syn 2.0.106",
3724
4217
  ]
3725
4218
 
3726
4219
  [[package]]
3727
4220
  name = "tracing-core"
3728
- version = "0.1.33"
4221
+ version = "0.1.34"
3729
4222
  source = "registry+https://github.com/rust-lang/crates.io-index"
3730
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
4223
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3731
4224
  dependencies = [
3732
4225
  "once_cell",
3733
4226
  ]
3734
4227
 
4228
+ [[package]]
4229
+ name = "try-lock"
4230
+ version = "0.2.5"
4231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4232
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4233
+
3735
4234
  [[package]]
3736
4235
  name = "typenum"
3737
4236
  version = "1.18.0"
@@ -3752,9 +4251,9 @@ checksum = "6b12e05d9e06373163a9bb6bb8c263c261b396643a99445fe6b9811fd376581b"
3752
4251
 
3753
4252
  [[package]]
3754
4253
  name = "unicode-ident"
3755
- version = "1.0.18"
4254
+ version = "1.0.19"
3756
4255
  source = "registry+https://github.com/rust-lang/crates.io-index"
3757
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
4256
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
3758
4257
 
3759
4258
  [[package]]
3760
4259
  name = "unicode-normalization"
@@ -3773,15 +4272,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3773
4272
 
3774
4273
  [[package]]
3775
4274
  name = "unicode-width"
3776
- version = "0.1.14"
3777
- source = "registry+https://github.com/rust-lang/crates.io-index"
3778
- checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3779
-
3780
- [[package]]
3781
- name = "unicode-width"
3782
- version = "0.2.0"
4275
+ version = "0.2.1"
3783
4276
  source = "registry+https://github.com/rust-lang/crates.io-index"
3784
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
4277
+ checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
3785
4278
 
3786
4279
  [[package]]
3787
4280
  name = "unicode-xid"
@@ -3795,6 +4288,18 @@ version = "0.2.4"
3795
4288
  source = "registry+https://github.com/rust-lang/crates.io-index"
3796
4289
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3797
4290
 
4291
+ [[package]]
4292
+ name = "unit-prefix"
4293
+ version = "0.5.1"
4294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4295
+ checksum = "323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817"
4296
+
4297
+ [[package]]
4298
+ name = "unsafe-libyaml"
4299
+ version = "0.2.11"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4302
+
3798
4303
  [[package]]
3799
4304
  name = "untrusted"
3800
4305
  version = "0.9.0"
@@ -3802,37 +4307,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
4307
  checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3803
4308
 
3804
4309
  [[package]]
3805
- name = "ureq"
3806
- version = "2.12.1"
4310
+ name = "unty"
4311
+ version = "0.0.4"
3807
4312
  source = "registry+https://github.com/rust-lang/crates.io-index"
3808
- checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
3809
- dependencies = [
3810
- "base64",
3811
- "log",
3812
- "once_cell",
3813
- "rustls",
3814
- "rustls-pki-types",
3815
- "url",
3816
- "webpki-roots",
3817
- ]
4313
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3818
4314
 
3819
4315
  [[package]]
3820
4316
  name = "url"
3821
- version = "2.5.4"
4317
+ version = "2.5.7"
3822
4318
  source = "registry+https://github.com/rust-lang/crates.io-index"
3823
- checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
4319
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3824
4320
  dependencies = [
3825
4321
  "form_urlencoded",
3826
4322
  "idna",
3827
4323
  "percent-encoding",
4324
+ "serde",
3828
4325
  ]
3829
4326
 
3830
- [[package]]
3831
- name = "utf16_iter"
3832
- version = "1.0.5"
3833
- source = "registry+https://github.com/rust-lang/crates.io-index"
3834
- checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3835
-
3836
4327
  [[package]]
3837
4328
  name = "utf8-ranges"
3838
4329
  version = "1.0.5"
@@ -3853,13 +4344,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3853
4344
 
3854
4345
  [[package]]
3855
4346
  name = "uuid"
3856
- version = "1.16.0"
4347
+ version = "1.18.1"
3857
4348
  source = "registry+https://github.com/rust-lang/crates.io-index"
3858
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
4349
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
3859
4350
  dependencies = [
3860
- "getrandom 0.3.2",
4351
+ "getrandom 0.3.3",
3861
4352
  "js-sys",
3862
- "rand 0.9.1",
4353
+ "rand 0.9.2",
3863
4354
  "serde",
3864
4355
  "uuid-macro-internal",
3865
4356
  "wasm-bindgen",
@@ -3867,27 +4358,27 @@ dependencies = [
3867
4358
 
3868
4359
  [[package]]
3869
4360
  name = "uuid-macro-internal"
3870
- version = "1.16.0"
4361
+ version = "1.18.1"
3871
4362
  source = "registry+https://github.com/rust-lang/crates.io-index"
3872
- checksum = "72dcd78c4f979627a754f5522cea6e6a25e55139056535fe6e69c506cd64a862"
4363
+ checksum = "d9384a660318abfbd7f8932c34d67e4d1ec511095f95972ddc01e19d7ba8413f"
3873
4364
  dependencies = [
3874
4365
  "proc-macro2",
3875
4366
  "quote",
3876
- "syn 2.0.100",
4367
+ "syn 2.0.106",
3877
4368
  ]
3878
4369
 
3879
- [[package]]
3880
- name = "validation"
3881
- version = "0.0.1"
3882
- source = "registry+https://github.com/rust-lang/crates.io-index"
3883
- checksum = "3fb8044f0b8a3e94bc8cd089c6a2e42e435553093800b76762418d4bbc3289cc"
3884
-
3885
4370
  [[package]]
3886
4371
  name = "version_check"
3887
4372
  version = "0.9.5"
3888
4373
  source = "registry+https://github.com/rust-lang/crates.io-index"
3889
4374
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3890
4375
 
4376
+ [[package]]
4377
+ name = "virtue"
4378
+ version = "0.0.18"
4379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4380
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
4381
+
3891
4382
  [[package]]
3892
4383
  name = "walkdir"
3893
4384
  version = "2.5.0"
@@ -3898,19 +4389,28 @@ dependencies = [
3898
4389
  "winapi-util",
3899
4390
  ]
3900
4391
 
4392
+ [[package]]
4393
+ name = "want"
4394
+ version = "0.3.1"
4395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4396
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4397
+ dependencies = [
4398
+ "try-lock",
4399
+ ]
4400
+
3901
4401
  [[package]]
3902
4402
  name = "wasi"
3903
- version = "0.11.0+wasi-snapshot-preview1"
4403
+ version = "0.11.1+wasi-snapshot-preview1"
3904
4404
  source = "registry+https://github.com/rust-lang/crates.io-index"
3905
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4405
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3906
4406
 
3907
4407
  [[package]]
3908
4408
  name = "wasi"
3909
- version = "0.14.2+wasi-0.2.4"
4409
+ version = "0.14.3+wasi-0.2.4"
3910
4410
  source = "registry+https://github.com/rust-lang/crates.io-index"
3911
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
4411
+ checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
3912
4412
  dependencies = [
3913
- "wit-bindgen-rt",
4413
+ "wit-bindgen",
3914
4414
  ]
3915
4415
 
3916
4416
  [[package]]
@@ -3935,10 +4435,23 @@ dependencies = [
3935
4435
  "log",
3936
4436
  "proc-macro2",
3937
4437
  "quote",
3938
- "syn 2.0.100",
4438
+ "syn 2.0.106",
3939
4439
  "wasm-bindgen-shared",
3940
4440
  ]
3941
4441
 
4442
+ [[package]]
4443
+ name = "wasm-bindgen-futures"
4444
+ version = "0.4.50"
4445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4446
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
4447
+ dependencies = [
4448
+ "cfg-if",
4449
+ "js-sys",
4450
+ "once_cell",
4451
+ "wasm-bindgen",
4452
+ "web-sys",
4453
+ ]
4454
+
3942
4455
  [[package]]
3943
4456
  name = "wasm-bindgen-macro"
3944
4457
  version = "0.2.100"
@@ -3957,7 +4470,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3957
4470
  dependencies = [
3958
4471
  "proc-macro2",
3959
4472
  "quote",
3960
- "syn 2.0.100",
4473
+ "syn 2.0.106",
3961
4474
  "wasm-bindgen-backend",
3962
4475
  "wasm-bindgen-shared",
3963
4476
  ]
@@ -3971,6 +4484,34 @@ dependencies = [
3971
4484
  "unicode-ident",
3972
4485
  ]
3973
4486
 
4487
+ [[package]]
4488
+ name = "wasm-streams"
4489
+ version = "0.4.2"
4490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4491
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4492
+ dependencies = [
4493
+ "futures-util",
4494
+ "js-sys",
4495
+ "wasm-bindgen",
4496
+ "wasm-bindgen-futures",
4497
+ "web-sys",
4498
+ ]
4499
+
4500
+ [[package]]
4501
+ name = "wasm-timer"
4502
+ version = "0.2.5"
4503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4504
+ checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
4505
+ dependencies = [
4506
+ "futures",
4507
+ "js-sys",
4508
+ "parking_lot 0.11.2",
4509
+ "pin-utils",
4510
+ "wasm-bindgen",
4511
+ "wasm-bindgen-futures",
4512
+ "web-sys",
4513
+ ]
4514
+
3974
4515
  [[package]]
3975
4516
  name = "web-sys"
3976
4517
  version = "0.3.77"
@@ -3993,9 +4534,9 @@ dependencies = [
3993
4534
 
3994
4535
  [[package]]
3995
4536
  name = "webpki-roots"
3996
- version = "0.26.8"
4537
+ version = "1.0.2"
3997
4538
  source = "registry+https://github.com/rust-lang/crates.io-index"
3998
- checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
4539
+ checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
3999
4540
  dependencies = [
4000
4541
  "rustls-pki-types",
4001
4542
  ]
@@ -4028,11 +4569,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4028
4569
 
4029
4570
  [[package]]
4030
4571
  name = "winapi-util"
4031
- version = "0.1.9"
4572
+ version = "0.1.10"
4032
4573
  source = "registry+https://github.com/rust-lang/crates.io-index"
4033
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
4574
+ checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
4034
4575
  dependencies = [
4035
- "windows-sys 0.59.0",
4576
+ "windows-sys 0.60.2",
4036
4577
  ]
4037
4578
 
4038
4579
  [[package]]
@@ -4041,13 +4582,25 @@ version = "0.4.0"
4041
4582
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
4583
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4043
4584
 
4585
+ [[package]]
4586
+ name = "windows-link"
4587
+ version = "0.1.3"
4588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4589
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4590
+
4591
+ [[package]]
4592
+ name = "windows-link"
4593
+ version = "0.2.0"
4594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4595
+ checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
4596
+
4044
4597
  [[package]]
4045
4598
  name = "windows-sys"
4046
4599
  version = "0.52.0"
4047
4600
  source = "registry+https://github.com/rust-lang/crates.io-index"
4048
4601
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4049
4602
  dependencies = [
4050
- "windows-targets",
4603
+ "windows-targets 0.52.6",
4051
4604
  ]
4052
4605
 
4053
4606
  [[package]]
@@ -4056,7 +4609,25 @@ version = "0.59.0"
4056
4609
  source = "registry+https://github.com/rust-lang/crates.io-index"
4057
4610
  checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4058
4611
  dependencies = [
4059
- "windows-targets",
4612
+ "windows-targets 0.52.6",
4613
+ ]
4614
+
4615
+ [[package]]
4616
+ name = "windows-sys"
4617
+ version = "0.60.2"
4618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4619
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4620
+ dependencies = [
4621
+ "windows-targets 0.53.3",
4622
+ ]
4623
+
4624
+ [[package]]
4625
+ name = "windows-sys"
4626
+ version = "0.61.0"
4627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4628
+ checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
4629
+ dependencies = [
4630
+ "windows-link 0.2.0",
4060
4631
  ]
4061
4632
 
4062
4633
  [[package]]
@@ -4065,14 +4636,31 @@ version = "0.52.6"
4065
4636
  source = "registry+https://github.com/rust-lang/crates.io-index"
4066
4637
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4067
4638
  dependencies = [
4068
- "windows_aarch64_gnullvm",
4069
- "windows_aarch64_msvc",
4070
- "windows_i686_gnu",
4071
- "windows_i686_gnullvm",
4072
- "windows_i686_msvc",
4073
- "windows_x86_64_gnu",
4074
- "windows_x86_64_gnullvm",
4075
- "windows_x86_64_msvc",
4639
+ "windows_aarch64_gnullvm 0.52.6",
4640
+ "windows_aarch64_msvc 0.52.6",
4641
+ "windows_i686_gnu 0.52.6",
4642
+ "windows_i686_gnullvm 0.52.6",
4643
+ "windows_i686_msvc 0.52.6",
4644
+ "windows_x86_64_gnu 0.52.6",
4645
+ "windows_x86_64_gnullvm 0.52.6",
4646
+ "windows_x86_64_msvc 0.52.6",
4647
+ ]
4648
+
4649
+ [[package]]
4650
+ name = "windows-targets"
4651
+ version = "0.53.3"
4652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4653
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
4654
+ dependencies = [
4655
+ "windows-link 0.1.3",
4656
+ "windows_aarch64_gnullvm 0.53.0",
4657
+ "windows_aarch64_msvc 0.53.0",
4658
+ "windows_i686_gnu 0.53.0",
4659
+ "windows_i686_gnullvm 0.53.0",
4660
+ "windows_i686_msvc 0.53.0",
4661
+ "windows_x86_64_gnu 0.53.0",
4662
+ "windows_x86_64_gnullvm 0.53.0",
4663
+ "windows_x86_64_msvc 0.53.0",
4076
4664
  ]
4077
4665
 
4078
4666
  [[package]]
@@ -4081,42 +4669,84 @@ version = "0.52.6"
4081
4669
  source = "registry+https://github.com/rust-lang/crates.io-index"
4082
4670
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4083
4671
 
4672
+ [[package]]
4673
+ name = "windows_aarch64_gnullvm"
4674
+ version = "0.53.0"
4675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4676
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4677
+
4084
4678
  [[package]]
4085
4679
  name = "windows_aarch64_msvc"
4086
4680
  version = "0.52.6"
4087
4681
  source = "registry+https://github.com/rust-lang/crates.io-index"
4088
4682
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4089
4683
 
4684
+ [[package]]
4685
+ name = "windows_aarch64_msvc"
4686
+ version = "0.53.0"
4687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4688
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4689
+
4090
4690
  [[package]]
4091
4691
  name = "windows_i686_gnu"
4092
4692
  version = "0.52.6"
4093
4693
  source = "registry+https://github.com/rust-lang/crates.io-index"
4094
4694
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4095
4695
 
4696
+ [[package]]
4697
+ name = "windows_i686_gnu"
4698
+ version = "0.53.0"
4699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4700
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4701
+
4096
4702
  [[package]]
4097
4703
  name = "windows_i686_gnullvm"
4098
4704
  version = "0.52.6"
4099
4705
  source = "registry+https://github.com/rust-lang/crates.io-index"
4100
4706
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4101
4707
 
4708
+ [[package]]
4709
+ name = "windows_i686_gnullvm"
4710
+ version = "0.53.0"
4711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4712
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4713
+
4102
4714
  [[package]]
4103
4715
  name = "windows_i686_msvc"
4104
4716
  version = "0.52.6"
4105
4717
  source = "registry+https://github.com/rust-lang/crates.io-index"
4106
4718
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4107
4719
 
4720
+ [[package]]
4721
+ name = "windows_i686_msvc"
4722
+ version = "0.53.0"
4723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4724
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4725
+
4108
4726
  [[package]]
4109
4727
  name = "windows_x86_64_gnu"
4110
4728
  version = "0.52.6"
4111
4729
  source = "registry+https://github.com/rust-lang/crates.io-index"
4112
4730
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4113
4731
 
4732
+ [[package]]
4733
+ name = "windows_x86_64_gnu"
4734
+ version = "0.53.0"
4735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4736
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4737
+
4114
4738
  [[package]]
4115
4739
  name = "windows_x86_64_gnullvm"
4116
4740
  version = "0.52.6"
4117
4741
  source = "registry+https://github.com/rust-lang/crates.io-index"
4118
4742
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4119
4743
 
4744
+ [[package]]
4745
+ name = "windows_x86_64_gnullvm"
4746
+ version = "0.53.0"
4747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4748
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4749
+
4120
4750
  [[package]]
4121
4751
  name = "windows_x86_64_msvc"
4122
4752
  version = "0.52.6"
@@ -4124,34 +4754,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4124
4754
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4125
4755
 
4126
4756
  [[package]]
4127
- name = "wit-bindgen-rt"
4128
- version = "0.39.0"
4757
+ name = "windows_x86_64_msvc"
4758
+ version = "0.53.0"
4759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4760
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4761
+
4762
+ [[package]]
4763
+ name = "wiremock"
4764
+ version = "0.6.5"
4129
4765
  source = "registry+https://github.com/rust-lang/crates.io-index"
4130
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4766
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
4131
4767
  dependencies = [
4132
- "bitflags 2.9.0",
4768
+ "assert-json-diff",
4769
+ "base64",
4770
+ "deadpool",
4771
+ "futures",
4772
+ "http 1.3.1",
4773
+ "http-body-util",
4774
+ "hyper",
4775
+ "hyper-util",
4776
+ "log",
4777
+ "once_cell",
4778
+ "regex",
4779
+ "serde",
4780
+ "serde_json",
4781
+ "tokio",
4782
+ "url",
4133
4783
  ]
4134
4784
 
4135
4785
  [[package]]
4136
- name = "write16"
4137
- version = "1.0.0"
4786
+ name = "wit-bindgen"
4787
+ version = "0.45.0"
4138
4788
  source = "registry+https://github.com/rust-lang/crates.io-index"
4139
- checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4789
+ checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
4140
4790
 
4141
4791
  [[package]]
4142
4792
  name = "writeable"
4143
- version = "0.5.5"
4793
+ version = "0.6.1"
4144
4794
  source = "registry+https://github.com/rust-lang/crates.io-index"
4145
- checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4795
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4146
4796
 
4147
4797
  [[package]]
4148
4798
  name = "xattr"
4149
- version = "1.5.0"
4799
+ version = "1.5.1"
4150
4800
  source = "registry+https://github.com/rust-lang/crates.io-index"
4151
- checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
4801
+ checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
4152
4802
  dependencies = [
4153
4803
  "libc",
4154
- "rustix 1.0.5",
4804
+ "rustix",
4155
4805
  ]
4156
4806
 
4157
4807
  [[package]]
@@ -4162,9 +4812,9 @@ checksum = "aed111bd9e48a802518765906cbdadf0b45afb72b9c81ab049a3b86252adffdd"
4162
4812
 
4163
4813
  [[package]]
4164
4814
  name = "yoke"
4165
- version = "0.7.5"
4815
+ version = "0.8.0"
4166
4816
  source = "registry+https://github.com/rust-lang/crates.io-index"
4167
- checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4817
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4168
4818
  dependencies = [
4169
4819
  "serde",
4170
4820
  "stable_deref_trait",
@@ -4174,54 +4824,34 @@ dependencies = [
4174
4824
 
4175
4825
  [[package]]
4176
4826
  name = "yoke-derive"
4177
- version = "0.7.5"
4827
+ version = "0.8.0"
4178
4828
  source = "registry+https://github.com/rust-lang/crates.io-index"
4179
- checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4829
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4180
4830
  dependencies = [
4181
4831
  "proc-macro2",
4182
4832
  "quote",
4183
- "syn 2.0.100",
4833
+ "syn 2.0.106",
4184
4834
  "synstructure",
4185
4835
  ]
4186
4836
 
4187
4837
  [[package]]
4188
4838
  name = "zerocopy"
4189
- version = "0.7.35"
4190
- source = "registry+https://github.com/rust-lang/crates.io-index"
4191
- checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4192
- dependencies = [
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",
4203
- ]
4204
-
4205
- [[package]]
4206
- name = "zerocopy-derive"
4207
- version = "0.7.35"
4839
+ version = "0.8.26"
4208
4840
  source = "registry+https://github.com/rust-lang/crates.io-index"
4209
- checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4841
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
4210
4842
  dependencies = [
4211
- "proc-macro2",
4212
- "quote",
4213
- "syn 2.0.100",
4843
+ "zerocopy-derive",
4214
4844
  ]
4215
4845
 
4216
4846
  [[package]]
4217
4847
  name = "zerocopy-derive"
4218
- version = "0.8.24"
4848
+ version = "0.8.26"
4219
4849
  source = "registry+https://github.com/rust-lang/crates.io-index"
4220
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
4850
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
4221
4851
  dependencies = [
4222
4852
  "proc-macro2",
4223
4853
  "quote",
4224
- "syn 2.0.100",
4854
+ "syn 2.0.106",
4225
4855
  ]
4226
4856
 
4227
4857
  [[package]]
@@ -4241,7 +4871,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4241
4871
  dependencies = [
4242
4872
  "proc-macro2",
4243
4873
  "quote",
4244
- "syn 2.0.100",
4874
+ "syn 2.0.106",
4245
4875
  "synstructure",
4246
4876
  ]
4247
4877
 
@@ -4251,11 +4881,22 @@ version = "1.8.1"
4251
4881
  source = "registry+https://github.com/rust-lang/crates.io-index"
4252
4882
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4253
4883
 
4884
+ [[package]]
4885
+ name = "zerotrie"
4886
+ version = "0.2.2"
4887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4888
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4889
+ dependencies = [
4890
+ "displaydoc",
4891
+ "yoke",
4892
+ "zerofrom",
4893
+ ]
4894
+
4254
4895
  [[package]]
4255
4896
  name = "zerovec"
4256
- version = "0.10.4"
4897
+ version = "0.11.4"
4257
4898
  source = "registry+https://github.com/rust-lang/crates.io-index"
4258
- checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4899
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4259
4900
  dependencies = [
4260
4901
  "yoke",
4261
4902
  "zerofrom",
@@ -4264,13 +4905,13 @@ dependencies = [
4264
4905
 
4265
4906
  [[package]]
4266
4907
  name = "zerovec-derive"
4267
- version = "0.10.3"
4908
+ version = "0.11.1"
4268
4909
  source = "registry+https://github.com/rust-lang/crates.io-index"
4269
- checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4910
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4270
4911
  dependencies = [
4271
4912
  "proc-macro2",
4272
4913
  "quote",
4273
- "syn 2.0.100",
4914
+ "syn 2.0.106",
4274
4915
  ]
4275
4916
 
4276
4917
  [[package]]