slumber-python 4.3.1__tar.gz → 5.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.
- {slumber_python-4.3.1 → slumber_python-5.0.0}/Cargo.lock +960 -1017
- {slumber_python-4.3.1 → slumber_python-5.0.0}/Cargo.toml +19 -52
- {slumber_python-4.3.1 → slumber_python-5.0.0}/PKG-INFO +3 -3
- {slumber_python-4.3.1/crates/python → slumber_python-5.0.0}/README.md +2 -2
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/Cargo.toml +1 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/cereal.rs +109 -47
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/lib.rs +2 -2
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/tui/input.rs +129 -120
- slumber_python-5.0.0/crates/config/src/tui/theme.rs +154 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/tui.rs +1 -1
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/Cargo.toml +3 -3
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/collection/cereal.rs +3 -2
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/collection/json.rs +87 -10
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/collection/models.rs +128 -53
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/collection/recipe_tree.rs +24 -5
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/collection/schema.rs +2 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/collection.rs +9 -3
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/database/convert.rs +55 -27
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/database/migrations.rs +151 -3
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/database/tests.rs +125 -26
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/database.rs +206 -70
- slumber_python-5.0.0/crates/core/src/http/content_type.rs +159 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/http/models.rs +262 -170
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/http/tests.rs +206 -73
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/http.rs +244 -133
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/render/functions.rs +18 -21
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/render/tests.rs +2 -2
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/render/util.rs +0 -11
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/render.rs +54 -50
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/test_util.rs +33 -22
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/util.rs +1 -2
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/Cargo.toml +2 -1
- {slumber_python-4.3.1 → slumber_python-5.0.0/crates/python}/README.md +2 -2
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/src/lib.rs +137 -58
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/cereal.rs +1 -1
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/error.rs +19 -4
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/expression.rs +41 -46
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/lib.rs +16 -14
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/Cargo.toml +3 -4
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/src/lib.rs +20 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/src/paths.rs +86 -39
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/src/test_util.rs +60 -24
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/src/yaml.rs +1 -1
- slumber_python-4.3.1/crates/config/src/tui/theme.rs +0 -88
- slumber_python-4.3.1/crates/core/src/http/content_type.rs +0 -330
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/default.yml +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/default_old.yml +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/config/src/tui/mime.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/http/curl.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/core/src/lib.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/macros/Cargo.toml +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/macros/src/lib.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/dev.py +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/mise.toml +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/slumber.pyi +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/tests/slumber.yml +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/tests/test.py +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/python/uv.lock +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/Cargo.toml +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/proptest-regressions/parse.txt +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/display.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/parse.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/test_util.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/tests.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/template/src/value.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/src/yaml/error.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/crates/util/src/yaml/resolve.rs +0 -0
- {slumber_python-4.3.1 → slumber_python-5.0.0}/pyproject.toml +0 -0
|
@@ -4,24 +4,24 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.25.1"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"gimli",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
15
|
name = "adler2"
|
|
16
|
-
version = "2.0.
|
|
16
|
+
version = "2.0.1"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aho-corasick"
|
|
22
|
-
version = "1.1.
|
|
22
|
+
version = "1.1.4"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
25
25
|
dependencies = [
|
|
26
26
|
"memchr",
|
|
27
27
|
]
|
|
@@ -32,12 +32,6 @@ version = "0.2.21"
|
|
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
33
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
34
34
|
|
|
35
|
-
[[package]]
|
|
36
|
-
name = "android-tzdata"
|
|
37
|
-
version = "0.1.1"
|
|
38
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
40
|
-
|
|
41
35
|
[[package]]
|
|
42
36
|
name = "android_system_properties"
|
|
43
37
|
version = "0.1.5"
|
|
@@ -49,9 +43,9 @@ dependencies = [
|
|
|
49
43
|
|
|
50
44
|
[[package]]
|
|
51
45
|
name = "anstream"
|
|
52
|
-
version = "0.6.
|
|
46
|
+
version = "0.6.21"
|
|
53
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
48
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
55
49
|
dependencies = [
|
|
56
50
|
"anstyle",
|
|
57
51
|
"anstyle-parse",
|
|
@@ -64,37 +58,37 @@ dependencies = [
|
|
|
64
58
|
|
|
65
59
|
[[package]]
|
|
66
60
|
name = "anstyle"
|
|
67
|
-
version = "1.0.
|
|
61
|
+
version = "1.0.13"
|
|
68
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
63
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
70
64
|
|
|
71
65
|
[[package]]
|
|
72
66
|
name = "anstyle-parse"
|
|
73
|
-
version = "0.2.
|
|
67
|
+
version = "0.2.7"
|
|
74
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
-
checksum = "
|
|
69
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
76
70
|
dependencies = [
|
|
77
71
|
"utf8parse",
|
|
78
72
|
]
|
|
79
73
|
|
|
80
74
|
[[package]]
|
|
81
75
|
name = "anstyle-query"
|
|
82
|
-
version = "1.1.
|
|
76
|
+
version = "1.1.5"
|
|
83
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
-
checksum = "
|
|
78
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
85
79
|
dependencies = [
|
|
86
|
-
"windows-sys 0.
|
|
80
|
+
"windows-sys 0.61.2",
|
|
87
81
|
]
|
|
88
82
|
|
|
89
83
|
[[package]]
|
|
90
84
|
name = "anstyle-wincon"
|
|
91
|
-
version = "3.0.
|
|
85
|
+
version = "3.0.11"
|
|
92
86
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
87
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
94
88
|
dependencies = [
|
|
95
89
|
"anstyle",
|
|
96
90
|
"once_cell_polyfill",
|
|
97
|
-
"windows-sys 0.
|
|
91
|
+
"windows-sys 0.61.2",
|
|
98
92
|
]
|
|
99
93
|
|
|
100
94
|
[[package]]
|
|
@@ -124,13 +118,12 @@ dependencies = [
|
|
|
124
118
|
|
|
125
119
|
[[package]]
|
|
126
120
|
name = "assert_cmd"
|
|
127
|
-
version = "2.
|
|
121
|
+
version = "2.1.2"
|
|
128
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
123
|
+
checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
|
|
130
124
|
dependencies = [
|
|
131
125
|
"anstyle",
|
|
132
126
|
"bstr",
|
|
133
|
-
"doc-comment",
|
|
134
127
|
"libc",
|
|
135
128
|
"predicates",
|
|
136
129
|
"predicates-core",
|
|
@@ -138,37 +131,15 @@ dependencies = [
|
|
|
138
131
|
"wait-timeout",
|
|
139
132
|
]
|
|
140
133
|
|
|
141
|
-
[[package]]
|
|
142
|
-
name = "async-stream"
|
|
143
|
-
version = "0.3.6"
|
|
144
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
146
|
-
dependencies = [
|
|
147
|
-
"async-stream-impl",
|
|
148
|
-
"futures-core",
|
|
149
|
-
"pin-project-lite",
|
|
150
|
-
]
|
|
151
|
-
|
|
152
|
-
[[package]]
|
|
153
|
-
name = "async-stream-impl"
|
|
154
|
-
version = "0.3.6"
|
|
155
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
-
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
157
|
-
dependencies = [
|
|
158
|
-
"proc-macro2",
|
|
159
|
-
"quote",
|
|
160
|
-
"syn 2.0.101",
|
|
161
|
-
]
|
|
162
|
-
|
|
163
134
|
[[package]]
|
|
164
135
|
name = "async-trait"
|
|
165
|
-
version = "0.1.
|
|
136
|
+
version = "0.1.89"
|
|
166
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
-
checksum = "
|
|
138
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
168
139
|
dependencies = [
|
|
169
140
|
"proc-macro2",
|
|
170
141
|
"quote",
|
|
171
|
-
"syn 2.0.
|
|
142
|
+
"syn 2.0.114",
|
|
172
143
|
]
|
|
173
144
|
|
|
174
145
|
[[package]]
|
|
@@ -188,17 +159,38 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
188
159
|
|
|
189
160
|
[[package]]
|
|
190
161
|
name = "autocfg"
|
|
191
|
-
version = "1.
|
|
162
|
+
version = "1.5.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "aws-lc-rs"
|
|
168
|
+
version = "1.15.3"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "e84ce723ab67259cfeb9877c6a639ee9eb7a27b28123abd71db7f0d5d0cc9d86"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"aws-lc-sys",
|
|
173
|
+
"zeroize",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "aws-lc-sys"
|
|
178
|
+
version = "0.36.0"
|
|
192
179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
-
checksum = "
|
|
180
|
+
checksum = "43a442ece363113bd4bd4c8b18977a7798dd4d3c3383f34fb61936960e8f4ad8"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"cc",
|
|
183
|
+
"cmake",
|
|
184
|
+
"dunce",
|
|
185
|
+
"fs_extra",
|
|
186
|
+
]
|
|
194
187
|
|
|
195
188
|
[[package]]
|
|
196
189
|
name = "axum"
|
|
197
|
-
version = "0.
|
|
190
|
+
version = "0.8.8"
|
|
198
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
-
checksum = "
|
|
192
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
200
193
|
dependencies = [
|
|
201
|
-
"async-trait",
|
|
202
194
|
"axum-core",
|
|
203
195
|
"bytes",
|
|
204
196
|
"futures-util",
|
|
@@ -211,29 +203,26 @@ dependencies = [
|
|
|
211
203
|
"mime",
|
|
212
204
|
"percent-encoding",
|
|
213
205
|
"pin-project-lite",
|
|
214
|
-
"
|
|
215
|
-
"serde",
|
|
206
|
+
"serde_core",
|
|
216
207
|
"sync_wrapper",
|
|
217
|
-
"tower
|
|
208
|
+
"tower",
|
|
218
209
|
"tower-layer",
|
|
219
210
|
"tower-service",
|
|
220
211
|
]
|
|
221
212
|
|
|
222
213
|
[[package]]
|
|
223
214
|
name = "axum-core"
|
|
224
|
-
version = "0.
|
|
215
|
+
version = "0.5.6"
|
|
225
216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
-
checksum = "
|
|
217
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
227
218
|
dependencies = [
|
|
228
|
-
"async-trait",
|
|
229
219
|
"bytes",
|
|
230
|
-
"futures-
|
|
220
|
+
"futures-core",
|
|
231
221
|
"http",
|
|
232
222
|
"http-body",
|
|
233
223
|
"http-body-util",
|
|
234
224
|
"mime",
|
|
235
225
|
"pin-project-lite",
|
|
236
|
-
"rustversion",
|
|
237
226
|
"sync_wrapper",
|
|
238
227
|
"tower-layer",
|
|
239
228
|
"tower-service",
|
|
@@ -241,9 +230,9 @@ dependencies = [
|
|
|
241
230
|
|
|
242
231
|
[[package]]
|
|
243
232
|
name = "backtrace"
|
|
244
|
-
version = "0.3.
|
|
233
|
+
version = "0.3.76"
|
|
245
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
-
checksum = "
|
|
235
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
247
236
|
dependencies = [
|
|
248
237
|
"addr2line",
|
|
249
238
|
"cfg-if",
|
|
@@ -251,7 +240,7 @@ dependencies = [
|
|
|
251
240
|
"miniz_oxide",
|
|
252
241
|
"object",
|
|
253
242
|
"rustc-demangle",
|
|
254
|
-
"windows-
|
|
243
|
+
"windows-link",
|
|
255
244
|
]
|
|
256
245
|
|
|
257
246
|
[[package]]
|
|
@@ -304,11 +293,11 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
304
293
|
|
|
305
294
|
[[package]]
|
|
306
295
|
name = "bitflags"
|
|
307
|
-
version = "2.
|
|
296
|
+
version = "2.10.0"
|
|
308
297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
-
checksum = "
|
|
298
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
310
299
|
dependencies = [
|
|
311
|
-
"
|
|
300
|
+
"serde_core",
|
|
312
301
|
]
|
|
313
302
|
|
|
314
303
|
[[package]]
|
|
@@ -322,9 +311,9 @@ dependencies = [
|
|
|
322
311
|
|
|
323
312
|
[[package]]
|
|
324
313
|
name = "bstr"
|
|
325
|
-
version = "1.12.
|
|
314
|
+
version = "1.12.1"
|
|
326
315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
-
checksum = "
|
|
316
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
328
317
|
dependencies = [
|
|
329
318
|
"memchr",
|
|
330
319
|
"regex-automata",
|
|
@@ -333,15 +322,15 @@ dependencies = [
|
|
|
333
322
|
|
|
334
323
|
[[package]]
|
|
335
324
|
name = "bumpalo"
|
|
336
|
-
version = "3.
|
|
325
|
+
version = "3.19.1"
|
|
337
326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
327
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
339
328
|
|
|
340
329
|
[[package]]
|
|
341
330
|
name = "bytemuck"
|
|
342
|
-
version = "1.
|
|
331
|
+
version = "1.24.0"
|
|
343
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
333
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
345
334
|
|
|
346
335
|
[[package]]
|
|
347
336
|
name = "byteorder"
|
|
@@ -351,36 +340,45 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
351
340
|
|
|
352
341
|
[[package]]
|
|
353
342
|
name = "bytes"
|
|
354
|
-
version = "1.
|
|
343
|
+
version = "1.11.0"
|
|
355
344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
345
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
357
346
|
dependencies = [
|
|
358
347
|
"serde",
|
|
359
348
|
]
|
|
360
349
|
|
|
361
350
|
[[package]]
|
|
362
351
|
name = "castaway"
|
|
363
|
-
version = "0.2.
|
|
352
|
+
version = "0.2.4"
|
|
364
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "
|
|
354
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
366
355
|
dependencies = [
|
|
367
356
|
"rustversion",
|
|
368
357
|
]
|
|
369
358
|
|
|
370
359
|
[[package]]
|
|
371
360
|
name = "cc"
|
|
372
|
-
version = "1.2.
|
|
361
|
+
version = "1.2.53"
|
|
373
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
363
|
+
checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
|
|
375
364
|
dependencies = [
|
|
365
|
+
"find-msvc-tools",
|
|
366
|
+
"jobserver",
|
|
367
|
+
"libc",
|
|
376
368
|
"shlex",
|
|
377
369
|
]
|
|
378
370
|
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "cesu8"
|
|
373
|
+
version = "1.1.0"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
376
|
+
|
|
379
377
|
[[package]]
|
|
380
378
|
name = "cfg-if"
|
|
381
|
-
version = "1.0.
|
|
379
|
+
version = "1.0.4"
|
|
382
380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
-
checksum = "
|
|
381
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
384
382
|
|
|
385
383
|
[[package]]
|
|
386
384
|
name = "cfg_aliases"
|
|
@@ -390,22 +388,23 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
390
388
|
|
|
391
389
|
[[package]]
|
|
392
390
|
name = "chrono"
|
|
393
|
-
version = "0.4.
|
|
391
|
+
version = "0.4.43"
|
|
394
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "
|
|
393
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
396
394
|
dependencies = [
|
|
397
|
-
"android-tzdata",
|
|
398
395
|
"iana-time-zone",
|
|
396
|
+
"js-sys",
|
|
399
397
|
"num-traits",
|
|
400
398
|
"serde",
|
|
399
|
+
"wasm-bindgen",
|
|
401
400
|
"windows-link",
|
|
402
401
|
]
|
|
403
402
|
|
|
404
403
|
[[package]]
|
|
405
404
|
name = "clap"
|
|
406
|
-
version = "4.5.
|
|
405
|
+
version = "4.5.54"
|
|
407
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
407
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
409
408
|
dependencies = [
|
|
410
409
|
"clap_builder",
|
|
411
410
|
"clap_derive",
|
|
@@ -413,9 +412,9 @@ dependencies = [
|
|
|
413
412
|
|
|
414
413
|
[[package]]
|
|
415
414
|
name = "clap_builder"
|
|
416
|
-
version = "4.5.
|
|
415
|
+
version = "4.5.54"
|
|
417
416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
-
checksum = "
|
|
417
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
419
418
|
dependencies = [
|
|
420
419
|
"anstream",
|
|
421
420
|
"anstyle",
|
|
@@ -425,9 +424,9 @@ dependencies = [
|
|
|
425
424
|
|
|
426
425
|
[[package]]
|
|
427
426
|
name = "clap_complete"
|
|
428
|
-
version = "4.5.
|
|
427
|
+
version = "4.5.65"
|
|
429
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
429
|
+
checksum = "430b4dc2b5e3861848de79627b2bedc9f3342c7da5173a14eaa5d0f8dc18ae5d"
|
|
431
430
|
dependencies = [
|
|
432
431
|
"clap",
|
|
433
432
|
"clap_lex",
|
|
@@ -444,20 +443,39 @@ dependencies = [
|
|
|
444
443
|
"heck",
|
|
445
444
|
"proc-macro2",
|
|
446
445
|
"quote",
|
|
447
|
-
"syn 2.0.
|
|
446
|
+
"syn 2.0.114",
|
|
448
447
|
]
|
|
449
448
|
|
|
450
449
|
[[package]]
|
|
451
450
|
name = "clap_lex"
|
|
452
|
-
version = "0.7.
|
|
451
|
+
version = "0.7.7"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "cmake"
|
|
457
|
+
version = "0.1.57"
|
|
453
458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
-
checksum = "
|
|
459
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"cc",
|
|
462
|
+
]
|
|
455
463
|
|
|
456
464
|
[[package]]
|
|
457
465
|
name = "colorchoice"
|
|
458
|
-
version = "1.0.
|
|
466
|
+
version = "1.0.4"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "combine"
|
|
472
|
+
version = "4.6.7"
|
|
459
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "
|
|
474
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"bytes",
|
|
477
|
+
"memchr",
|
|
478
|
+
]
|
|
461
479
|
|
|
462
480
|
[[package]]
|
|
463
481
|
name = "compact_str"
|
|
@@ -476,35 +494,36 @@ dependencies = [
|
|
|
476
494
|
|
|
477
495
|
[[package]]
|
|
478
496
|
name = "console"
|
|
479
|
-
version = "0.
|
|
497
|
+
version = "0.16.2"
|
|
480
498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
-
checksum = "
|
|
499
|
+
checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
|
|
482
500
|
dependencies = [
|
|
483
501
|
"encode_unicode",
|
|
484
502
|
"libc",
|
|
485
503
|
"once_cell",
|
|
486
|
-
"unicode-width
|
|
487
|
-
"windows-sys 0.
|
|
504
|
+
"unicode-width",
|
|
505
|
+
"windows-sys 0.61.2",
|
|
488
506
|
]
|
|
489
507
|
|
|
490
508
|
[[package]]
|
|
491
509
|
name = "console-api"
|
|
492
|
-
version = "0.
|
|
510
|
+
version = "0.9.0"
|
|
493
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
-
checksum = "
|
|
512
|
+
checksum = "e8599749b6667e2f0c910c1d0dff6901163ff698a52d5a39720f61b5be4b20d3"
|
|
495
513
|
dependencies = [
|
|
496
514
|
"futures-core",
|
|
497
515
|
"prost",
|
|
498
516
|
"prost-types",
|
|
499
517
|
"tonic",
|
|
518
|
+
"tonic-prost",
|
|
500
519
|
"tracing-core",
|
|
501
520
|
]
|
|
502
521
|
|
|
503
522
|
[[package]]
|
|
504
523
|
name = "console-subscriber"
|
|
505
|
-
version = "0.
|
|
524
|
+
version = "0.5.0"
|
|
506
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "
|
|
526
|
+
checksum = "fb4915b7d8dd960457a1b6c380114c2944f728e7c65294ab247ae6b6f1f37592"
|
|
508
527
|
dependencies = [
|
|
509
528
|
"console-api",
|
|
510
529
|
"crossbeam-channel",
|
|
@@ -528,9 +547,9 @@ dependencies = [
|
|
|
528
547
|
|
|
529
548
|
[[package]]
|
|
530
549
|
name = "convert_case"
|
|
531
|
-
version = "0.
|
|
550
|
+
version = "0.10.0"
|
|
532
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
-
checksum = "
|
|
552
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
534
553
|
dependencies = [
|
|
535
554
|
"unicode-segmentation",
|
|
536
555
|
]
|
|
@@ -562,9 +581,9 @@ dependencies = [
|
|
|
562
581
|
|
|
563
582
|
[[package]]
|
|
564
583
|
name = "crc32fast"
|
|
565
|
-
version = "1.
|
|
584
|
+
version = "1.5.0"
|
|
566
585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
-
checksum = "
|
|
586
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
568
587
|
dependencies = [
|
|
569
588
|
"cfg-if",
|
|
570
589
|
]
|
|
@@ -591,9 +610,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
591
610
|
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
592
611
|
dependencies = [
|
|
593
612
|
"base64 0.22.1",
|
|
594
|
-
"bitflags 2.
|
|
613
|
+
"bitflags 2.10.0",
|
|
595
614
|
"crossterm_winapi",
|
|
596
|
-
"derive_more
|
|
615
|
+
"derive_more",
|
|
597
616
|
"document-features",
|
|
598
617
|
"futures-core",
|
|
599
618
|
"mio",
|
|
@@ -615,9 +634,9 @@ dependencies = [
|
|
|
615
634
|
|
|
616
635
|
[[package]]
|
|
617
636
|
name = "crypto-common"
|
|
618
|
-
version = "0.1.
|
|
637
|
+
version = "0.1.7"
|
|
619
638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
639
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
621
640
|
dependencies = [
|
|
622
641
|
"generic-array",
|
|
623
642
|
"typenum",
|
|
@@ -635,9 +654,9 @@ dependencies = [
|
|
|
635
654
|
|
|
636
655
|
[[package]]
|
|
637
656
|
name = "darling"
|
|
638
|
-
version = "0.
|
|
657
|
+
version = "0.23.0"
|
|
639
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
-
checksum = "
|
|
659
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
641
660
|
dependencies = [
|
|
642
661
|
"darling_core",
|
|
643
662
|
"darling_macro",
|
|
@@ -645,37 +664,36 @@ dependencies = [
|
|
|
645
664
|
|
|
646
665
|
[[package]]
|
|
647
666
|
name = "darling_core"
|
|
648
|
-
version = "0.
|
|
667
|
+
version = "0.23.0"
|
|
649
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
-
checksum = "
|
|
669
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
651
670
|
dependencies = [
|
|
652
|
-
"fnv",
|
|
653
671
|
"ident_case",
|
|
654
672
|
"proc-macro2",
|
|
655
673
|
"quote",
|
|
656
674
|
"strsim",
|
|
657
|
-
"syn 2.0.
|
|
675
|
+
"syn 2.0.114",
|
|
658
676
|
]
|
|
659
677
|
|
|
660
678
|
[[package]]
|
|
661
679
|
name = "darling_macro"
|
|
662
|
-
version = "0.
|
|
680
|
+
version = "0.23.0"
|
|
663
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
-
checksum = "
|
|
682
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
665
683
|
dependencies = [
|
|
666
684
|
"darling_core",
|
|
667
685
|
"quote",
|
|
668
|
-
"syn 2.0.
|
|
686
|
+
"syn 2.0.114",
|
|
669
687
|
]
|
|
670
688
|
|
|
671
689
|
[[package]]
|
|
672
690
|
name = "deadpool"
|
|
673
|
-
version = "0.
|
|
691
|
+
version = "0.12.3"
|
|
674
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
693
|
+
checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
|
|
676
694
|
dependencies = [
|
|
677
|
-
"async-trait",
|
|
678
695
|
"deadpool-runtime",
|
|
696
|
+
"lazy_static",
|
|
679
697
|
"num_cpus",
|
|
680
698
|
"tokio",
|
|
681
699
|
]
|
|
@@ -694,65 +712,44 @@ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
|
|
|
694
712
|
|
|
695
713
|
[[package]]
|
|
696
714
|
name = "deranged"
|
|
697
|
-
version = "0.
|
|
715
|
+
version = "0.5.5"
|
|
698
716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
717
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
700
718
|
dependencies = [
|
|
701
719
|
"powerfmt",
|
|
702
720
|
]
|
|
703
721
|
|
|
704
722
|
[[package]]
|
|
705
723
|
name = "derive_more"
|
|
706
|
-
version = "1.
|
|
707
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
-
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
|
|
709
|
-
dependencies = [
|
|
710
|
-
"derive_more-impl 1.0.0",
|
|
711
|
-
]
|
|
712
|
-
|
|
713
|
-
[[package]]
|
|
714
|
-
name = "derive_more"
|
|
715
|
-
version = "2.0.1"
|
|
716
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
|
718
|
-
dependencies = [
|
|
719
|
-
"derive_more-impl 2.0.1",
|
|
720
|
-
]
|
|
721
|
-
|
|
722
|
-
[[package]]
|
|
723
|
-
name = "derive_more-impl"
|
|
724
|
-
version = "1.0.0"
|
|
724
|
+
version = "2.1.1"
|
|
725
725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
-
checksum = "
|
|
726
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
727
727
|
dependencies = [
|
|
728
|
-
"
|
|
729
|
-
"quote",
|
|
730
|
-
"syn 2.0.101",
|
|
731
|
-
"unicode-xid",
|
|
728
|
+
"derive_more-impl",
|
|
732
729
|
]
|
|
733
730
|
|
|
734
731
|
[[package]]
|
|
735
732
|
name = "derive_more-impl"
|
|
736
|
-
version = "2.
|
|
733
|
+
version = "2.1.1"
|
|
737
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
-
checksum = "
|
|
735
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
739
736
|
dependencies = [
|
|
740
737
|
"convert_case",
|
|
741
738
|
"proc-macro2",
|
|
742
739
|
"quote",
|
|
743
|
-
"
|
|
740
|
+
"rustc_version",
|
|
741
|
+
"syn 2.0.114",
|
|
744
742
|
"unicode-xid",
|
|
745
743
|
]
|
|
746
744
|
|
|
747
745
|
[[package]]
|
|
748
746
|
name = "dialoguer"
|
|
749
|
-
version = "0.
|
|
747
|
+
version = "0.12.0"
|
|
750
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
-
checksum = "
|
|
749
|
+
checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96"
|
|
752
750
|
dependencies = [
|
|
753
751
|
"console",
|
|
754
752
|
"shell-words",
|
|
755
|
-
"thiserror 1.0.69",
|
|
756
753
|
"zeroize",
|
|
757
754
|
]
|
|
758
755
|
|
|
@@ -780,23 +777,23 @@ dependencies = [
|
|
|
780
777
|
|
|
781
778
|
[[package]]
|
|
782
779
|
name = "dirs"
|
|
783
|
-
version = "
|
|
780
|
+
version = "6.0.0"
|
|
784
781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
782
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
786
783
|
dependencies = [
|
|
787
784
|
"dirs-sys",
|
|
788
785
|
]
|
|
789
786
|
|
|
790
787
|
[[package]]
|
|
791
788
|
name = "dirs-sys"
|
|
792
|
-
version = "0.
|
|
789
|
+
version = "0.5.0"
|
|
793
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
791
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
795
792
|
dependencies = [
|
|
796
793
|
"libc",
|
|
797
794
|
"option-ext",
|
|
798
795
|
"redox_users",
|
|
799
|
-
"windows-sys 0.
|
|
796
|
+
"windows-sys 0.61.2",
|
|
800
797
|
]
|
|
801
798
|
|
|
802
799
|
[[package]]
|
|
@@ -807,40 +804,40 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
807
804
|
dependencies = [
|
|
808
805
|
"proc-macro2",
|
|
809
806
|
"quote",
|
|
810
|
-
"syn 2.0.
|
|
807
|
+
"syn 2.0.114",
|
|
811
808
|
]
|
|
812
809
|
|
|
813
|
-
[[package]]
|
|
814
|
-
name = "doc-comment"
|
|
815
|
-
version = "0.3.3"
|
|
816
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
-
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
818
|
-
|
|
819
810
|
[[package]]
|
|
820
811
|
name = "doc_utils"
|
|
821
|
-
version = "
|
|
812
|
+
version = "5.0.0"
|
|
822
813
|
dependencies = [
|
|
823
814
|
"anyhow",
|
|
824
815
|
"clap",
|
|
825
|
-
"indexmap
|
|
826
|
-
"itertools
|
|
816
|
+
"indexmap",
|
|
817
|
+
"itertools",
|
|
827
818
|
"mdbook-preprocessor",
|
|
828
819
|
"quote",
|
|
829
820
|
"serde",
|
|
830
821
|
"serde_json",
|
|
831
822
|
"serde_yaml",
|
|
832
|
-
"syn 2.0.
|
|
823
|
+
"syn 2.0.114",
|
|
833
824
|
]
|
|
834
825
|
|
|
835
826
|
[[package]]
|
|
836
827
|
name = "document-features"
|
|
837
|
-
version = "0.2.
|
|
828
|
+
version = "0.2.12"
|
|
838
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "
|
|
830
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
840
831
|
dependencies = [
|
|
841
832
|
"litrs",
|
|
842
833
|
]
|
|
843
834
|
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "dunce"
|
|
837
|
+
version = "1.0.5"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
840
|
+
|
|
844
841
|
[[package]]
|
|
845
842
|
name = "dyn-clone"
|
|
846
843
|
version = "1.0.20"
|
|
@@ -879,9 +876,9 @@ dependencies = [
|
|
|
879
876
|
|
|
880
877
|
[[package]]
|
|
881
878
|
name = "env-lock"
|
|
882
|
-
version = "1.0.
|
|
879
|
+
version = "1.0.2"
|
|
883
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
-
checksum = "
|
|
881
|
+
checksum = "bcb71a32ab9582e2756554e84b24aee90d7187034049c35921ec3296b70c13ad"
|
|
885
882
|
|
|
886
883
|
[[package]]
|
|
887
884
|
name = "equivalent"
|
|
@@ -891,12 +888,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
891
888
|
|
|
892
889
|
[[package]]
|
|
893
890
|
name = "errno"
|
|
894
|
-
version = "0.3.
|
|
891
|
+
version = "0.3.14"
|
|
895
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
-
checksum = "
|
|
893
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
897
894
|
dependencies = [
|
|
898
895
|
"libc",
|
|
899
|
-
"windows-sys 0.
|
|
896
|
+
"windows-sys 0.61.2",
|
|
900
897
|
]
|
|
901
898
|
|
|
902
899
|
[[package]]
|
|
@@ -936,15 +933,6 @@ version = "2.3.0"
|
|
|
936
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
934
|
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
938
935
|
|
|
939
|
-
[[package]]
|
|
940
|
-
name = "file-id"
|
|
941
|
-
version = "0.2.2"
|
|
942
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
-
checksum = "6bc904b9bbefcadbd8e3a9fb0d464a9b979de6324c03b3c663e8994f46a5be36"
|
|
944
|
-
dependencies = [
|
|
945
|
-
"windows-sys 0.52.0",
|
|
946
|
-
]
|
|
947
|
-
|
|
948
936
|
[[package]]
|
|
949
937
|
name = "filedescriptor"
|
|
950
938
|
version = "0.8.3"
|
|
@@ -957,22 +945,16 @@ dependencies = [
|
|
|
957
945
|
]
|
|
958
946
|
|
|
959
947
|
[[package]]
|
|
960
|
-
name = "
|
|
961
|
-
version = "0.
|
|
948
|
+
name = "find-msvc-tools"
|
|
949
|
+
version = "0.1.8"
|
|
962
950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
-
checksum = "
|
|
964
|
-
dependencies = [
|
|
965
|
-
"cfg-if",
|
|
966
|
-
"libc",
|
|
967
|
-
"libredox",
|
|
968
|
-
"windows-sys 0.59.0",
|
|
969
|
-
]
|
|
951
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
970
952
|
|
|
971
953
|
[[package]]
|
|
972
954
|
name = "finl_unicode"
|
|
973
|
-
version = "1.
|
|
955
|
+
version = "1.4.0"
|
|
974
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
-
checksum = "
|
|
957
|
+
checksum = "9844ddc3a6e533d62bba727eb6c28b5d360921d5175e9ff0f1e621a5c590a4d5"
|
|
976
958
|
|
|
977
959
|
[[package]]
|
|
978
960
|
name = "fixedbitset"
|
|
@@ -982,9 +964,9 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
|
982
964
|
|
|
983
965
|
[[package]]
|
|
984
966
|
name = "flate2"
|
|
985
|
-
version = "1.1.
|
|
967
|
+
version = "1.1.8"
|
|
986
968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
-
checksum = "
|
|
969
|
+
checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
|
|
988
970
|
dependencies = [
|
|
989
971
|
"crc32fast",
|
|
990
972
|
"miniz_oxide",
|
|
@@ -1002,23 +984,26 @@ version = "0.1.5"
|
|
|
1002
984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
985
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1004
986
|
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "foldhash"
|
|
989
|
+
version = "0.2.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
992
|
+
|
|
1005
993
|
[[package]]
|
|
1006
994
|
name = "form_urlencoded"
|
|
1007
|
-
version = "1.2.
|
|
995
|
+
version = "1.2.2"
|
|
1008
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
-
checksum = "
|
|
997
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1010
998
|
dependencies = [
|
|
1011
999
|
"percent-encoding",
|
|
1012
1000
|
]
|
|
1013
1001
|
|
|
1014
1002
|
[[package]]
|
|
1015
|
-
name = "
|
|
1016
|
-
version = "
|
|
1003
|
+
name = "fs_extra"
|
|
1004
|
+
version = "1.3.0"
|
|
1017
1005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
-
checksum = "
|
|
1019
|
-
dependencies = [
|
|
1020
|
-
"libc",
|
|
1021
|
-
]
|
|
1006
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1022
1007
|
|
|
1023
1008
|
[[package]]
|
|
1024
1009
|
name = "futures"
|
|
@@ -1076,7 +1061,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
|
1076
1061
|
dependencies = [
|
|
1077
1062
|
"proc-macro2",
|
|
1078
1063
|
"quote",
|
|
1079
|
-
"syn 2.0.
|
|
1064
|
+
"syn 2.0.114",
|
|
1080
1065
|
]
|
|
1081
1066
|
|
|
1082
1067
|
[[package]]
|
|
@@ -1121,48 +1106,48 @@ dependencies = [
|
|
|
1121
1106
|
|
|
1122
1107
|
[[package]]
|
|
1123
1108
|
name = "getrandom"
|
|
1124
|
-
version = "0.2.
|
|
1109
|
+
version = "0.2.17"
|
|
1125
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
-
checksum = "
|
|
1111
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1127
1112
|
dependencies = [
|
|
1128
1113
|
"cfg-if",
|
|
1129
1114
|
"js-sys",
|
|
1130
1115
|
"libc",
|
|
1131
|
-
"wasi
|
|
1116
|
+
"wasi",
|
|
1132
1117
|
"wasm-bindgen",
|
|
1133
1118
|
]
|
|
1134
1119
|
|
|
1135
1120
|
[[package]]
|
|
1136
1121
|
name = "getrandom"
|
|
1137
|
-
version = "0.3.
|
|
1122
|
+
version = "0.3.4"
|
|
1138
1123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
-
checksum = "
|
|
1124
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1140
1125
|
dependencies = [
|
|
1141
1126
|
"cfg-if",
|
|
1142
1127
|
"js-sys",
|
|
1143
1128
|
"libc",
|
|
1144
1129
|
"r-efi",
|
|
1145
|
-
"
|
|
1130
|
+
"wasip2",
|
|
1146
1131
|
"wasm-bindgen",
|
|
1147
1132
|
]
|
|
1148
1133
|
|
|
1149
1134
|
[[package]]
|
|
1150
1135
|
name = "gimli"
|
|
1151
|
-
version = "0.
|
|
1136
|
+
version = "0.32.3"
|
|
1152
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
-
checksum = "
|
|
1138
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1154
1139
|
|
|
1155
1140
|
[[package]]
|
|
1156
1141
|
name = "glob"
|
|
1157
|
-
version = "0.3.
|
|
1142
|
+
version = "0.3.3"
|
|
1158
1143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
-
checksum = "
|
|
1144
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1160
1145
|
|
|
1161
1146
|
[[package]]
|
|
1162
1147
|
name = "h2"
|
|
1163
|
-
version = "0.4.
|
|
1148
|
+
version = "0.4.13"
|
|
1164
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "
|
|
1150
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
1166
1151
|
dependencies = [
|
|
1167
1152
|
"atomic-waker",
|
|
1168
1153
|
"bytes",
|
|
@@ -1170,7 +1155,7 @@ dependencies = [
|
|
|
1170
1155
|
"futures-core",
|
|
1171
1156
|
"futures-sink",
|
|
1172
1157
|
"http",
|
|
1173
|
-
"indexmap
|
|
1158
|
+
"indexmap",
|
|
1174
1159
|
"slab",
|
|
1175
1160
|
"tokio",
|
|
1176
1161
|
"tokio-util",
|
|
@@ -1179,19 +1164,11 @@ dependencies = [
|
|
|
1179
1164
|
|
|
1180
1165
|
[[package]]
|
|
1181
1166
|
name = "hashbrown"
|
|
1182
|
-
version = "0.
|
|
1167
|
+
version = "0.15.5"
|
|
1183
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
-
checksum = "
|
|
1185
|
-
|
|
1186
|
-
[[package]]
|
|
1187
|
-
name = "hashbrown"
|
|
1188
|
-
version = "0.15.3"
|
|
1189
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
-
checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
|
|
1169
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1191
1170
|
dependencies = [
|
|
1192
|
-
"
|
|
1193
|
-
"equivalent",
|
|
1194
|
-
"foldhash",
|
|
1171
|
+
"foldhash 0.1.5",
|
|
1195
1172
|
]
|
|
1196
1173
|
|
|
1197
1174
|
[[package]]
|
|
@@ -1199,6 +1176,11 @@ name = "hashbrown"
|
|
|
1199
1176
|
version = "0.16.1"
|
|
1200
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
1178
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1179
|
+
dependencies = [
|
|
1180
|
+
"allocator-api2",
|
|
1181
|
+
"equivalent",
|
|
1182
|
+
"foldhash 0.2.0",
|
|
1183
|
+
]
|
|
1202
1184
|
|
|
1203
1185
|
[[package]]
|
|
1204
1186
|
name = "hashlink"
|
|
@@ -1206,7 +1188,7 @@ version = "0.10.0"
|
|
|
1206
1188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
1189
|
checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
|
|
1208
1190
|
dependencies = [
|
|
1209
|
-
"hashbrown 0.15.
|
|
1191
|
+
"hashbrown 0.15.5",
|
|
1210
1192
|
]
|
|
1211
1193
|
|
|
1212
1194
|
[[package]]
|
|
@@ -1230,9 +1212,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
1230
1212
|
|
|
1231
1213
|
[[package]]
|
|
1232
1214
|
name = "hermit-abi"
|
|
1233
|
-
version = "0.
|
|
1215
|
+
version = "0.5.2"
|
|
1234
1216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
-
checksum = "
|
|
1217
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1236
1218
|
|
|
1237
1219
|
[[package]]
|
|
1238
1220
|
name = "hex"
|
|
@@ -1242,12 +1224,11 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
1242
1224
|
|
|
1243
1225
|
[[package]]
|
|
1244
1226
|
name = "http"
|
|
1245
|
-
version = "1.
|
|
1227
|
+
version = "1.4.0"
|
|
1246
1228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
-
checksum = "
|
|
1229
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1248
1230
|
dependencies = [
|
|
1249
1231
|
"bytes",
|
|
1250
|
-
"fnv",
|
|
1251
1232
|
"itoa",
|
|
1252
1233
|
]
|
|
1253
1234
|
|
|
@@ -1288,19 +1269,20 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1288
1269
|
|
|
1289
1270
|
[[package]]
|
|
1290
1271
|
name = "humantime"
|
|
1291
|
-
version = "2.
|
|
1272
|
+
version = "2.3.0"
|
|
1292
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1293
|
-
checksum = "
|
|
1274
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
1294
1275
|
|
|
1295
1276
|
[[package]]
|
|
1296
1277
|
name = "hyper"
|
|
1297
|
-
version = "1.
|
|
1278
|
+
version = "1.8.1"
|
|
1298
1279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
-
checksum = "
|
|
1280
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1300
1281
|
dependencies = [
|
|
1282
|
+
"atomic-waker",
|
|
1301
1283
|
"bytes",
|
|
1302
1284
|
"futures-channel",
|
|
1303
|
-
"futures-
|
|
1285
|
+
"futures-core",
|
|
1304
1286
|
"h2",
|
|
1305
1287
|
"http",
|
|
1306
1288
|
"http-body",
|
|
@@ -1308,6 +1290,7 @@ dependencies = [
|
|
|
1308
1290
|
"httpdate",
|
|
1309
1291
|
"itoa",
|
|
1310
1292
|
"pin-project-lite",
|
|
1293
|
+
"pin-utils",
|
|
1311
1294
|
"smallvec",
|
|
1312
1295
|
"tokio",
|
|
1313
1296
|
"want",
|
|
@@ -1315,21 +1298,18 @@ dependencies = [
|
|
|
1315
1298
|
|
|
1316
1299
|
[[package]]
|
|
1317
1300
|
name = "hyper-rustls"
|
|
1318
|
-
version = "0.27.
|
|
1301
|
+
version = "0.27.7"
|
|
1319
1302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
-
checksum = "
|
|
1303
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1321
1304
|
dependencies = [
|
|
1322
|
-
"futures-util",
|
|
1323
1305
|
"http",
|
|
1324
1306
|
"hyper",
|
|
1325
1307
|
"hyper-util",
|
|
1326
1308
|
"rustls",
|
|
1327
|
-
"rustls-native-certs",
|
|
1328
1309
|
"rustls-pki-types",
|
|
1329
1310
|
"tokio",
|
|
1330
1311
|
"tokio-rustls",
|
|
1331
1312
|
"tower-service",
|
|
1332
|
-
"webpki-roots 0.26.11",
|
|
1333
1313
|
]
|
|
1334
1314
|
|
|
1335
1315
|
[[package]]
|
|
@@ -1347,13 +1327,14 @@ dependencies = [
|
|
|
1347
1327
|
|
|
1348
1328
|
[[package]]
|
|
1349
1329
|
name = "hyper-util"
|
|
1350
|
-
version = "0.1.
|
|
1330
|
+
version = "0.1.19"
|
|
1351
1331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
-
checksum = "
|
|
1332
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
1353
1333
|
dependencies = [
|
|
1354
1334
|
"base64 0.22.1",
|
|
1355
1335
|
"bytes",
|
|
1356
1336
|
"futures-channel",
|
|
1337
|
+
"futures-core",
|
|
1357
1338
|
"futures-util",
|
|
1358
1339
|
"http",
|
|
1359
1340
|
"http-body",
|
|
@@ -1370,9 +1351,9 @@ dependencies = [
|
|
|
1370
1351
|
|
|
1371
1352
|
[[package]]
|
|
1372
1353
|
name = "iana-time-zone"
|
|
1373
|
-
version = "0.1.
|
|
1354
|
+
version = "0.1.64"
|
|
1374
1355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
-
checksum = "
|
|
1356
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1376
1357
|
dependencies = [
|
|
1377
1358
|
"android_system_properties",
|
|
1378
1359
|
"core-foundation-sys",
|
|
@@ -1394,9 +1375,9 @@ dependencies = [
|
|
|
1394
1375
|
|
|
1395
1376
|
[[package]]
|
|
1396
1377
|
name = "icu_collections"
|
|
1397
|
-
version = "2.
|
|
1378
|
+
version = "2.1.1"
|
|
1398
1379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
-
checksum = "
|
|
1380
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1400
1381
|
dependencies = [
|
|
1401
1382
|
"displaydoc",
|
|
1402
1383
|
"potential_utf",
|
|
@@ -1407,9 +1388,9 @@ dependencies = [
|
|
|
1407
1388
|
|
|
1408
1389
|
[[package]]
|
|
1409
1390
|
name = "icu_locale_core"
|
|
1410
|
-
version = "2.
|
|
1391
|
+
version = "2.1.1"
|
|
1411
1392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
-
checksum = "
|
|
1393
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1413
1394
|
dependencies = [
|
|
1414
1395
|
"displaydoc",
|
|
1415
1396
|
"litemap",
|
|
@@ -1420,11 +1401,10 @@ dependencies = [
|
|
|
1420
1401
|
|
|
1421
1402
|
[[package]]
|
|
1422
1403
|
name = "icu_normalizer"
|
|
1423
|
-
version = "2.
|
|
1404
|
+
version = "2.1.1"
|
|
1424
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
-
checksum = "
|
|
1406
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1426
1407
|
dependencies = [
|
|
1427
|
-
"displaydoc",
|
|
1428
1408
|
"icu_collections",
|
|
1429
1409
|
"icu_normalizer_data",
|
|
1430
1410
|
"icu_properties",
|
|
@@ -1435,42 +1415,38 @@ dependencies = [
|
|
|
1435
1415
|
|
|
1436
1416
|
[[package]]
|
|
1437
1417
|
name = "icu_normalizer_data"
|
|
1438
|
-
version = "2.
|
|
1418
|
+
version = "2.1.1"
|
|
1439
1419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
-
checksum = "
|
|
1420
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1441
1421
|
|
|
1442
1422
|
[[package]]
|
|
1443
1423
|
name = "icu_properties"
|
|
1444
|
-
version = "2.
|
|
1424
|
+
version = "2.1.2"
|
|
1445
1425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
-
checksum = "
|
|
1426
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1447
1427
|
dependencies = [
|
|
1448
|
-
"displaydoc",
|
|
1449
1428
|
"icu_collections",
|
|
1450
1429
|
"icu_locale_core",
|
|
1451
1430
|
"icu_properties_data",
|
|
1452
1431
|
"icu_provider",
|
|
1453
|
-
"potential_utf",
|
|
1454
1432
|
"zerotrie",
|
|
1455
1433
|
"zerovec",
|
|
1456
1434
|
]
|
|
1457
1435
|
|
|
1458
1436
|
[[package]]
|
|
1459
1437
|
name = "icu_properties_data"
|
|
1460
|
-
version = "2.
|
|
1438
|
+
version = "2.1.2"
|
|
1461
1439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
-
checksum = "
|
|
1440
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1463
1441
|
|
|
1464
1442
|
[[package]]
|
|
1465
1443
|
name = "icu_provider"
|
|
1466
|
-
version = "2.
|
|
1444
|
+
version = "2.1.1"
|
|
1467
1445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
-
checksum = "
|
|
1446
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1469
1447
|
dependencies = [
|
|
1470
1448
|
"displaydoc",
|
|
1471
1449
|
"icu_locale_core",
|
|
1472
|
-
"stable_deref_trait",
|
|
1473
|
-
"tinystr",
|
|
1474
1450
|
"writeable",
|
|
1475
1451
|
"yoke",
|
|
1476
1452
|
"zerofrom",
|
|
@@ -1486,9 +1462,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
1486
1462
|
|
|
1487
1463
|
[[package]]
|
|
1488
1464
|
name = "idna"
|
|
1489
|
-
version = "1.0
|
|
1465
|
+
version = "1.1.0"
|
|
1490
1466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1467
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1492
1468
|
dependencies = [
|
|
1493
1469
|
"idna_adapter",
|
|
1494
1470
|
"smallvec",
|
|
@@ -1507,19 +1483,9 @@ dependencies = [
|
|
|
1507
1483
|
|
|
1508
1484
|
[[package]]
|
|
1509
1485
|
name = "indexmap"
|
|
1510
|
-
version = "
|
|
1511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1512
|
-
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1513
|
-
dependencies = [
|
|
1514
|
-
"autocfg",
|
|
1515
|
-
"hashbrown 0.12.3",
|
|
1516
|
-
]
|
|
1517
|
-
|
|
1518
|
-
[[package]]
|
|
1519
|
-
name = "indexmap"
|
|
1520
|
-
version = "2.12.1"
|
|
1486
|
+
version = "2.13.0"
|
|
1521
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
-
checksum = "
|
|
1488
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
1523
1489
|
dependencies = [
|
|
1524
1490
|
"equivalent",
|
|
1525
1491
|
"hashbrown 0.16.1",
|
|
@@ -1529,48 +1495,31 @@ dependencies = [
|
|
|
1529
1495
|
|
|
1530
1496
|
[[package]]
|
|
1531
1497
|
name = "indoc"
|
|
1532
|
-
version = "2.0.
|
|
1533
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
-
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1535
|
-
|
|
1536
|
-
[[package]]
|
|
1537
|
-
name = "inotify"
|
|
1538
|
-
version = "0.11.0"
|
|
1539
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
-
checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
|
|
1541
|
-
dependencies = [
|
|
1542
|
-
"bitflags 2.9.1",
|
|
1543
|
-
"inotify-sys",
|
|
1544
|
-
"libc",
|
|
1545
|
-
]
|
|
1546
|
-
|
|
1547
|
-
[[package]]
|
|
1548
|
-
name = "inotify-sys"
|
|
1549
|
-
version = "0.1.5"
|
|
1498
|
+
version = "2.0.7"
|
|
1550
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1500
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1552
1501
|
dependencies = [
|
|
1553
|
-
"
|
|
1502
|
+
"rustversion",
|
|
1554
1503
|
]
|
|
1555
1504
|
|
|
1556
1505
|
[[package]]
|
|
1557
1506
|
name = "instability"
|
|
1558
|
-
version = "0.3.
|
|
1507
|
+
version = "0.3.11"
|
|
1559
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
-
checksum = "
|
|
1509
|
+
checksum = "357b7205c6cd18dd2c86ed312d1e70add149aea98e7ef72b9fdf0270e555c11d"
|
|
1561
1510
|
dependencies = [
|
|
1562
1511
|
"darling",
|
|
1563
1512
|
"indoc",
|
|
1564
1513
|
"proc-macro2",
|
|
1565
1514
|
"quote",
|
|
1566
|
-
"syn 2.0.
|
|
1515
|
+
"syn 2.0.114",
|
|
1567
1516
|
]
|
|
1568
1517
|
|
|
1569
1518
|
[[package]]
|
|
1570
1519
|
name = "inventory"
|
|
1571
|
-
version = "0.3.
|
|
1520
|
+
version = "0.3.21"
|
|
1572
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
-
checksum = "
|
|
1522
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
1574
1523
|
dependencies = [
|
|
1575
1524
|
"rustversion",
|
|
1576
1525
|
]
|
|
@@ -1583,9 +1532,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
|
1583
1532
|
|
|
1584
1533
|
[[package]]
|
|
1585
1534
|
name = "iri-string"
|
|
1586
|
-
version = "0.7.
|
|
1535
|
+
version = "0.7.10"
|
|
1587
1536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
-
checksum = "
|
|
1537
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1589
1538
|
dependencies = [
|
|
1590
1539
|
"memchr",
|
|
1591
1540
|
"serde",
|
|
@@ -1593,27 +1542,18 @@ dependencies = [
|
|
|
1593
1542
|
|
|
1594
1543
|
[[package]]
|
|
1595
1544
|
name = "is_executable"
|
|
1596
|
-
version = "1.0.
|
|
1545
|
+
version = "1.0.5"
|
|
1597
1546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
-
checksum = "
|
|
1547
|
+
checksum = "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4"
|
|
1599
1548
|
dependencies = [
|
|
1600
|
-
"
|
|
1549
|
+
"windows-sys 0.60.2",
|
|
1601
1550
|
]
|
|
1602
1551
|
|
|
1603
1552
|
[[package]]
|
|
1604
1553
|
name = "is_terminal_polyfill"
|
|
1605
|
-
version = "1.70.
|
|
1554
|
+
version = "1.70.2"
|
|
1606
1555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
-
checksum = "
|
|
1608
|
-
|
|
1609
|
-
[[package]]
|
|
1610
|
-
name = "itertools"
|
|
1611
|
-
version = "0.13.0"
|
|
1612
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1614
|
-
dependencies = [
|
|
1615
|
-
"either",
|
|
1616
|
-
]
|
|
1556
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1617
1557
|
|
|
1618
1558
|
[[package]]
|
|
1619
1559
|
name = "itertools"
|
|
@@ -1626,9 +1566,9 @@ dependencies = [
|
|
|
1626
1566
|
|
|
1627
1567
|
[[package]]
|
|
1628
1568
|
name = "itoa"
|
|
1629
|
-
version = "1.0.
|
|
1569
|
+
version = "1.0.17"
|
|
1630
1570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
-
checksum = "
|
|
1571
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1632
1572
|
|
|
1633
1573
|
[[package]]
|
|
1634
1574
|
name = "jaq-core"
|
|
@@ -1647,8 +1587,8 @@ version = "1.1.3"
|
|
|
1647
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
1588
|
checksum = "01dbdbd07b076e8403abac68ce7744d93e2ecd953bbc44bf77bf00e1e81172bc"
|
|
1649
1589
|
dependencies = [
|
|
1650
|
-
"foldhash",
|
|
1651
|
-
"indexmap
|
|
1590
|
+
"foldhash 0.1.5",
|
|
1591
|
+
"indexmap",
|
|
1652
1592
|
"jaq-core",
|
|
1653
1593
|
"jaq-std",
|
|
1654
1594
|
"serde_json",
|
|
@@ -1671,43 +1611,56 @@ dependencies = [
|
|
|
1671
1611
|
]
|
|
1672
1612
|
|
|
1673
1613
|
[[package]]
|
|
1674
|
-
name = "
|
|
1675
|
-
version = "0.
|
|
1614
|
+
name = "jni"
|
|
1615
|
+
version = "0.21.1"
|
|
1676
1616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
-
checksum = "
|
|
1617
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1678
1618
|
dependencies = [
|
|
1679
|
-
"
|
|
1680
|
-
"
|
|
1619
|
+
"cesu8",
|
|
1620
|
+
"cfg-if",
|
|
1621
|
+
"combine",
|
|
1622
|
+
"jni-sys",
|
|
1623
|
+
"log",
|
|
1624
|
+
"thiserror 1.0.69",
|
|
1625
|
+
"walkdir",
|
|
1626
|
+
"windows-sys 0.45.0",
|
|
1681
1627
|
]
|
|
1682
1628
|
|
|
1683
1629
|
[[package]]
|
|
1684
|
-
name = "
|
|
1685
|
-
version = "0.
|
|
1630
|
+
name = "jni-sys"
|
|
1631
|
+
version = "0.3.0"
|
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "jobserver"
|
|
1637
|
+
version = "0.1.34"
|
|
1686
1638
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
-
checksum = "
|
|
1639
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1688
1640
|
dependencies = [
|
|
1689
|
-
"
|
|
1690
|
-
"
|
|
1641
|
+
"getrandom 0.3.4",
|
|
1642
|
+
"libc",
|
|
1691
1643
|
]
|
|
1692
1644
|
|
|
1693
1645
|
[[package]]
|
|
1694
|
-
name = "
|
|
1695
|
-
version = "
|
|
1646
|
+
name = "js-sys"
|
|
1647
|
+
version = "0.3.85"
|
|
1696
1648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1697
|
-
checksum = "
|
|
1649
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
1698
1650
|
dependencies = [
|
|
1699
|
-
"
|
|
1700
|
-
"
|
|
1651
|
+
"once_cell",
|
|
1652
|
+
"wasm-bindgen",
|
|
1701
1653
|
]
|
|
1702
1654
|
|
|
1703
1655
|
[[package]]
|
|
1704
|
-
name = "
|
|
1705
|
-
version = "
|
|
1656
|
+
name = "kasuari"
|
|
1657
|
+
version = "0.4.11"
|
|
1706
1658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
-
checksum = "
|
|
1659
|
+
checksum = "8fe90c1150662e858c7d5f945089b7517b0a80d8bf7ba4b1b5ffc984e7230a5b"
|
|
1708
1660
|
dependencies = [
|
|
1709
|
-
"
|
|
1710
|
-
"
|
|
1661
|
+
"hashbrown 0.16.1",
|
|
1662
|
+
"portable-atomic",
|
|
1663
|
+
"thiserror 2.0.17",
|
|
1711
1664
|
]
|
|
1712
1665
|
|
|
1713
1666
|
[[package]]
|
|
@@ -1724,9 +1677,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
1724
1677
|
|
|
1725
1678
|
[[package]]
|
|
1726
1679
|
name = "libc"
|
|
1727
|
-
version = "0.2.
|
|
1680
|
+
version = "0.2.180"
|
|
1728
1681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
-
checksum = "
|
|
1682
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
1730
1683
|
|
|
1731
1684
|
[[package]]
|
|
1732
1685
|
name = "libm"
|
|
@@ -1736,20 +1689,19 @@ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
|
1736
1689
|
|
|
1737
1690
|
[[package]]
|
|
1738
1691
|
name = "libredox"
|
|
1739
|
-
version = "0.1.
|
|
1692
|
+
version = "0.1.12"
|
|
1740
1693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1741
|
-
checksum = "
|
|
1694
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
1742
1695
|
dependencies = [
|
|
1743
|
-
"bitflags 2.
|
|
1696
|
+
"bitflags 2.10.0",
|
|
1744
1697
|
"libc",
|
|
1745
|
-
"redox_syscall",
|
|
1746
1698
|
]
|
|
1747
1699
|
|
|
1748
1700
|
[[package]]
|
|
1749
1701
|
name = "libsqlite3-sys"
|
|
1750
|
-
version = "0.
|
|
1702
|
+
version = "0.36.0"
|
|
1751
1703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
-
checksum = "
|
|
1704
|
+
checksum = "95b4103cffefa72eb8428cb6b47d6627161e51c2739fc5e3b734584157bc642a"
|
|
1753
1705
|
dependencies = [
|
|
1754
1706
|
"cc",
|
|
1755
1707
|
"pkg-config",
|
|
@@ -1758,54 +1710,53 @@ dependencies = [
|
|
|
1758
1710
|
|
|
1759
1711
|
[[package]]
|
|
1760
1712
|
name = "line-clipping"
|
|
1761
|
-
version = "0.3.
|
|
1713
|
+
version = "0.3.5"
|
|
1762
1714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
-
checksum = "
|
|
1715
|
+
checksum = "5f4de44e98ddbf09375cbf4d17714d18f39195f4f4894e8524501726fd9a8a4a"
|
|
1764
1716
|
dependencies = [
|
|
1765
|
-
"bitflags 2.
|
|
1717
|
+
"bitflags 2.10.0",
|
|
1766
1718
|
]
|
|
1767
1719
|
|
|
1768
1720
|
[[package]]
|
|
1769
1721
|
name = "linux-raw-sys"
|
|
1770
|
-
version = "0.
|
|
1722
|
+
version = "0.11.0"
|
|
1771
1723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
-
checksum = "
|
|
1724
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1773
1725
|
|
|
1774
1726
|
[[package]]
|
|
1775
1727
|
name = "litemap"
|
|
1776
|
-
version = "0.8.
|
|
1728
|
+
version = "0.8.1"
|
|
1777
1729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
-
checksum = "
|
|
1730
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1779
1731
|
|
|
1780
1732
|
[[package]]
|
|
1781
1733
|
name = "litrs"
|
|
1782
|
-
version = "0.
|
|
1734
|
+
version = "1.0.0"
|
|
1783
1735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
-
checksum = "
|
|
1736
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1785
1737
|
|
|
1786
1738
|
[[package]]
|
|
1787
1739
|
name = "lock_api"
|
|
1788
|
-
version = "0.4.
|
|
1740
|
+
version = "0.4.14"
|
|
1789
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
-
checksum = "
|
|
1742
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1791
1743
|
dependencies = [
|
|
1792
|
-
"autocfg",
|
|
1793
1744
|
"scopeguard",
|
|
1794
1745
|
]
|
|
1795
1746
|
|
|
1796
1747
|
[[package]]
|
|
1797
1748
|
name = "log"
|
|
1798
|
-
version = "0.4.
|
|
1749
|
+
version = "0.4.29"
|
|
1799
1750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "
|
|
1751
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1801
1752
|
|
|
1802
1753
|
[[package]]
|
|
1803
1754
|
name = "lru"
|
|
1804
|
-
version = "0.
|
|
1755
|
+
version = "0.16.3"
|
|
1805
1756
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
-
checksum = "
|
|
1757
|
+
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
|
1807
1758
|
dependencies = [
|
|
1808
|
-
"hashbrown 0.
|
|
1759
|
+
"hashbrown 0.16.1",
|
|
1809
1760
|
]
|
|
1810
1761
|
|
|
1811
1762
|
[[package]]
|
|
@@ -1826,15 +1777,15 @@ dependencies = [
|
|
|
1826
1777
|
|
|
1827
1778
|
[[package]]
|
|
1828
1779
|
name = "matchit"
|
|
1829
|
-
version = "0.
|
|
1780
|
+
version = "0.8.4"
|
|
1830
1781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
-
checksum = "
|
|
1782
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1832
1783
|
|
|
1833
1784
|
[[package]]
|
|
1834
1785
|
name = "mdbook-core"
|
|
1835
|
-
version = "0.5.
|
|
1786
|
+
version = "0.5.2"
|
|
1836
1787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
1788
|
+
checksum = "39a3873d4afac65583f1acb56ff058df989d5b4a2464bb02c785549727d307ee"
|
|
1838
1789
|
dependencies = [
|
|
1839
1790
|
"anyhow",
|
|
1840
1791
|
"regex",
|
|
@@ -1846,9 +1797,9 @@ dependencies = [
|
|
|
1846
1797
|
|
|
1847
1798
|
[[package]]
|
|
1848
1799
|
name = "mdbook-preprocessor"
|
|
1849
|
-
version = "0.5.
|
|
1800
|
+
version = "0.5.2"
|
|
1850
1801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
-
checksum = "
|
|
1802
|
+
checksum = "4d87bf40be0597f26f0822f939a64f02bf92c4655ba04490aadbf83601a013bb"
|
|
1852
1803
|
dependencies = [
|
|
1853
1804
|
"anyhow",
|
|
1854
1805
|
"mdbook-core",
|
|
@@ -1901,23 +1852,24 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1901
1852
|
|
|
1902
1853
|
[[package]]
|
|
1903
1854
|
name = "miniz_oxide"
|
|
1904
|
-
version = "0.8.
|
|
1855
|
+
version = "0.8.9"
|
|
1905
1856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
-
checksum = "
|
|
1857
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1907
1858
|
dependencies = [
|
|
1908
1859
|
"adler2",
|
|
1860
|
+
"simd-adler32",
|
|
1909
1861
|
]
|
|
1910
1862
|
|
|
1911
1863
|
[[package]]
|
|
1912
1864
|
name = "mio"
|
|
1913
|
-
version = "1.
|
|
1865
|
+
version = "1.1.1"
|
|
1914
1866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "
|
|
1867
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1916
1868
|
dependencies = [
|
|
1917
1869
|
"libc",
|
|
1918
1870
|
"log",
|
|
1919
|
-
"wasi
|
|
1920
|
-
"windows-sys 0.
|
|
1871
|
+
"wasi",
|
|
1872
|
+
"windows-sys 0.61.2",
|
|
1921
1873
|
]
|
|
1922
1874
|
|
|
1923
1875
|
[[package]]
|
|
@@ -1926,7 +1878,7 @@ version = "0.29.0"
|
|
|
1926
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
1879
|
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
1928
1880
|
dependencies = [
|
|
1929
|
-
"bitflags 2.
|
|
1881
|
+
"bitflags 2.10.0",
|
|
1930
1882
|
"cfg-if",
|
|
1931
1883
|
"cfg_aliases",
|
|
1932
1884
|
"libc",
|
|
@@ -1943,51 +1895,13 @@ dependencies = [
|
|
|
1943
1895
|
"minimal-lexical",
|
|
1944
1896
|
]
|
|
1945
1897
|
|
|
1946
|
-
[[package]]
|
|
1947
|
-
name = "notify"
|
|
1948
|
-
version = "8.0.0"
|
|
1949
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
-
checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
|
|
1951
|
-
dependencies = [
|
|
1952
|
-
"bitflags 2.9.1",
|
|
1953
|
-
"filetime",
|
|
1954
|
-
"fsevent-sys",
|
|
1955
|
-
"inotify",
|
|
1956
|
-
"kqueue",
|
|
1957
|
-
"libc",
|
|
1958
|
-
"log",
|
|
1959
|
-
"mio",
|
|
1960
|
-
"notify-types",
|
|
1961
|
-
"walkdir",
|
|
1962
|
-
"windows-sys 0.59.0",
|
|
1963
|
-
]
|
|
1964
|
-
|
|
1965
|
-
[[package]]
|
|
1966
|
-
name = "notify-debouncer-full"
|
|
1967
|
-
version = "0.5.0"
|
|
1968
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "d2d88b1a7538054351c8258338df7c931a590513fb3745e8c15eb9ff4199b8d1"
|
|
1970
|
-
dependencies = [
|
|
1971
|
-
"file-id",
|
|
1972
|
-
"log",
|
|
1973
|
-
"notify",
|
|
1974
|
-
"notify-types",
|
|
1975
|
-
"walkdir",
|
|
1976
|
-
]
|
|
1977
|
-
|
|
1978
|
-
[[package]]
|
|
1979
|
-
name = "notify-types"
|
|
1980
|
-
version = "2.0.0"
|
|
1981
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1982
|
-
checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
|
|
1983
|
-
|
|
1984
1898
|
[[package]]
|
|
1985
1899
|
name = "nu-ansi-term"
|
|
1986
1900
|
version = "0.50.3"
|
|
1987
1901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
1902
|
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1989
1903
|
dependencies = [
|
|
1990
|
-
"windows-sys 0.
|
|
1904
|
+
"windows-sys 0.61.2",
|
|
1991
1905
|
]
|
|
1992
1906
|
|
|
1993
1907
|
[[package]]
|
|
@@ -2004,7 +1918,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
|
2004
1918
|
dependencies = [
|
|
2005
1919
|
"proc-macro2",
|
|
2006
1920
|
"quote",
|
|
2007
|
-
"syn 2.0.
|
|
1921
|
+
"syn 2.0.114",
|
|
2008
1922
|
]
|
|
2009
1923
|
|
|
2010
1924
|
[[package]]
|
|
@@ -2018,9 +1932,9 @@ dependencies = [
|
|
|
2018
1932
|
|
|
2019
1933
|
[[package]]
|
|
2020
1934
|
name = "num_cpus"
|
|
2021
|
-
version = "1.
|
|
1935
|
+
version = "1.17.0"
|
|
2022
1936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
-
checksum = "
|
|
1937
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
2024
1938
|
dependencies = [
|
|
2025
1939
|
"hermit-abi",
|
|
2026
1940
|
"libc",
|
|
@@ -2037,11 +1951,11 @@ dependencies = [
|
|
|
2037
1951
|
|
|
2038
1952
|
[[package]]
|
|
2039
1953
|
name = "oas3"
|
|
2040
|
-
version = "0.
|
|
1954
|
+
version = "0.20.1"
|
|
2041
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
-
checksum = "
|
|
1956
|
+
checksum = "16f67c885c7b19aaf652e84102035258ecb4e0425a4f71037e187798e367bd87"
|
|
2043
1957
|
dependencies = [
|
|
2044
|
-
"derive_more
|
|
1958
|
+
"derive_more",
|
|
2045
1959
|
"http",
|
|
2046
1960
|
"log",
|
|
2047
1961
|
"once_cell",
|
|
@@ -2054,9 +1968,9 @@ dependencies = [
|
|
|
2054
1968
|
|
|
2055
1969
|
[[package]]
|
|
2056
1970
|
name = "object"
|
|
2057
|
-
version = "0.
|
|
1971
|
+
version = "0.37.3"
|
|
2058
1972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
-
checksum = "
|
|
1973
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
2060
1974
|
dependencies = [
|
|
2061
1975
|
"memchr",
|
|
2062
1976
|
]
|
|
@@ -2069,26 +1983,26 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
2069
1983
|
|
|
2070
1984
|
[[package]]
|
|
2071
1985
|
name = "once_cell_polyfill"
|
|
2072
|
-
version = "1.70.
|
|
1986
|
+
version = "1.70.2"
|
|
2073
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
-
checksum = "
|
|
1988
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2075
1989
|
|
|
2076
1990
|
[[package]]
|
|
2077
1991
|
name = "openapiv3"
|
|
2078
|
-
version = "2.
|
|
1992
|
+
version = "2.2.0"
|
|
2079
1993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
-
checksum = "
|
|
1994
|
+
checksum = "5c8d427828b22ae1fff2833a03d8486c2c881367f1c336349f307f321e7f4d05"
|
|
2081
1995
|
dependencies = [
|
|
2082
|
-
"indexmap
|
|
1996
|
+
"indexmap",
|
|
2083
1997
|
"serde",
|
|
2084
1998
|
"serde_json",
|
|
2085
1999
|
]
|
|
2086
2000
|
|
|
2087
2001
|
[[package]]
|
|
2088
2002
|
name = "openssl-probe"
|
|
2089
|
-
version = "0.
|
|
2003
|
+
version = "0.2.0"
|
|
2090
2004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
-
checksum = "
|
|
2005
|
+
checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
|
|
2092
2006
|
|
|
2093
2007
|
[[package]]
|
|
2094
2008
|
name = "option-ext"
|
|
@@ -2107,18 +2021,18 @@ dependencies = [
|
|
|
2107
2021
|
|
|
2108
2022
|
[[package]]
|
|
2109
2023
|
name = "ordered-float"
|
|
2110
|
-
version = "5.
|
|
2024
|
+
version = "5.1.0"
|
|
2111
2025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2112
|
-
checksum = "
|
|
2026
|
+
checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
|
|
2113
2027
|
dependencies = [
|
|
2114
2028
|
"num-traits",
|
|
2115
2029
|
]
|
|
2116
2030
|
|
|
2117
2031
|
[[package]]
|
|
2118
2032
|
name = "parking_lot"
|
|
2119
|
-
version = "0.12.
|
|
2033
|
+
version = "0.12.5"
|
|
2120
2034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
-
checksum = "
|
|
2035
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2122
2036
|
dependencies = [
|
|
2123
2037
|
"lock_api",
|
|
2124
2038
|
"parking_lot_core",
|
|
@@ -2126,15 +2040,15 @@ dependencies = [
|
|
|
2126
2040
|
|
|
2127
2041
|
[[package]]
|
|
2128
2042
|
name = "parking_lot_core"
|
|
2129
|
-
version = "0.9.
|
|
2043
|
+
version = "0.9.12"
|
|
2130
2044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
-
checksum = "
|
|
2045
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2132
2046
|
dependencies = [
|
|
2133
2047
|
"cfg-if",
|
|
2134
2048
|
"libc",
|
|
2135
2049
|
"redox_syscall",
|
|
2136
2050
|
"smallvec",
|
|
2137
|
-
"windows-
|
|
2051
|
+
"windows-link",
|
|
2138
2052
|
]
|
|
2139
2053
|
|
|
2140
2054
|
[[package]]
|
|
@@ -2145,45 +2059,25 @@ checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
|
|
|
2145
2059
|
|
|
2146
2060
|
[[package]]
|
|
2147
2061
|
name = "percent-encoding"
|
|
2148
|
-
version = "2.3.
|
|
2062
|
+
version = "2.3.2"
|
|
2149
2063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
-
checksum = "
|
|
2151
|
-
|
|
2152
|
-
[[package]]
|
|
2153
|
-
name = "persisted"
|
|
2154
|
-
version = "1.0.0"
|
|
2155
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
-
checksum = "40a281cefdac81d883f2ba0a65062e1ebcd47c0b960c14f64a5bae2001eb9c99"
|
|
2157
|
-
dependencies = [
|
|
2158
|
-
"persisted_derive",
|
|
2159
|
-
]
|
|
2160
|
-
|
|
2161
|
-
[[package]]
|
|
2162
|
-
name = "persisted_derive"
|
|
2163
|
-
version = "1.0.0"
|
|
2164
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
-
checksum = "112322d121814927877cd3ff46b2249e76f5a6bcb96dcb6184e7fbe390de75af"
|
|
2166
|
-
dependencies = [
|
|
2167
|
-
"quote",
|
|
2168
|
-
"syn 2.0.101",
|
|
2169
|
-
]
|
|
2064
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2170
2065
|
|
|
2171
2066
|
[[package]]
|
|
2172
2067
|
name = "pest"
|
|
2173
|
-
version = "2.8.
|
|
2068
|
+
version = "2.8.5"
|
|
2174
2069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
-
checksum = "
|
|
2070
|
+
checksum = "2c9eb05c21a464ea704b53158d358a31e6425db2f63a1a7312268b05fe2b75f7"
|
|
2176
2071
|
dependencies = [
|
|
2177
2072
|
"memchr",
|
|
2178
|
-
"thiserror 2.0.12",
|
|
2179
2073
|
"ucd-trie",
|
|
2180
2074
|
]
|
|
2181
2075
|
|
|
2182
2076
|
[[package]]
|
|
2183
2077
|
name = "pest_derive"
|
|
2184
|
-
version = "2.8.
|
|
2078
|
+
version = "2.8.5"
|
|
2185
2079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
-
checksum = "
|
|
2080
|
+
checksum = "68f9dbced329c441fa79d80472764b1a2c7e57123553b8519b36663a2fb234ed"
|
|
2187
2081
|
dependencies = [
|
|
2188
2082
|
"pest",
|
|
2189
2083
|
"pest_generator",
|
|
@@ -2191,22 +2085,22 @@ dependencies = [
|
|
|
2191
2085
|
|
|
2192
2086
|
[[package]]
|
|
2193
2087
|
name = "pest_generator"
|
|
2194
|
-
version = "2.8.
|
|
2088
|
+
version = "2.8.5"
|
|
2195
2089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
-
checksum = "
|
|
2090
|
+
checksum = "3bb96d5051a78f44f43c8f712d8e810adb0ebf923fc9ed2655a7f66f63ba8ee5"
|
|
2197
2091
|
dependencies = [
|
|
2198
2092
|
"pest",
|
|
2199
2093
|
"pest_meta",
|
|
2200
2094
|
"proc-macro2",
|
|
2201
2095
|
"quote",
|
|
2202
|
-
"syn 2.0.
|
|
2096
|
+
"syn 2.0.114",
|
|
2203
2097
|
]
|
|
2204
2098
|
|
|
2205
2099
|
[[package]]
|
|
2206
2100
|
name = "pest_meta"
|
|
2207
|
-
version = "2.8.
|
|
2101
|
+
version = "2.8.5"
|
|
2208
2102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2209
|
-
checksum = "
|
|
2103
|
+
checksum = "602113b5b5e8621770cfd490cfd90b9f84ab29bd2b0e49ad83eb6d186cef2365"
|
|
2210
2104
|
dependencies = [
|
|
2211
2105
|
"pest",
|
|
2212
2106
|
"sha2",
|
|
@@ -2252,7 +2146,7 @@ dependencies = [
|
|
|
2252
2146
|
"phf_shared",
|
|
2253
2147
|
"proc-macro2",
|
|
2254
2148
|
"quote",
|
|
2255
|
-
"syn 2.0.
|
|
2149
|
+
"syn 2.0.114",
|
|
2256
2150
|
]
|
|
2257
2151
|
|
|
2258
2152
|
[[package]]
|
|
@@ -2281,7 +2175,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
|
2281
2175
|
dependencies = [
|
|
2282
2176
|
"proc-macro2",
|
|
2283
2177
|
"quote",
|
|
2284
|
-
"syn 2.0.
|
|
2178
|
+
"syn 2.0.114",
|
|
2285
2179
|
]
|
|
2286
2180
|
|
|
2287
2181
|
[[package]]
|
|
@@ -2304,15 +2198,15 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
|
2304
2198
|
|
|
2305
2199
|
[[package]]
|
|
2306
2200
|
name = "portable-atomic"
|
|
2307
|
-
version = "1.
|
|
2201
|
+
version = "1.13.0"
|
|
2308
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
-
checksum = "
|
|
2203
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
2310
2204
|
|
|
2311
2205
|
[[package]]
|
|
2312
2206
|
name = "potential_utf"
|
|
2313
|
-
version = "0.1.
|
|
2207
|
+
version = "0.1.4"
|
|
2314
2208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
-
checksum = "
|
|
2209
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2316
2210
|
dependencies = [
|
|
2317
2211
|
"zerovec",
|
|
2318
2212
|
]
|
|
@@ -2371,26 +2265,25 @@ dependencies = [
|
|
|
2371
2265
|
|
|
2372
2266
|
[[package]]
|
|
2373
2267
|
name = "proc-macro2"
|
|
2374
|
-
version = "1.0.
|
|
2268
|
+
version = "1.0.105"
|
|
2375
2269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
-
checksum = "
|
|
2270
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
2377
2271
|
dependencies = [
|
|
2378
2272
|
"unicode-ident",
|
|
2379
2273
|
]
|
|
2380
2274
|
|
|
2381
2275
|
[[package]]
|
|
2382
2276
|
name = "proptest"
|
|
2383
|
-
version = "1.
|
|
2277
|
+
version = "1.9.0"
|
|
2384
2278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2279
|
+
checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
|
|
2386
2280
|
dependencies = [
|
|
2387
2281
|
"bit-set 0.8.0",
|
|
2388
2282
|
"bit-vec 0.8.0",
|
|
2389
|
-
"bitflags 2.
|
|
2390
|
-
"lazy_static",
|
|
2283
|
+
"bitflags 2.10.0",
|
|
2391
2284
|
"num-traits",
|
|
2392
|
-
"rand 0.
|
|
2393
|
-
"rand_chacha
|
|
2285
|
+
"rand 0.9.2",
|
|
2286
|
+
"rand_chacha",
|
|
2394
2287
|
"rand_xorshift",
|
|
2395
2288
|
"regex-syntax",
|
|
2396
2289
|
"rusty-fork",
|
|
@@ -2400,20 +2293,20 @@ dependencies = [
|
|
|
2400
2293
|
|
|
2401
2294
|
[[package]]
|
|
2402
2295
|
name = "proptest-derive"
|
|
2403
|
-
version = "0.
|
|
2296
|
+
version = "0.7.0"
|
|
2404
2297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
-
checksum = "
|
|
2298
|
+
checksum = "fb6dc647500e84a25a85b100e76c85b8ace114c209432dc174f20aac11d4ed6c"
|
|
2406
2299
|
dependencies = [
|
|
2407
2300
|
"proc-macro2",
|
|
2408
2301
|
"quote",
|
|
2409
|
-
"syn 2.0.
|
|
2302
|
+
"syn 2.0.114",
|
|
2410
2303
|
]
|
|
2411
2304
|
|
|
2412
2305
|
[[package]]
|
|
2413
2306
|
name = "prost"
|
|
2414
|
-
version = "0.
|
|
2307
|
+
version = "0.14.3"
|
|
2415
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
-
checksum = "
|
|
2309
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
2417
2310
|
dependencies = [
|
|
2418
2311
|
"bytes",
|
|
2419
2312
|
"prost-derive",
|
|
@@ -2421,33 +2314,33 @@ dependencies = [
|
|
|
2421
2314
|
|
|
2422
2315
|
[[package]]
|
|
2423
2316
|
name = "prost-derive"
|
|
2424
|
-
version = "0.
|
|
2317
|
+
version = "0.14.3"
|
|
2425
2318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "
|
|
2319
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
2427
2320
|
dependencies = [
|
|
2428
2321
|
"anyhow",
|
|
2429
|
-
"itertools
|
|
2322
|
+
"itertools",
|
|
2430
2323
|
"proc-macro2",
|
|
2431
2324
|
"quote",
|
|
2432
|
-
"syn 2.0.
|
|
2325
|
+
"syn 2.0.114",
|
|
2433
2326
|
]
|
|
2434
2327
|
|
|
2435
2328
|
[[package]]
|
|
2436
2329
|
name = "prost-types"
|
|
2437
|
-
version = "0.
|
|
2330
|
+
version = "0.14.3"
|
|
2438
2331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
-
checksum = "
|
|
2332
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
2440
2333
|
dependencies = [
|
|
2441
2334
|
"prost",
|
|
2442
2335
|
]
|
|
2443
2336
|
|
|
2444
2337
|
[[package]]
|
|
2445
2338
|
name = "pyo3"
|
|
2446
|
-
version = "0.
|
|
2339
|
+
version = "0.27.2"
|
|
2447
2340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
-
checksum = "
|
|
2341
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
2449
2342
|
dependencies = [
|
|
2450
|
-
"indexmap
|
|
2343
|
+
"indexmap",
|
|
2451
2344
|
"indoc",
|
|
2452
2345
|
"libc",
|
|
2453
2346
|
"memoffset",
|
|
@@ -2461,18 +2354,18 @@ dependencies = [
|
|
|
2461
2354
|
|
|
2462
2355
|
[[package]]
|
|
2463
2356
|
name = "pyo3-build-config"
|
|
2464
|
-
version = "0.
|
|
2357
|
+
version = "0.27.2"
|
|
2465
2358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2466
|
-
checksum = "
|
|
2359
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
2467
2360
|
dependencies = [
|
|
2468
2361
|
"target-lexicon",
|
|
2469
2362
|
]
|
|
2470
2363
|
|
|
2471
2364
|
[[package]]
|
|
2472
2365
|
name = "pyo3-ffi"
|
|
2473
|
-
version = "0.
|
|
2366
|
+
version = "0.27.2"
|
|
2474
2367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
-
checksum = "
|
|
2368
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
2476
2369
|
dependencies = [
|
|
2477
2370
|
"libc",
|
|
2478
2371
|
"pyo3-build-config",
|
|
@@ -2480,27 +2373,27 @@ dependencies = [
|
|
|
2480
2373
|
|
|
2481
2374
|
[[package]]
|
|
2482
2375
|
name = "pyo3-macros"
|
|
2483
|
-
version = "0.
|
|
2376
|
+
version = "0.27.2"
|
|
2484
2377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2485
|
-
checksum = "
|
|
2378
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
2486
2379
|
dependencies = [
|
|
2487
2380
|
"proc-macro2",
|
|
2488
2381
|
"pyo3-macros-backend",
|
|
2489
2382
|
"quote",
|
|
2490
|
-
"syn 2.0.
|
|
2383
|
+
"syn 2.0.114",
|
|
2491
2384
|
]
|
|
2492
2385
|
|
|
2493
2386
|
[[package]]
|
|
2494
2387
|
name = "pyo3-macros-backend"
|
|
2495
|
-
version = "0.
|
|
2388
|
+
version = "0.27.2"
|
|
2496
2389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
-
checksum = "
|
|
2390
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
2498
2391
|
dependencies = [
|
|
2499
2392
|
"heck",
|
|
2500
2393
|
"proc-macro2",
|
|
2501
2394
|
"pyo3-build-config",
|
|
2502
2395
|
"quote",
|
|
2503
|
-
"syn 2.0.
|
|
2396
|
+
"syn 2.0.114",
|
|
2504
2397
|
]
|
|
2505
2398
|
|
|
2506
2399
|
[[package]]
|
|
@@ -2511,9 +2404,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
2511
2404
|
|
|
2512
2405
|
[[package]]
|
|
2513
2406
|
name = "quinn"
|
|
2514
|
-
version = "0.11.
|
|
2407
|
+
version = "0.11.9"
|
|
2515
2408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
-
checksum = "
|
|
2409
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2517
2410
|
dependencies = [
|
|
2518
2411
|
"bytes",
|
|
2519
2412
|
"cfg_aliases",
|
|
@@ -2523,7 +2416,7 @@ dependencies = [
|
|
|
2523
2416
|
"rustc-hash",
|
|
2524
2417
|
"rustls",
|
|
2525
2418
|
"socket2",
|
|
2526
|
-
"thiserror 2.0.
|
|
2419
|
+
"thiserror 2.0.17",
|
|
2527
2420
|
"tokio",
|
|
2528
2421
|
"tracing",
|
|
2529
2422
|
"web-time",
|
|
@@ -2531,20 +2424,21 @@ dependencies = [
|
|
|
2531
2424
|
|
|
2532
2425
|
[[package]]
|
|
2533
2426
|
name = "quinn-proto"
|
|
2534
|
-
version = "0.11.
|
|
2427
|
+
version = "0.11.13"
|
|
2535
2428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
-
checksum = "
|
|
2429
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2537
2430
|
dependencies = [
|
|
2431
|
+
"aws-lc-rs",
|
|
2538
2432
|
"bytes",
|
|
2539
|
-
"getrandom 0.3.
|
|
2433
|
+
"getrandom 0.3.4",
|
|
2540
2434
|
"lru-slab",
|
|
2541
|
-
"rand 0.9.
|
|
2435
|
+
"rand 0.9.2",
|
|
2542
2436
|
"ring",
|
|
2543
2437
|
"rustc-hash",
|
|
2544
2438
|
"rustls",
|
|
2545
2439
|
"rustls-pki-types",
|
|
2546
2440
|
"slab",
|
|
2547
|
-
"thiserror 2.0.
|
|
2441
|
+
"thiserror 2.0.17",
|
|
2548
2442
|
"tinyvec",
|
|
2549
2443
|
"tracing",
|
|
2550
2444
|
"web-time",
|
|
@@ -2552,32 +2446,32 @@ dependencies = [
|
|
|
2552
2446
|
|
|
2553
2447
|
[[package]]
|
|
2554
2448
|
name = "quinn-udp"
|
|
2555
|
-
version = "0.5.
|
|
2449
|
+
version = "0.5.14"
|
|
2556
2450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
-
checksum = "
|
|
2451
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2558
2452
|
dependencies = [
|
|
2559
2453
|
"cfg_aliases",
|
|
2560
2454
|
"libc",
|
|
2561
2455
|
"once_cell",
|
|
2562
2456
|
"socket2",
|
|
2563
2457
|
"tracing",
|
|
2564
|
-
"windows-sys 0.
|
|
2458
|
+
"windows-sys 0.60.2",
|
|
2565
2459
|
]
|
|
2566
2460
|
|
|
2567
2461
|
[[package]]
|
|
2568
2462
|
name = "quote"
|
|
2569
|
-
version = "1.0.
|
|
2463
|
+
version = "1.0.43"
|
|
2570
2464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
-
checksum = "
|
|
2465
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
2572
2466
|
dependencies = [
|
|
2573
2467
|
"proc-macro2",
|
|
2574
2468
|
]
|
|
2575
2469
|
|
|
2576
2470
|
[[package]]
|
|
2577
2471
|
name = "r-efi"
|
|
2578
|
-
version = "5.
|
|
2472
|
+
version = "5.3.0"
|
|
2579
2473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
-
checksum = "
|
|
2474
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2581
2475
|
|
|
2582
2476
|
[[package]]
|
|
2583
2477
|
name = "rand"
|
|
@@ -2585,29 +2479,17 @@ version = "0.8.5"
|
|
|
2585
2479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
2480
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2587
2481
|
dependencies = [
|
|
2588
|
-
"libc",
|
|
2589
|
-
"rand_chacha 0.3.1",
|
|
2590
2482
|
"rand_core 0.6.4",
|
|
2591
2483
|
]
|
|
2592
2484
|
|
|
2593
2485
|
[[package]]
|
|
2594
2486
|
name = "rand"
|
|
2595
|
-
version = "0.9.
|
|
2596
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
-
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2598
|
-
dependencies = [
|
|
2599
|
-
"rand_chacha 0.9.0",
|
|
2600
|
-
"rand_core 0.9.3",
|
|
2601
|
-
]
|
|
2602
|
-
|
|
2603
|
-
[[package]]
|
|
2604
|
-
name = "rand_chacha"
|
|
2605
|
-
version = "0.3.1"
|
|
2487
|
+
version = "0.9.2"
|
|
2606
2488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
-
checksum = "
|
|
2489
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2608
2490
|
dependencies = [
|
|
2609
|
-
"
|
|
2610
|
-
"rand_core 0.
|
|
2491
|
+
"rand_chacha",
|
|
2492
|
+
"rand_core 0.9.5",
|
|
2611
2493
|
]
|
|
2612
2494
|
|
|
2613
2495
|
[[package]]
|
|
@@ -2617,7 +2499,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2617
2499
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2618
2500
|
dependencies = [
|
|
2619
2501
|
"ppv-lite86",
|
|
2620
|
-
"rand_core 0.9.
|
|
2502
|
+
"rand_core 0.9.5",
|
|
2621
2503
|
]
|
|
2622
2504
|
|
|
2623
2505
|
[[package]]
|
|
@@ -2625,33 +2507,30 @@ name = "rand_core"
|
|
|
2625
2507
|
version = "0.6.4"
|
|
2626
2508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
2509
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2628
|
-
dependencies = [
|
|
2629
|
-
"getrandom 0.2.16",
|
|
2630
|
-
]
|
|
2631
2510
|
|
|
2632
2511
|
[[package]]
|
|
2633
2512
|
name = "rand_core"
|
|
2634
|
-
version = "0.9.
|
|
2513
|
+
version = "0.9.5"
|
|
2635
2514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
-
checksum = "
|
|
2515
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2637
2516
|
dependencies = [
|
|
2638
|
-
"getrandom 0.3.
|
|
2517
|
+
"getrandom 0.3.4",
|
|
2639
2518
|
]
|
|
2640
2519
|
|
|
2641
2520
|
[[package]]
|
|
2642
2521
|
name = "rand_xorshift"
|
|
2643
|
-
version = "0.
|
|
2522
|
+
version = "0.4.0"
|
|
2644
2523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
-
checksum = "
|
|
2524
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2646
2525
|
dependencies = [
|
|
2647
|
-
"rand_core 0.
|
|
2526
|
+
"rand_core 0.9.5",
|
|
2648
2527
|
]
|
|
2649
2528
|
|
|
2650
2529
|
[[package]]
|
|
2651
2530
|
name = "ratatui"
|
|
2652
|
-
version = "0.30.0
|
|
2531
|
+
version = "0.30.0"
|
|
2653
2532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
-
checksum = "
|
|
2533
|
+
checksum = "d1ce67fb8ba4446454d1c8dbaeda0557ff5e94d39d5e5ed7f10a65eb4c8266bc"
|
|
2655
2534
|
dependencies = [
|
|
2656
2535
|
"instability",
|
|
2657
2536
|
"ratatui-core",
|
|
@@ -2662,31 +2541,32 @@ dependencies = [
|
|
|
2662
2541
|
|
|
2663
2542
|
[[package]]
|
|
2664
2543
|
name = "ratatui-core"
|
|
2665
|
-
version = "0.1.0
|
|
2544
|
+
version = "0.1.0"
|
|
2666
2545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
2546
|
+
checksum = "5ef8dea09a92caaf73bff7adb70b76162e5937524058a7e5bff37869cbbec293"
|
|
2668
2547
|
dependencies = [
|
|
2669
|
-
"bitflags 2.
|
|
2548
|
+
"bitflags 2.10.0",
|
|
2670
2549
|
"compact_str",
|
|
2671
|
-
"hashbrown 0.
|
|
2550
|
+
"hashbrown 0.16.1",
|
|
2672
2551
|
"indoc",
|
|
2673
|
-
"itertools
|
|
2552
|
+
"itertools",
|
|
2674
2553
|
"kasuari",
|
|
2675
2554
|
"lru",
|
|
2676
2555
|
"serde",
|
|
2677
|
-
"strum
|
|
2678
|
-
"thiserror 2.0.
|
|
2556
|
+
"strum",
|
|
2557
|
+
"thiserror 2.0.17",
|
|
2679
2558
|
"unicode-segmentation",
|
|
2680
2559
|
"unicode-truncate",
|
|
2681
|
-
"unicode-width
|
|
2560
|
+
"unicode-width",
|
|
2682
2561
|
]
|
|
2683
2562
|
|
|
2684
2563
|
[[package]]
|
|
2685
2564
|
name = "ratatui-crossterm"
|
|
2686
|
-
version = "0.1.0
|
|
2565
|
+
version = "0.1.0"
|
|
2687
2566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
-
checksum = "
|
|
2567
|
+
checksum = "577c9b9f652b4c121fb25c6a391dd06406d3b092ba68827e6d2f09550edc54b3"
|
|
2689
2568
|
dependencies = [
|
|
2569
|
+
"cfg-if",
|
|
2690
2570
|
"crossterm",
|
|
2691
2571
|
"instability",
|
|
2692
2572
|
"ratatui-core",
|
|
@@ -2694,9 +2574,9 @@ dependencies = [
|
|
|
2694
2574
|
|
|
2695
2575
|
[[package]]
|
|
2696
2576
|
name = "ratatui-termwiz"
|
|
2697
|
-
version = "0.1.0
|
|
2577
|
+
version = "0.1.0"
|
|
2698
2578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
-
checksum = "
|
|
2579
|
+
checksum = "0f76fe0bd0ed4295f0321b1676732e2454024c15a35d01904ddb315afd3d545c"
|
|
2700
2580
|
dependencies = [
|
|
2701
2581
|
"ratatui-core",
|
|
2702
2582
|
"termwiz",
|
|
@@ -2704,61 +2584,61 @@ dependencies = [
|
|
|
2704
2584
|
|
|
2705
2585
|
[[package]]
|
|
2706
2586
|
name = "ratatui-widgets"
|
|
2707
|
-
version = "0.3.0
|
|
2587
|
+
version = "0.3.0"
|
|
2708
2588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
-
checksum = "
|
|
2589
|
+
checksum = "d7dbfa023cd4e604c2553483820c5fe8aa9d71a42eea5aa77c6e7f35756612db"
|
|
2710
2590
|
dependencies = [
|
|
2711
|
-
"bitflags 2.
|
|
2712
|
-
"hashbrown 0.
|
|
2591
|
+
"bitflags 2.10.0",
|
|
2592
|
+
"hashbrown 0.16.1",
|
|
2713
2593
|
"indoc",
|
|
2714
2594
|
"instability",
|
|
2715
|
-
"itertools
|
|
2595
|
+
"itertools",
|
|
2716
2596
|
"line-clipping",
|
|
2717
2597
|
"ratatui-core",
|
|
2718
|
-
"strum
|
|
2598
|
+
"strum",
|
|
2719
2599
|
"time",
|
|
2720
2600
|
"unicode-segmentation",
|
|
2721
|
-
"unicode-width
|
|
2601
|
+
"unicode-width",
|
|
2722
2602
|
]
|
|
2723
2603
|
|
|
2724
2604
|
[[package]]
|
|
2725
2605
|
name = "redox_syscall"
|
|
2726
|
-
version = "0.5.
|
|
2606
|
+
version = "0.5.18"
|
|
2727
2607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
-
checksum = "
|
|
2608
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2729
2609
|
dependencies = [
|
|
2730
|
-
"bitflags 2.
|
|
2610
|
+
"bitflags 2.10.0",
|
|
2731
2611
|
]
|
|
2732
2612
|
|
|
2733
2613
|
[[package]]
|
|
2734
2614
|
name = "redox_users"
|
|
2735
|
-
version = "0.
|
|
2615
|
+
version = "0.5.2"
|
|
2736
2616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
-
checksum = "
|
|
2617
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2738
2618
|
dependencies = [
|
|
2739
|
-
"getrandom 0.2.
|
|
2619
|
+
"getrandom 0.2.17",
|
|
2740
2620
|
"libredox",
|
|
2741
|
-
"thiserror
|
|
2621
|
+
"thiserror 2.0.17",
|
|
2742
2622
|
]
|
|
2743
2623
|
|
|
2744
2624
|
[[package]]
|
|
2745
2625
|
name = "ref-cast"
|
|
2746
|
-
version = "1.0.
|
|
2626
|
+
version = "1.0.25"
|
|
2747
2627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2748
|
-
checksum = "
|
|
2628
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2749
2629
|
dependencies = [
|
|
2750
2630
|
"ref-cast-impl",
|
|
2751
2631
|
]
|
|
2752
2632
|
|
|
2753
2633
|
[[package]]
|
|
2754
2634
|
name = "ref-cast-impl"
|
|
2755
|
-
version = "1.0.
|
|
2635
|
+
version = "1.0.25"
|
|
2756
2636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
-
checksum = "
|
|
2637
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2758
2638
|
dependencies = [
|
|
2759
2639
|
"proc-macro2",
|
|
2760
2640
|
"quote",
|
|
2761
|
-
"syn 2.0.
|
|
2641
|
+
"syn 2.0.114",
|
|
2762
2642
|
]
|
|
2763
2643
|
|
|
2764
2644
|
[[package]]
|
|
@@ -2792,9 +2672,9 @@ checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
|
2792
2672
|
|
|
2793
2673
|
[[package]]
|
|
2794
2674
|
name = "regex-syntax"
|
|
2795
|
-
version = "0.8.
|
|
2675
|
+
version = "0.8.8"
|
|
2796
2676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
-
checksum = "
|
|
2677
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2798
2678
|
|
|
2799
2679
|
[[package]]
|
|
2800
2680
|
name = "relative-path"
|
|
@@ -2804,9 +2684,9 @@ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
|
2804
2684
|
|
|
2805
2685
|
[[package]]
|
|
2806
2686
|
name = "reqwest"
|
|
2807
|
-
version = "0.
|
|
2687
|
+
version = "0.13.1"
|
|
2808
2688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
-
checksum = "
|
|
2689
|
+
checksum = "04e9018c9d814e5f30cc16a0f03271aeab3571e609612d9fe78c1aa8d11c2f62"
|
|
2810
2690
|
dependencies = [
|
|
2811
2691
|
"base64 0.22.1",
|
|
2812
2692
|
"bytes",
|
|
@@ -2825,8 +2705,8 @@ dependencies = [
|
|
|
2825
2705
|
"pin-project-lite",
|
|
2826
2706
|
"quinn",
|
|
2827
2707
|
"rustls",
|
|
2828
|
-
"rustls-native-certs",
|
|
2829
2708
|
"rustls-pki-types",
|
|
2709
|
+
"rustls-platform-verifier",
|
|
2830
2710
|
"serde",
|
|
2831
2711
|
"serde_json",
|
|
2832
2712
|
"serde_urlencoded",
|
|
@@ -2834,7 +2714,7 @@ dependencies = [
|
|
|
2834
2714
|
"tokio",
|
|
2835
2715
|
"tokio-rustls",
|
|
2836
2716
|
"tokio-util",
|
|
2837
|
-
"tower
|
|
2717
|
+
"tower",
|
|
2838
2718
|
"tower-http",
|
|
2839
2719
|
"tower-service",
|
|
2840
2720
|
"url",
|
|
@@ -2842,7 +2722,6 @@ dependencies = [
|
|
|
2842
2722
|
"wasm-bindgen-futures",
|
|
2843
2723
|
"wasm-streams",
|
|
2844
2724
|
"web-sys",
|
|
2845
|
-
"webpki-roots 1.0.0",
|
|
2846
2725
|
]
|
|
2847
2726
|
|
|
2848
2727
|
[[package]]
|
|
@@ -2854,7 +2733,7 @@ dependencies = [
|
|
|
2854
2733
|
"anyhow",
|
|
2855
2734
|
"base64 0.22.1",
|
|
2856
2735
|
"httparse",
|
|
2857
|
-
"indexmap
|
|
2736
|
+
"indexmap",
|
|
2858
2737
|
"nom",
|
|
2859
2738
|
"url",
|
|
2860
2739
|
]
|
|
@@ -2867,27 +2746,36 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
|
2867
2746
|
dependencies = [
|
|
2868
2747
|
"cc",
|
|
2869
2748
|
"cfg-if",
|
|
2870
|
-
"getrandom 0.2.
|
|
2749
|
+
"getrandom 0.2.17",
|
|
2871
2750
|
"libc",
|
|
2872
2751
|
"untrusted",
|
|
2873
2752
|
"windows-sys 0.52.0",
|
|
2874
2753
|
]
|
|
2875
2754
|
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "rsqlite-vfs"
|
|
2757
|
+
version = "0.1.0"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d"
|
|
2760
|
+
dependencies = [
|
|
2761
|
+
"hashbrown 0.16.1",
|
|
2762
|
+
"thiserror 2.0.17",
|
|
2763
|
+
]
|
|
2764
|
+
|
|
2876
2765
|
[[package]]
|
|
2877
2766
|
name = "rstest"
|
|
2878
|
-
version = "0.
|
|
2767
|
+
version = "0.26.1"
|
|
2879
2768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
-
checksum = "
|
|
2769
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
|
2881
2770
|
dependencies = [
|
|
2882
2771
|
"rstest_macros",
|
|
2883
|
-
"rustc_version",
|
|
2884
2772
|
]
|
|
2885
2773
|
|
|
2886
2774
|
[[package]]
|
|
2887
2775
|
name = "rstest_macros"
|
|
2888
|
-
version = "0.
|
|
2776
|
+
version = "0.26.1"
|
|
2889
2777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
-
checksum = "
|
|
2778
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
|
2891
2779
|
dependencies = [
|
|
2892
2780
|
"cfg-if",
|
|
2893
2781
|
"glob",
|
|
@@ -2896,31 +2784,31 @@ dependencies = [
|
|
|
2896
2784
|
"regex",
|
|
2897
2785
|
"relative-path",
|
|
2898
2786
|
"rustc_version",
|
|
2899
|
-
"syn 2.0.
|
|
2787
|
+
"syn 2.0.114",
|
|
2900
2788
|
"unicode-ident",
|
|
2901
2789
|
]
|
|
2902
2790
|
|
|
2903
2791
|
[[package]]
|
|
2904
2792
|
name = "rusqlite"
|
|
2905
|
-
version = "0.
|
|
2793
|
+
version = "0.38.0"
|
|
2906
2794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2907
|
-
checksum = "
|
|
2795
|
+
checksum = "f1c93dd1c9683b438c392c492109cb702b8090b2bfc8fed6f6e4eb4523f17af3"
|
|
2908
2796
|
dependencies = [
|
|
2909
|
-
"bitflags 2.
|
|
2797
|
+
"bitflags 2.10.0",
|
|
2910
2798
|
"chrono",
|
|
2911
2799
|
"fallible-iterator",
|
|
2912
2800
|
"fallible-streaming-iterator",
|
|
2913
|
-
"hashlink",
|
|
2914
2801
|
"libsqlite3-sys",
|
|
2915
2802
|
"smallvec",
|
|
2803
|
+
"sqlite-wasm-rs",
|
|
2916
2804
|
"uuid",
|
|
2917
2805
|
]
|
|
2918
2806
|
|
|
2919
2807
|
[[package]]
|
|
2920
2808
|
name = "rusqlite_migration"
|
|
2921
|
-
version = "2.
|
|
2809
|
+
version = "2.4.0"
|
|
2922
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
-
checksum = "
|
|
2811
|
+
checksum = "08e45ef6076d02cdc5b6daa61999bb6a90d7a2e256c178c31ab903d5023f1493"
|
|
2924
2812
|
dependencies = [
|
|
2925
2813
|
"log",
|
|
2926
2814
|
"rusqlite",
|
|
@@ -2928,9 +2816,9 @@ dependencies = [
|
|
|
2928
2816
|
|
|
2929
2817
|
[[package]]
|
|
2930
2818
|
name = "rustc-demangle"
|
|
2931
|
-
version = "0.1.
|
|
2819
|
+
version = "0.1.27"
|
|
2932
2820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
-
checksum = "
|
|
2821
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
2934
2822
|
|
|
2935
2823
|
[[package]]
|
|
2936
2824
|
name = "rustc-hash"
|
|
@@ -2949,25 +2837,25 @@ dependencies = [
|
|
|
2949
2837
|
|
|
2950
2838
|
[[package]]
|
|
2951
2839
|
name = "rustix"
|
|
2952
|
-
version = "1.
|
|
2840
|
+
version = "1.1.3"
|
|
2953
2841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
-
checksum = "
|
|
2842
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2955
2843
|
dependencies = [
|
|
2956
|
-
"bitflags 2.
|
|
2844
|
+
"bitflags 2.10.0",
|
|
2957
2845
|
"errno",
|
|
2958
2846
|
"libc",
|
|
2959
2847
|
"linux-raw-sys",
|
|
2960
|
-
"windows-sys 0.
|
|
2848
|
+
"windows-sys 0.61.2",
|
|
2961
2849
|
]
|
|
2962
2850
|
|
|
2963
2851
|
[[package]]
|
|
2964
2852
|
name = "rustls"
|
|
2965
|
-
version = "0.23.
|
|
2853
|
+
version = "0.23.36"
|
|
2966
2854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
-
checksum = "
|
|
2855
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
2968
2856
|
dependencies = [
|
|
2857
|
+
"aws-lc-rs",
|
|
2969
2858
|
"once_cell",
|
|
2970
|
-
"ring",
|
|
2971
2859
|
"rustls-pki-types",
|
|
2972
2860
|
"rustls-webpki",
|
|
2973
2861
|
"subtle",
|
|
@@ -2976,9 +2864,9 @@ dependencies = [
|
|
|
2976
2864
|
|
|
2977
2865
|
[[package]]
|
|
2978
2866
|
name = "rustls-native-certs"
|
|
2979
|
-
version = "0.8.
|
|
2867
|
+
version = "0.8.3"
|
|
2980
2868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
-
checksum = "
|
|
2869
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
2982
2870
|
dependencies = [
|
|
2983
2871
|
"openssl-probe",
|
|
2984
2872
|
"rustls-pki-types",
|
|
@@ -2988,20 +2876,48 @@ dependencies = [
|
|
|
2988
2876
|
|
|
2989
2877
|
[[package]]
|
|
2990
2878
|
name = "rustls-pki-types"
|
|
2991
|
-
version = "1.
|
|
2879
|
+
version = "1.14.0"
|
|
2992
2880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
-
checksum = "
|
|
2881
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2994
2882
|
dependencies = [
|
|
2995
2883
|
"web-time",
|
|
2996
2884
|
"zeroize",
|
|
2997
2885
|
]
|
|
2998
2886
|
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "rustls-platform-verifier"
|
|
2889
|
+
version = "0.6.2"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"core-foundation",
|
|
2894
|
+
"core-foundation-sys",
|
|
2895
|
+
"jni",
|
|
2896
|
+
"log",
|
|
2897
|
+
"once_cell",
|
|
2898
|
+
"rustls",
|
|
2899
|
+
"rustls-native-certs",
|
|
2900
|
+
"rustls-platform-verifier-android",
|
|
2901
|
+
"rustls-webpki",
|
|
2902
|
+
"security-framework",
|
|
2903
|
+
"security-framework-sys",
|
|
2904
|
+
"webpki-root-certs",
|
|
2905
|
+
"windows-sys 0.61.2",
|
|
2906
|
+
]
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "rustls-platform-verifier-android"
|
|
2910
|
+
version = "0.1.1"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
2913
|
+
|
|
2999
2914
|
[[package]]
|
|
3000
2915
|
name = "rustls-webpki"
|
|
3001
|
-
version = "0.103.
|
|
2916
|
+
version = "0.103.9"
|
|
3002
2917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
-
checksum = "
|
|
2918
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
3004
2919
|
dependencies = [
|
|
2920
|
+
"aws-lc-rs",
|
|
3005
2921
|
"ring",
|
|
3006
2922
|
"rustls-pki-types",
|
|
3007
2923
|
"untrusted",
|
|
@@ -3009,15 +2925,15 @@ dependencies = [
|
|
|
3009
2925
|
|
|
3010
2926
|
[[package]]
|
|
3011
2927
|
name = "rustversion"
|
|
3012
|
-
version = "1.0.
|
|
2928
|
+
version = "1.0.22"
|
|
3013
2929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
-
checksum = "
|
|
2930
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3015
2931
|
|
|
3016
2932
|
[[package]]
|
|
3017
2933
|
name = "rusty-fork"
|
|
3018
|
-
version = "0.3.
|
|
2934
|
+
version = "0.3.1"
|
|
3019
2935
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3020
|
-
checksum = "
|
|
2936
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
3021
2937
|
dependencies = [
|
|
3022
2938
|
"fnv",
|
|
3023
2939
|
"quick-error",
|
|
@@ -3027,9 +2943,9 @@ dependencies = [
|
|
|
3027
2943
|
|
|
3028
2944
|
[[package]]
|
|
3029
2945
|
name = "ryu"
|
|
3030
|
-
version = "1.0.
|
|
2946
|
+
version = "1.0.22"
|
|
3031
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3032
|
-
checksum = "
|
|
2948
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
3033
2949
|
|
|
3034
2950
|
[[package]]
|
|
3035
2951
|
name = "same-file"
|
|
@@ -3049,7 +2965,7 @@ dependencies = [
|
|
|
3049
2965
|
"arraydeque",
|
|
3050
2966
|
"encoding_rs",
|
|
3051
2967
|
"hashlink",
|
|
3052
|
-
"ordered-float 5.
|
|
2968
|
+
"ordered-float 5.1.0",
|
|
3053
2969
|
"saphyr-parser",
|
|
3054
2970
|
]
|
|
3055
2971
|
|
|
@@ -3065,21 +2981,21 @@ dependencies = [
|
|
|
3065
2981
|
|
|
3066
2982
|
[[package]]
|
|
3067
2983
|
name = "schannel"
|
|
3068
|
-
version = "0.1.
|
|
2984
|
+
version = "0.1.28"
|
|
3069
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
-
checksum = "
|
|
2986
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
3071
2987
|
dependencies = [
|
|
3072
|
-
"windows-sys 0.
|
|
2988
|
+
"windows-sys 0.61.2",
|
|
3073
2989
|
]
|
|
3074
2990
|
|
|
3075
2991
|
[[package]]
|
|
3076
2992
|
name = "schemars"
|
|
3077
|
-
version = "1.0
|
|
2993
|
+
version = "1.2.0"
|
|
3078
2994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
-
checksum = "
|
|
2995
|
+
checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2"
|
|
3080
2996
|
dependencies = [
|
|
3081
2997
|
"dyn-clone",
|
|
3082
|
-
"indexmap
|
|
2998
|
+
"indexmap",
|
|
3083
2999
|
"ref-cast",
|
|
3084
3000
|
"schemars_derive",
|
|
3085
3001
|
"serde",
|
|
@@ -3088,14 +3004,14 @@ dependencies = [
|
|
|
3088
3004
|
|
|
3089
3005
|
[[package]]
|
|
3090
3006
|
name = "schemars_derive"
|
|
3091
|
-
version = "1.0
|
|
3007
|
+
version = "1.2.0"
|
|
3092
3008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
-
checksum = "
|
|
3009
|
+
checksum = "4908ad288c5035a8eb12cfdf0d49270def0a268ee162b75eeee0f85d155a7c45"
|
|
3094
3010
|
dependencies = [
|
|
3095
3011
|
"proc-macro2",
|
|
3096
3012
|
"quote",
|
|
3097
3013
|
"serde_derive_internals",
|
|
3098
|
-
"syn 2.0.
|
|
3014
|
+
"syn 2.0.114",
|
|
3099
3015
|
]
|
|
3100
3016
|
|
|
3101
3017
|
[[package]]
|
|
@@ -3106,11 +3022,11 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
3106
3022
|
|
|
3107
3023
|
[[package]]
|
|
3108
3024
|
name = "security-framework"
|
|
3109
|
-
version = "3.
|
|
3025
|
+
version = "3.5.1"
|
|
3110
3026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
-
checksum = "
|
|
3027
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
3112
3028
|
dependencies = [
|
|
3113
|
-
"bitflags 2.
|
|
3029
|
+
"bitflags 2.10.0",
|
|
3114
3030
|
"core-foundation",
|
|
3115
3031
|
"core-foundation-sys",
|
|
3116
3032
|
"libc",
|
|
@@ -3119,9 +3035,9 @@ dependencies = [
|
|
|
3119
3035
|
|
|
3120
3036
|
[[package]]
|
|
3121
3037
|
name = "security-framework-sys"
|
|
3122
|
-
version = "2.
|
|
3038
|
+
version = "2.15.0"
|
|
3123
3039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3124
|
-
checksum = "
|
|
3040
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
3125
3041
|
dependencies = [
|
|
3126
3042
|
"core-foundation-sys",
|
|
3127
3043
|
"libc",
|
|
@@ -3129,9 +3045,9 @@ dependencies = [
|
|
|
3129
3045
|
|
|
3130
3046
|
[[package]]
|
|
3131
3047
|
name = "semver"
|
|
3132
|
-
version = "1.0.
|
|
3048
|
+
version = "1.0.27"
|
|
3133
3049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3134
|
-
checksum = "
|
|
3050
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
3135
3051
|
|
|
3136
3052
|
[[package]]
|
|
3137
3053
|
name = "serde"
|
|
@@ -3160,7 +3076,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
3160
3076
|
dependencies = [
|
|
3161
3077
|
"proc-macro2",
|
|
3162
3078
|
"quote",
|
|
3163
|
-
"syn 2.0.
|
|
3079
|
+
"syn 2.0.114",
|
|
3164
3080
|
]
|
|
3165
3081
|
|
|
3166
3082
|
[[package]]
|
|
@@ -3171,21 +3087,21 @@ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
|
|
|
3171
3087
|
dependencies = [
|
|
3172
3088
|
"proc-macro2",
|
|
3173
3089
|
"quote",
|
|
3174
|
-
"syn 2.0.
|
|
3090
|
+
"syn 2.0.114",
|
|
3175
3091
|
]
|
|
3176
3092
|
|
|
3177
3093
|
[[package]]
|
|
3178
3094
|
name = "serde_json"
|
|
3179
|
-
version = "1.0.
|
|
3095
|
+
version = "1.0.149"
|
|
3180
3096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3181
|
-
checksum = "
|
|
3097
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3182
3098
|
dependencies = [
|
|
3183
|
-
"indexmap
|
|
3099
|
+
"indexmap",
|
|
3184
3100
|
"itoa",
|
|
3185
3101
|
"memchr",
|
|
3186
|
-
"ryu",
|
|
3187
3102
|
"serde",
|
|
3188
3103
|
"serde_core",
|
|
3104
|
+
"zmij",
|
|
3189
3105
|
]
|
|
3190
3106
|
|
|
3191
3107
|
[[package]]
|
|
@@ -3201,7 +3117,7 @@ dependencies = [
|
|
|
3201
3117
|
"serde_json",
|
|
3202
3118
|
"serde_json_path_core",
|
|
3203
3119
|
"serde_json_path_macros",
|
|
3204
|
-
"thiserror 2.0.
|
|
3120
|
+
"thiserror 2.0.17",
|
|
3205
3121
|
]
|
|
3206
3122
|
|
|
3207
3123
|
[[package]]
|
|
@@ -3213,7 +3129,7 @@ dependencies = [
|
|
|
3213
3129
|
"inventory",
|
|
3214
3130
|
"serde",
|
|
3215
3131
|
"serde_json",
|
|
3216
|
-
"thiserror 2.0.
|
|
3132
|
+
"thiserror 2.0.17",
|
|
3217
3133
|
]
|
|
3218
3134
|
|
|
3219
3135
|
[[package]]
|
|
@@ -3235,24 +3151,14 @@ checksum = "aafbefbe175fa9bf03ca83ef89beecff7d2a95aaacd5732325b90ac8c3bd7b90"
|
|
|
3235
3151
|
dependencies = [
|
|
3236
3152
|
"proc-macro2",
|
|
3237
3153
|
"quote",
|
|
3238
|
-
"syn 2.0.
|
|
3239
|
-
]
|
|
3240
|
-
|
|
3241
|
-
[[package]]
|
|
3242
|
-
name = "serde_path_to_error"
|
|
3243
|
-
version = "0.1.17"
|
|
3244
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
-
checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
|
|
3246
|
-
dependencies = [
|
|
3247
|
-
"itoa",
|
|
3248
|
-
"serde",
|
|
3154
|
+
"syn 2.0.114",
|
|
3249
3155
|
]
|
|
3250
3156
|
|
|
3251
3157
|
[[package]]
|
|
3252
3158
|
name = "serde_spanned"
|
|
3253
|
-
version = "1.0.
|
|
3159
|
+
version = "1.0.4"
|
|
3254
3160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
-
checksum = "
|
|
3161
|
+
checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
|
|
3256
3162
|
dependencies = [
|
|
3257
3163
|
"serde_core",
|
|
3258
3164
|
]
|
|
@@ -3284,7 +3190,7 @@ version = "0.9.34+deprecated"
|
|
|
3284
3190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
3191
|
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
3286
3192
|
dependencies = [
|
|
3287
|
-
"indexmap
|
|
3193
|
+
"indexmap",
|
|
3288
3194
|
"itoa",
|
|
3289
3195
|
"ryu",
|
|
3290
3196
|
"serde",
|
|
@@ -3313,9 +3219,9 @@ dependencies = [
|
|
|
3313
3219
|
|
|
3314
3220
|
[[package]]
|
|
3315
3221
|
name = "shell-words"
|
|
3316
|
-
version = "1.1.
|
|
3222
|
+
version = "1.1.1"
|
|
3317
3223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3318
|
-
checksum = "
|
|
3224
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
3319
3225
|
|
|
3320
3226
|
[[package]]
|
|
3321
3227
|
name = "shlex"
|
|
@@ -3335,9 +3241,9 @@ dependencies = [
|
|
|
3335
3241
|
|
|
3336
3242
|
[[package]]
|
|
3337
3243
|
name = "signal-hook-mio"
|
|
3338
|
-
version = "0.2.
|
|
3244
|
+
version = "0.2.5"
|
|
3339
3245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
|
-
checksum = "
|
|
3246
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
3341
3247
|
dependencies = [
|
|
3342
3248
|
"libc",
|
|
3343
3249
|
"mio",
|
|
@@ -3346,13 +3252,20 @@ dependencies = [
|
|
|
3346
3252
|
|
|
3347
3253
|
[[package]]
|
|
3348
3254
|
name = "signal-hook-registry"
|
|
3349
|
-
version = "1.4.
|
|
3255
|
+
version = "1.4.8"
|
|
3350
3256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
-
checksum = "
|
|
3257
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3352
3258
|
dependencies = [
|
|
3259
|
+
"errno",
|
|
3353
3260
|
"libc",
|
|
3354
3261
|
]
|
|
3355
3262
|
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "simd-adler32"
|
|
3265
|
+
version = "0.3.8"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
3268
|
+
|
|
3356
3269
|
[[package]]
|
|
3357
3270
|
name = "siphasher"
|
|
3358
3271
|
version = "1.0.1"
|
|
@@ -3361,16 +3274,13 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
|
3361
3274
|
|
|
3362
3275
|
[[package]]
|
|
3363
3276
|
name = "slab"
|
|
3364
|
-
version = "0.4.
|
|
3277
|
+
version = "0.4.11"
|
|
3365
3278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
-
checksum = "
|
|
3367
|
-
dependencies = [
|
|
3368
|
-
"autocfg",
|
|
3369
|
-
]
|
|
3279
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3370
3280
|
|
|
3371
3281
|
[[package]]
|
|
3372
3282
|
name = "slumber"
|
|
3373
|
-
version = "
|
|
3283
|
+
version = "5.0.0"
|
|
3374
3284
|
dependencies = [
|
|
3375
3285
|
"anyhow",
|
|
3376
3286
|
"console-subscriber",
|
|
@@ -3384,7 +3294,7 @@ dependencies = [
|
|
|
3384
3294
|
|
|
3385
3295
|
[[package]]
|
|
3386
3296
|
name = "slumber_cli"
|
|
3387
|
-
version = "
|
|
3297
|
+
version = "5.0.0"
|
|
3388
3298
|
dependencies = [
|
|
3389
3299
|
"anyhow",
|
|
3390
3300
|
"assert_cmd",
|
|
@@ -3394,8 +3304,8 @@ dependencies = [
|
|
|
3394
3304
|
"clap_complete",
|
|
3395
3305
|
"dialoguer",
|
|
3396
3306
|
"env-lock",
|
|
3397
|
-
"indexmap
|
|
3398
|
-
"itertools
|
|
3307
|
+
"indexmap",
|
|
3308
|
+
"itertools",
|
|
3399
3309
|
"predicates",
|
|
3400
3310
|
"pretty_assertions",
|
|
3401
3311
|
"reqwest",
|
|
@@ -3403,10 +3313,12 @@ dependencies = [
|
|
|
3403
3313
|
"schemars",
|
|
3404
3314
|
"serde",
|
|
3405
3315
|
"serde_json",
|
|
3316
|
+
"serde_urlencoded",
|
|
3406
3317
|
"serde_yaml",
|
|
3407
3318
|
"slumber_config",
|
|
3408
3319
|
"slumber_core",
|
|
3409
3320
|
"slumber_import",
|
|
3321
|
+
"slumber_template",
|
|
3410
3322
|
"slumber_util",
|
|
3411
3323
|
"tokio",
|
|
3412
3324
|
"tracing",
|
|
@@ -3417,15 +3329,15 @@ dependencies = [
|
|
|
3417
3329
|
|
|
3418
3330
|
[[package]]
|
|
3419
3331
|
name = "slumber_config"
|
|
3420
|
-
version = "
|
|
3332
|
+
version = "5.0.0"
|
|
3421
3333
|
dependencies = [
|
|
3422
|
-
"derive_more
|
|
3334
|
+
"derive_more",
|
|
3423
3335
|
"dirs",
|
|
3424
3336
|
"editor-command",
|
|
3425
3337
|
"env-lock",
|
|
3426
3338
|
"glob",
|
|
3427
|
-
"indexmap
|
|
3428
|
-
"itertools
|
|
3339
|
+
"indexmap",
|
|
3340
|
+
"itertools",
|
|
3429
3341
|
"mime",
|
|
3430
3342
|
"pretty_assertions",
|
|
3431
3343
|
"ratatui-core",
|
|
@@ -3436,24 +3348,24 @@ dependencies = [
|
|
|
3436
3348
|
"serde_yaml",
|
|
3437
3349
|
"slumber_util",
|
|
3438
3350
|
"terminput",
|
|
3439
|
-
"thiserror 2.0.
|
|
3351
|
+
"thiserror 2.0.17",
|
|
3440
3352
|
"tracing",
|
|
3441
3353
|
]
|
|
3442
3354
|
|
|
3443
3355
|
[[package]]
|
|
3444
3356
|
name = "slumber_core"
|
|
3445
|
-
version = "
|
|
3357
|
+
version = "5.0.0"
|
|
3446
3358
|
dependencies = [
|
|
3447
3359
|
"async-trait",
|
|
3448
3360
|
"base64 0.22.1",
|
|
3449
3361
|
"bytes",
|
|
3450
3362
|
"chrono",
|
|
3451
|
-
"derive_more
|
|
3363
|
+
"derive_more",
|
|
3452
3364
|
"dialoguer",
|
|
3453
3365
|
"env-lock",
|
|
3454
3366
|
"futures",
|
|
3455
|
-
"indexmap
|
|
3456
|
-
"itertools
|
|
3367
|
+
"indexmap",
|
|
3368
|
+
"itertools",
|
|
3457
3369
|
"jaq-core",
|
|
3458
3370
|
"jaq-json",
|
|
3459
3371
|
"jaq-std",
|
|
@@ -3477,8 +3389,8 @@ dependencies = [
|
|
|
3477
3389
|
"slumber_macros",
|
|
3478
3390
|
"slumber_template",
|
|
3479
3391
|
"slumber_util",
|
|
3480
|
-
"strum
|
|
3481
|
-
"thiserror 2.0.
|
|
3392
|
+
"strum",
|
|
3393
|
+
"thiserror 2.0.17",
|
|
3482
3394
|
"tokio",
|
|
3483
3395
|
"tokio-util",
|
|
3484
3396
|
"tracing",
|
|
@@ -3490,14 +3402,14 @@ dependencies = [
|
|
|
3490
3402
|
|
|
3491
3403
|
[[package]]
|
|
3492
3404
|
name = "slumber_import"
|
|
3493
|
-
version = "
|
|
3405
|
+
version = "5.0.0"
|
|
3494
3406
|
dependencies = [
|
|
3495
3407
|
"anyhow",
|
|
3496
3408
|
"base64 0.22.1",
|
|
3497
|
-
"derive_more
|
|
3409
|
+
"derive_more",
|
|
3498
3410
|
"futures",
|
|
3499
|
-
"indexmap
|
|
3500
|
-
"itertools
|
|
3411
|
+
"indexmap",
|
|
3412
|
+
"itertools",
|
|
3501
3413
|
"mime",
|
|
3502
3414
|
"oas3",
|
|
3503
3415
|
"openapiv3",
|
|
@@ -3513,8 +3425,8 @@ dependencies = [
|
|
|
3513
3425
|
"slumber_core",
|
|
3514
3426
|
"slumber_template",
|
|
3515
3427
|
"slumber_util",
|
|
3516
|
-
"strum
|
|
3517
|
-
"thiserror 2.0.
|
|
3428
|
+
"strum",
|
|
3429
|
+
"thiserror 2.0.17",
|
|
3518
3430
|
"tokio",
|
|
3519
3431
|
"tracing",
|
|
3520
3432
|
"winnow",
|
|
@@ -3522,35 +3434,36 @@ dependencies = [
|
|
|
3522
3434
|
|
|
3523
3435
|
[[package]]
|
|
3524
3436
|
name = "slumber_macros"
|
|
3525
|
-
version = "
|
|
3437
|
+
version = "5.0.0"
|
|
3526
3438
|
dependencies = [
|
|
3527
3439
|
"proc-macro2",
|
|
3528
3440
|
"quote",
|
|
3529
|
-
"syn 2.0.
|
|
3441
|
+
"syn 2.0.114",
|
|
3530
3442
|
]
|
|
3531
3443
|
|
|
3532
3444
|
[[package]]
|
|
3533
3445
|
name = "slumber_python"
|
|
3534
|
-
version = "
|
|
3446
|
+
version = "5.0.0"
|
|
3535
3447
|
dependencies = [
|
|
3536
3448
|
"async-trait",
|
|
3537
3449
|
"dialoguer",
|
|
3538
|
-
"indexmap
|
|
3450
|
+
"indexmap",
|
|
3539
3451
|
"pyo3",
|
|
3540
3452
|
"slumber_config",
|
|
3541
3453
|
"slumber_core",
|
|
3454
|
+
"slumber_template",
|
|
3542
3455
|
"tokio",
|
|
3543
3456
|
]
|
|
3544
3457
|
|
|
3545
3458
|
[[package]]
|
|
3546
3459
|
name = "slumber_template"
|
|
3547
|
-
version = "
|
|
3460
|
+
version = "5.0.0"
|
|
3548
3461
|
dependencies = [
|
|
3549
3462
|
"bytes",
|
|
3550
|
-
"derive_more
|
|
3463
|
+
"derive_more",
|
|
3551
3464
|
"futures",
|
|
3552
|
-
"indexmap
|
|
3553
|
-
"itertools
|
|
3465
|
+
"indexmap",
|
|
3466
|
+
"itertools",
|
|
3554
3467
|
"pretty_assertions",
|
|
3555
3468
|
"proptest",
|
|
3556
3469
|
"proptest-derive",
|
|
@@ -3562,7 +3475,7 @@ dependencies = [
|
|
|
3562
3475
|
"serde_json",
|
|
3563
3476
|
"serde_yaml",
|
|
3564
3477
|
"slumber_util",
|
|
3565
|
-
"thiserror 2.0.
|
|
3478
|
+
"thiserror 2.0.17",
|
|
3566
3479
|
"tokio",
|
|
3567
3480
|
"tokio-util",
|
|
3568
3481
|
"tracing",
|
|
@@ -3571,21 +3484,19 @@ dependencies = [
|
|
|
3571
3484
|
|
|
3572
3485
|
[[package]]
|
|
3573
3486
|
name = "slumber_tui"
|
|
3574
|
-
version = "
|
|
3487
|
+
version = "5.0.0"
|
|
3575
3488
|
dependencies = [
|
|
3576
3489
|
"anyhow",
|
|
3577
3490
|
"async-trait",
|
|
3578
3491
|
"bytes",
|
|
3579
3492
|
"chrono",
|
|
3580
3493
|
"crossterm",
|
|
3581
|
-
"derive_more
|
|
3494
|
+
"derive_more",
|
|
3495
|
+
"env-lock",
|
|
3582
3496
|
"futures",
|
|
3583
|
-
"indexmap
|
|
3584
|
-
"itertools
|
|
3497
|
+
"indexmap",
|
|
3498
|
+
"itertools",
|
|
3585
3499
|
"mime",
|
|
3586
|
-
"notify",
|
|
3587
|
-
"notify-debouncer-full",
|
|
3588
|
-
"persisted",
|
|
3589
3500
|
"pretty_assertions",
|
|
3590
3501
|
"proptest",
|
|
3591
3502
|
"ratatui",
|
|
@@ -3593,12 +3504,13 @@ dependencies = [
|
|
|
3593
3504
|
"rstest",
|
|
3594
3505
|
"serde",
|
|
3595
3506
|
"serde_json",
|
|
3507
|
+
"serde_yaml",
|
|
3596
3508
|
"shell-words",
|
|
3597
3509
|
"slumber_config",
|
|
3598
3510
|
"slumber_core",
|
|
3599
3511
|
"slumber_template",
|
|
3600
3512
|
"slumber_util",
|
|
3601
|
-
"strum
|
|
3513
|
+
"strum",
|
|
3602
3514
|
"terminput",
|
|
3603
3515
|
"terminput-crossterm",
|
|
3604
3516
|
"tokio",
|
|
@@ -3606,28 +3518,27 @@ dependencies = [
|
|
|
3606
3518
|
"tracing",
|
|
3607
3519
|
"tree-sitter-highlight",
|
|
3608
3520
|
"tree-sitter-json",
|
|
3609
|
-
"unicode-width
|
|
3521
|
+
"unicode-width",
|
|
3610
3522
|
"uuid",
|
|
3611
3523
|
"wiremock",
|
|
3612
3524
|
]
|
|
3613
3525
|
|
|
3614
3526
|
[[package]]
|
|
3615
3527
|
name = "slumber_util"
|
|
3616
|
-
version = "
|
|
3528
|
+
version = "5.0.0"
|
|
3617
3529
|
dependencies = [
|
|
3618
|
-
"derive_more
|
|
3530
|
+
"derive_more",
|
|
3619
3531
|
"dirs",
|
|
3620
3532
|
"env-lock",
|
|
3621
|
-
"indexmap
|
|
3622
|
-
"itertools
|
|
3533
|
+
"indexmap",
|
|
3534
|
+
"itertools",
|
|
3623
3535
|
"path-clean",
|
|
3624
3536
|
"pretty_assertions",
|
|
3625
3537
|
"rstest",
|
|
3626
3538
|
"saphyr",
|
|
3627
3539
|
"serde",
|
|
3628
|
-
"serde_path_to_error",
|
|
3629
3540
|
"serde_yaml",
|
|
3630
|
-
"thiserror 2.0.
|
|
3541
|
+
"thiserror 2.0.17",
|
|
3631
3542
|
"tracing",
|
|
3632
3543
|
"tracing-subscriber",
|
|
3633
3544
|
"uuid",
|
|
@@ -3636,25 +3547,37 @@ dependencies = [
|
|
|
3636
3547
|
|
|
3637
3548
|
[[package]]
|
|
3638
3549
|
name = "smallvec"
|
|
3639
|
-
version = "1.15.
|
|
3550
|
+
version = "1.15.1"
|
|
3640
3551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
-
checksum = "
|
|
3552
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3642
3553
|
|
|
3643
3554
|
[[package]]
|
|
3644
3555
|
name = "socket2"
|
|
3645
|
-
version = "0.
|
|
3556
|
+
version = "0.6.1"
|
|
3646
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
-
checksum = "
|
|
3558
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
3648
3559
|
dependencies = [
|
|
3649
3560
|
"libc",
|
|
3650
|
-
"windows-sys 0.
|
|
3561
|
+
"windows-sys 0.60.2",
|
|
3562
|
+
]
|
|
3563
|
+
|
|
3564
|
+
[[package]]
|
|
3565
|
+
name = "sqlite-wasm-rs"
|
|
3566
|
+
version = "0.5.2"
|
|
3567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3568
|
+
checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b"
|
|
3569
|
+
dependencies = [
|
|
3570
|
+
"cc",
|
|
3571
|
+
"js-sys",
|
|
3572
|
+
"rsqlite-vfs",
|
|
3573
|
+
"wasm-bindgen",
|
|
3651
3574
|
]
|
|
3652
3575
|
|
|
3653
3576
|
[[package]]
|
|
3654
3577
|
name = "stable_deref_trait"
|
|
3655
|
-
version = "1.2.
|
|
3578
|
+
version = "1.2.1"
|
|
3656
3579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3657
|
-
checksum = "
|
|
3580
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3658
3581
|
|
|
3659
3582
|
[[package]]
|
|
3660
3583
|
name = "static_assertions"
|
|
@@ -3676,46 +3599,23 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
3676
3599
|
|
|
3677
3600
|
[[package]]
|
|
3678
3601
|
name = "strum"
|
|
3679
|
-
version = "0.
|
|
3680
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3681
|
-
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
3682
|
-
dependencies = [
|
|
3683
|
-
"strum_macros 0.26.4",
|
|
3684
|
-
]
|
|
3685
|
-
|
|
3686
|
-
[[package]]
|
|
3687
|
-
name = "strum"
|
|
3688
|
-
version = "0.27.1"
|
|
3689
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
-
checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
|
|
3691
|
-
dependencies = [
|
|
3692
|
-
"strum_macros 0.27.1",
|
|
3693
|
-
]
|
|
3694
|
-
|
|
3695
|
-
[[package]]
|
|
3696
|
-
name = "strum_macros"
|
|
3697
|
-
version = "0.26.4"
|
|
3602
|
+
version = "0.27.2"
|
|
3698
3603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
-
checksum = "
|
|
3604
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
3700
3605
|
dependencies = [
|
|
3701
|
-
"
|
|
3702
|
-
"proc-macro2",
|
|
3703
|
-
"quote",
|
|
3704
|
-
"rustversion",
|
|
3705
|
-
"syn 2.0.101",
|
|
3606
|
+
"strum_macros",
|
|
3706
3607
|
]
|
|
3707
3608
|
|
|
3708
3609
|
[[package]]
|
|
3709
3610
|
name = "strum_macros"
|
|
3710
|
-
version = "0.27.
|
|
3611
|
+
version = "0.27.2"
|
|
3711
3612
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3712
|
-
checksum = "
|
|
3613
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
3713
3614
|
dependencies = [
|
|
3714
3615
|
"heck",
|
|
3715
3616
|
"proc-macro2",
|
|
3716
3617
|
"quote",
|
|
3717
|
-
"
|
|
3718
|
-
"syn 2.0.101",
|
|
3618
|
+
"syn 2.0.114",
|
|
3719
3619
|
]
|
|
3720
3620
|
|
|
3721
3621
|
[[package]]
|
|
@@ -3737,9 +3637,9 @@ dependencies = [
|
|
|
3737
3637
|
|
|
3738
3638
|
[[package]]
|
|
3739
3639
|
name = "syn"
|
|
3740
|
-
version = "2.0.
|
|
3640
|
+
version = "2.0.114"
|
|
3741
3641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3742
|
-
checksum = "
|
|
3642
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
3743
3643
|
dependencies = [
|
|
3744
3644
|
"proc-macro2",
|
|
3745
3645
|
"quote",
|
|
@@ -3763,26 +3663,26 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
3763
3663
|
dependencies = [
|
|
3764
3664
|
"proc-macro2",
|
|
3765
3665
|
"quote",
|
|
3766
|
-
"syn 2.0.
|
|
3666
|
+
"syn 2.0.114",
|
|
3767
3667
|
]
|
|
3768
3668
|
|
|
3769
3669
|
[[package]]
|
|
3770
3670
|
name = "target-lexicon"
|
|
3771
|
-
version = "0.13.
|
|
3671
|
+
version = "0.13.4"
|
|
3772
3672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3773
|
-
checksum = "
|
|
3673
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3774
3674
|
|
|
3775
3675
|
[[package]]
|
|
3776
3676
|
name = "tempfile"
|
|
3777
|
-
version = "3.
|
|
3677
|
+
version = "3.24.0"
|
|
3778
3678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
-
checksum = "
|
|
3679
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
3780
3680
|
dependencies = [
|
|
3781
3681
|
"fastrand",
|
|
3782
|
-
"getrandom 0.3.
|
|
3682
|
+
"getrandom 0.3.4",
|
|
3783
3683
|
"once_cell",
|
|
3784
3684
|
"rustix",
|
|
3785
|
-
"windows-sys 0.
|
|
3685
|
+
"windows-sys 0.61.2",
|
|
3786
3686
|
]
|
|
3787
3687
|
|
|
3788
3688
|
[[package]]
|
|
@@ -3799,18 +3699,18 @@ dependencies = [
|
|
|
3799
3699
|
|
|
3800
3700
|
[[package]]
|
|
3801
3701
|
name = "terminput"
|
|
3802
|
-
version = "0.5.
|
|
3702
|
+
version = "0.5.12"
|
|
3803
3703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3804
|
-
checksum = "
|
|
3704
|
+
checksum = "fb2e8e835e040588586eb480bd465b41e1164d507190cce0c7153bb56b27614d"
|
|
3805
3705
|
dependencies = [
|
|
3806
|
-
"bitflags 2.
|
|
3706
|
+
"bitflags 2.10.0",
|
|
3807
3707
|
]
|
|
3808
3708
|
|
|
3809
3709
|
[[package]]
|
|
3810
3710
|
name = "terminput-crossterm"
|
|
3811
|
-
version = "0.
|
|
3711
|
+
version = "0.4.8"
|
|
3812
3712
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3813
|
-
checksum = "
|
|
3713
|
+
checksum = "c7be7413ae59d7422b735668188a5ebc252ac29765e609fed1cd23b6039d40ef"
|
|
3814
3714
|
dependencies = [
|
|
3815
3715
|
"crossterm",
|
|
3816
3716
|
"terminput",
|
|
@@ -3839,7 +3739,7 @@ checksum = "4676b37242ccbd1aabf56edb093a4827dc49086c0ffd764a5705899e0f35f8f7"
|
|
|
3839
3739
|
dependencies = [
|
|
3840
3740
|
"anyhow",
|
|
3841
3741
|
"base64 0.22.1",
|
|
3842
|
-
"bitflags 2.
|
|
3742
|
+
"bitflags 2.10.0",
|
|
3843
3743
|
"fancy-regex",
|
|
3844
3744
|
"filedescriptor",
|
|
3845
3745
|
"finl_unicode",
|
|
@@ -3884,11 +3784,11 @@ dependencies = [
|
|
|
3884
3784
|
|
|
3885
3785
|
[[package]]
|
|
3886
3786
|
name = "thiserror"
|
|
3887
|
-
version = "2.0.
|
|
3787
|
+
version = "2.0.17"
|
|
3888
3788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3889
|
-
checksum = "
|
|
3789
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3890
3790
|
dependencies = [
|
|
3891
|
-
"thiserror-impl 2.0.
|
|
3791
|
+
"thiserror-impl 2.0.17",
|
|
3892
3792
|
]
|
|
3893
3793
|
|
|
3894
3794
|
[[package]]
|
|
@@ -3899,56 +3799,55 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
3899
3799
|
dependencies = [
|
|
3900
3800
|
"proc-macro2",
|
|
3901
3801
|
"quote",
|
|
3902
|
-
"syn 2.0.
|
|
3802
|
+
"syn 2.0.114",
|
|
3903
3803
|
]
|
|
3904
3804
|
|
|
3905
3805
|
[[package]]
|
|
3906
3806
|
name = "thiserror-impl"
|
|
3907
|
-
version = "2.0.
|
|
3807
|
+
version = "2.0.17"
|
|
3908
3808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3909
|
-
checksum = "
|
|
3809
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3910
3810
|
dependencies = [
|
|
3911
3811
|
"proc-macro2",
|
|
3912
3812
|
"quote",
|
|
3913
|
-
"syn 2.0.
|
|
3813
|
+
"syn 2.0.114",
|
|
3914
3814
|
]
|
|
3915
3815
|
|
|
3916
3816
|
[[package]]
|
|
3917
3817
|
name = "thread_local"
|
|
3918
|
-
version = "1.1.
|
|
3818
|
+
version = "1.1.9"
|
|
3919
3819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3920
|
-
checksum = "
|
|
3820
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3921
3821
|
dependencies = [
|
|
3922
3822
|
"cfg-if",
|
|
3923
|
-
"once_cell",
|
|
3924
3823
|
]
|
|
3925
3824
|
|
|
3926
3825
|
[[package]]
|
|
3927
3826
|
name = "time"
|
|
3928
|
-
version = "0.3.
|
|
3827
|
+
version = "0.3.45"
|
|
3929
3828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3930
|
-
checksum = "
|
|
3829
|
+
checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
|
|
3931
3830
|
dependencies = [
|
|
3932
3831
|
"deranged",
|
|
3933
3832
|
"libc",
|
|
3934
3833
|
"num-conv",
|
|
3935
3834
|
"num_threads",
|
|
3936
3835
|
"powerfmt",
|
|
3937
|
-
"
|
|
3836
|
+
"serde_core",
|
|
3938
3837
|
"time-core",
|
|
3939
3838
|
]
|
|
3940
3839
|
|
|
3941
3840
|
[[package]]
|
|
3942
3841
|
name = "time-core"
|
|
3943
|
-
version = "0.1.
|
|
3842
|
+
version = "0.1.7"
|
|
3944
3843
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3945
|
-
checksum = "
|
|
3844
|
+
checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
|
|
3946
3845
|
|
|
3947
3846
|
[[package]]
|
|
3948
3847
|
name = "tinystr"
|
|
3949
|
-
version = "0.8.
|
|
3848
|
+
version = "0.8.2"
|
|
3950
3849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3951
|
-
checksum = "
|
|
3850
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3952
3851
|
dependencies = [
|
|
3953
3852
|
"displaydoc",
|
|
3954
3853
|
"zerovec",
|
|
@@ -3956,9 +3855,9 @@ dependencies = [
|
|
|
3956
3855
|
|
|
3957
3856
|
[[package]]
|
|
3958
3857
|
name = "tinyvec"
|
|
3959
|
-
version = "1.
|
|
3858
|
+
version = "1.10.0"
|
|
3960
3859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3961
|
-
checksum = "
|
|
3860
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3962
3861
|
dependencies = [
|
|
3963
3862
|
"tinyvec_macros",
|
|
3964
3863
|
]
|
|
@@ -3971,11 +3870,10 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
3971
3870
|
|
|
3972
3871
|
[[package]]
|
|
3973
3872
|
name = "tokio"
|
|
3974
|
-
version = "1.
|
|
3873
|
+
version = "1.49.0"
|
|
3975
3874
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3976
|
-
checksum = "
|
|
3875
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
3977
3876
|
dependencies = [
|
|
3978
|
-
"backtrace",
|
|
3979
3877
|
"bytes",
|
|
3980
3878
|
"libc",
|
|
3981
3879
|
"mio",
|
|
@@ -3984,25 +3882,25 @@ dependencies = [
|
|
|
3984
3882
|
"socket2",
|
|
3985
3883
|
"tokio-macros",
|
|
3986
3884
|
"tracing",
|
|
3987
|
-
"windows-sys 0.
|
|
3885
|
+
"windows-sys 0.61.2",
|
|
3988
3886
|
]
|
|
3989
3887
|
|
|
3990
3888
|
[[package]]
|
|
3991
3889
|
name = "tokio-macros"
|
|
3992
|
-
version = "2.
|
|
3890
|
+
version = "2.6.0"
|
|
3993
3891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3994
|
-
checksum = "
|
|
3892
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
3995
3893
|
dependencies = [
|
|
3996
3894
|
"proc-macro2",
|
|
3997
3895
|
"quote",
|
|
3998
|
-
"syn 2.0.
|
|
3896
|
+
"syn 2.0.114",
|
|
3999
3897
|
]
|
|
4000
3898
|
|
|
4001
3899
|
[[package]]
|
|
4002
3900
|
name = "tokio-rustls"
|
|
4003
|
-
version = "0.26.
|
|
3901
|
+
version = "0.26.4"
|
|
4004
3902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4005
|
-
checksum = "
|
|
3903
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
4006
3904
|
dependencies = [
|
|
4007
3905
|
"rustls",
|
|
4008
3906
|
"tokio",
|
|
@@ -4010,9 +3908,9 @@ dependencies = [
|
|
|
4010
3908
|
|
|
4011
3909
|
[[package]]
|
|
4012
3910
|
name = "tokio-stream"
|
|
4013
|
-
version = "0.1.
|
|
3911
|
+
version = "0.1.18"
|
|
4014
3912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4015
|
-
checksum = "
|
|
3913
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
4016
3914
|
dependencies = [
|
|
4017
3915
|
"futures-core",
|
|
4018
3916
|
"pin-project-lite",
|
|
@@ -4021,9 +3919,9 @@ dependencies = [
|
|
|
4021
3919
|
|
|
4022
3920
|
[[package]]
|
|
4023
3921
|
name = "tokio-util"
|
|
4024
|
-
version = "0.7.
|
|
3922
|
+
version = "0.7.18"
|
|
4025
3923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
-
checksum = "
|
|
3924
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
4027
3925
|
dependencies = [
|
|
4028
3926
|
"bytes",
|
|
4029
3927
|
"futures-core",
|
|
@@ -4034,11 +3932,11 @@ dependencies = [
|
|
|
4034
3932
|
|
|
4035
3933
|
[[package]]
|
|
4036
3934
|
name = "toml"
|
|
4037
|
-
version = "0.9.
|
|
3935
|
+
version = "0.9.11+spec-1.1.0"
|
|
4038
3936
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4039
|
-
checksum = "
|
|
3937
|
+
checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
|
|
4040
3938
|
dependencies = [
|
|
4041
|
-
"indexmap
|
|
3939
|
+
"indexmap",
|
|
4042
3940
|
"serde_core",
|
|
4043
3941
|
"serde_spanned",
|
|
4044
3942
|
"toml_datetime",
|
|
@@ -4049,35 +3947,34 @@ dependencies = [
|
|
|
4049
3947
|
|
|
4050
3948
|
[[package]]
|
|
4051
3949
|
name = "toml_datetime"
|
|
4052
|
-
version = "0.7.
|
|
3950
|
+
version = "0.7.5+spec-1.1.0"
|
|
4053
3951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4054
|
-
checksum = "
|
|
3952
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
4055
3953
|
dependencies = [
|
|
4056
3954
|
"serde_core",
|
|
4057
3955
|
]
|
|
4058
3956
|
|
|
4059
3957
|
[[package]]
|
|
4060
3958
|
name = "toml_parser"
|
|
4061
|
-
version = "1.0.
|
|
3959
|
+
version = "1.0.6+spec-1.1.0"
|
|
4062
3960
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4063
|
-
checksum = "
|
|
3961
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
4064
3962
|
dependencies = [
|
|
4065
3963
|
"winnow",
|
|
4066
3964
|
]
|
|
4067
3965
|
|
|
4068
3966
|
[[package]]
|
|
4069
3967
|
name = "toml_writer"
|
|
4070
|
-
version = "1.0.
|
|
3968
|
+
version = "1.0.6+spec-1.1.0"
|
|
4071
3969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4072
|
-
checksum = "
|
|
3970
|
+
checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
4073
3971
|
|
|
4074
3972
|
[[package]]
|
|
4075
3973
|
name = "tonic"
|
|
4076
|
-
version = "0.
|
|
3974
|
+
version = "0.14.2"
|
|
4077
3975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4078
|
-
checksum = "
|
|
3976
|
+
checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203"
|
|
4079
3977
|
dependencies = [
|
|
4080
|
-
"async-stream",
|
|
4081
3978
|
"async-trait",
|
|
4082
3979
|
"axum",
|
|
4083
3980
|
"base64 0.22.1",
|
|
@@ -4091,65 +3988,60 @@ dependencies = [
|
|
|
4091
3988
|
"hyper-util",
|
|
4092
3989
|
"percent-encoding",
|
|
4093
3990
|
"pin-project",
|
|
4094
|
-
"prost",
|
|
4095
3991
|
"socket2",
|
|
3992
|
+
"sync_wrapper",
|
|
4096
3993
|
"tokio",
|
|
4097
3994
|
"tokio-stream",
|
|
4098
|
-
"tower
|
|
3995
|
+
"tower",
|
|
4099
3996
|
"tower-layer",
|
|
4100
3997
|
"tower-service",
|
|
4101
3998
|
"tracing",
|
|
4102
3999
|
]
|
|
4103
4000
|
|
|
4104
4001
|
[[package]]
|
|
4105
|
-
name = "
|
|
4106
|
-
version = "0.
|
|
4002
|
+
name = "tonic-prost"
|
|
4003
|
+
version = "0.14.2"
|
|
4107
4004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4108
|
-
checksum = "
|
|
4005
|
+
checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67"
|
|
4109
4006
|
dependencies = [
|
|
4110
|
-
"
|
|
4111
|
-
"
|
|
4112
|
-
"
|
|
4113
|
-
"pin-project",
|
|
4114
|
-
"pin-project-lite",
|
|
4115
|
-
"rand 0.8.5",
|
|
4116
|
-
"slab",
|
|
4117
|
-
"tokio",
|
|
4118
|
-
"tokio-util",
|
|
4119
|
-
"tower-layer",
|
|
4120
|
-
"tower-service",
|
|
4121
|
-
"tracing",
|
|
4007
|
+
"bytes",
|
|
4008
|
+
"prost",
|
|
4009
|
+
"tonic",
|
|
4122
4010
|
]
|
|
4123
4011
|
|
|
4124
4012
|
[[package]]
|
|
4125
4013
|
name = "tower"
|
|
4126
|
-
version = "0.5.
|
|
4014
|
+
version = "0.5.3"
|
|
4127
4015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4128
|
-
checksum = "
|
|
4016
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
4129
4017
|
dependencies = [
|
|
4130
4018
|
"futures-core",
|
|
4131
4019
|
"futures-util",
|
|
4020
|
+
"indexmap",
|
|
4132
4021
|
"pin-project-lite",
|
|
4022
|
+
"slab",
|
|
4133
4023
|
"sync_wrapper",
|
|
4134
4024
|
"tokio",
|
|
4025
|
+
"tokio-util",
|
|
4135
4026
|
"tower-layer",
|
|
4136
4027
|
"tower-service",
|
|
4028
|
+
"tracing",
|
|
4137
4029
|
]
|
|
4138
4030
|
|
|
4139
4031
|
[[package]]
|
|
4140
4032
|
name = "tower-http"
|
|
4141
|
-
version = "0.6.
|
|
4033
|
+
version = "0.6.8"
|
|
4142
4034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
-
checksum = "
|
|
4035
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
4144
4036
|
dependencies = [
|
|
4145
|
-
"bitflags 2.
|
|
4037
|
+
"bitflags 2.10.0",
|
|
4146
4038
|
"bytes",
|
|
4147
4039
|
"futures-util",
|
|
4148
4040
|
"http",
|
|
4149
4041
|
"http-body",
|
|
4150
4042
|
"iri-string",
|
|
4151
4043
|
"pin-project-lite",
|
|
4152
|
-
"tower
|
|
4044
|
+
"tower",
|
|
4153
4045
|
"tower-layer",
|
|
4154
4046
|
"tower-service",
|
|
4155
4047
|
]
|
|
@@ -4168,9 +4060,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
4168
4060
|
|
|
4169
4061
|
[[package]]
|
|
4170
4062
|
name = "tracing"
|
|
4171
|
-
version = "0.1.
|
|
4063
|
+
version = "0.1.44"
|
|
4172
4064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4173
|
-
checksum = "
|
|
4065
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
4174
4066
|
dependencies = [
|
|
4175
4067
|
"pin-project-lite",
|
|
4176
4068
|
"tracing-attributes",
|
|
@@ -4179,20 +4071,20 @@ dependencies = [
|
|
|
4179
4071
|
|
|
4180
4072
|
[[package]]
|
|
4181
4073
|
name = "tracing-attributes"
|
|
4182
|
-
version = "0.1.
|
|
4074
|
+
version = "0.1.31"
|
|
4183
4075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4184
|
-
checksum = "
|
|
4076
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
4185
4077
|
dependencies = [
|
|
4186
4078
|
"proc-macro2",
|
|
4187
4079
|
"quote",
|
|
4188
|
-
"syn 2.0.
|
|
4080
|
+
"syn 2.0.114",
|
|
4189
4081
|
]
|
|
4190
4082
|
|
|
4191
4083
|
[[package]]
|
|
4192
4084
|
name = "tracing-core"
|
|
4193
|
-
version = "0.1.
|
|
4085
|
+
version = "0.1.36"
|
|
4194
4086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4195
|
-
checksum = "
|
|
4087
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
4196
4088
|
dependencies = [
|
|
4197
4089
|
"once_cell",
|
|
4198
4090
|
"valuable",
|
|
@@ -4200,9 +4092,9 @@ dependencies = [
|
|
|
4200
4092
|
|
|
4201
4093
|
[[package]]
|
|
4202
4094
|
name = "tracing-subscriber"
|
|
4203
|
-
version = "0.3.
|
|
4095
|
+
version = "0.3.22"
|
|
4204
4096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4205
|
-
checksum = "
|
|
4097
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
4206
4098
|
dependencies = [
|
|
4207
4099
|
"nu-ansi-term",
|
|
4208
4100
|
"sharded-slab",
|
|
@@ -4212,9 +4104,9 @@ dependencies = [
|
|
|
4212
4104
|
|
|
4213
4105
|
[[package]]
|
|
4214
4106
|
name = "tree-sitter"
|
|
4215
|
-
version = "0.
|
|
4107
|
+
version = "0.26.3"
|
|
4216
4108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4217
|
-
checksum = "
|
|
4109
|
+
checksum = "974d205cc395652cfa8b37daa053fe56eebd429acf8dc055503fee648dae981e"
|
|
4218
4110
|
dependencies = [
|
|
4219
4111
|
"cc",
|
|
4220
4112
|
"regex",
|
|
@@ -4226,13 +4118,13 @@ dependencies = [
|
|
|
4226
4118
|
|
|
4227
4119
|
[[package]]
|
|
4228
4120
|
name = "tree-sitter-highlight"
|
|
4229
|
-
version = "0.
|
|
4121
|
+
version = "0.26.3"
|
|
4230
4122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4231
|
-
checksum = "
|
|
4123
|
+
checksum = "bb0636662a03005d9289649e0b4a89ff37b75df5033e8d4a16398740ae6496d2"
|
|
4232
4124
|
dependencies = [
|
|
4233
4125
|
"regex",
|
|
4234
4126
|
"streaming-iterator",
|
|
4235
|
-
"thiserror 2.0.
|
|
4127
|
+
"thiserror 2.0.17",
|
|
4236
4128
|
"tree-sitter",
|
|
4237
4129
|
]
|
|
4238
4130
|
|
|
@@ -4248,9 +4140,9 @@ dependencies = [
|
|
|
4248
4140
|
|
|
4249
4141
|
[[package]]
|
|
4250
4142
|
name = "tree-sitter-language"
|
|
4251
|
-
version = "0.1.
|
|
4143
|
+
version = "0.1.6"
|
|
4252
4144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4253
|
-
checksum = "
|
|
4145
|
+
checksum = "4ae62f7eae5eb549c71b76658648b72cc6111f2d87d24a1e31fa907f4943e3ce"
|
|
4254
4146
|
|
|
4255
4147
|
[[package]]
|
|
4256
4148
|
name = "try-lock"
|
|
@@ -4266,9 +4158,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
4266
4158
|
|
|
4267
4159
|
[[package]]
|
|
4268
4160
|
name = "typenum"
|
|
4269
|
-
version = "1.
|
|
4161
|
+
version = "1.19.0"
|
|
4270
4162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4271
|
-
checksum = "
|
|
4163
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
4272
4164
|
|
|
4273
4165
|
[[package]]
|
|
4274
4166
|
name = "ucd-trie"
|
|
@@ -4284,15 +4176,15 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
|
4284
4176
|
|
|
4285
4177
|
[[package]]
|
|
4286
4178
|
name = "unicase"
|
|
4287
|
-
version = "2.
|
|
4179
|
+
version = "2.9.0"
|
|
4288
4180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
-
checksum = "
|
|
4181
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
4290
4182
|
|
|
4291
4183
|
[[package]]
|
|
4292
4184
|
name = "unicode-ident"
|
|
4293
|
-
version = "1.0.
|
|
4185
|
+
version = "1.0.22"
|
|
4294
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4295
|
-
checksum = "
|
|
4187
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
4296
4188
|
|
|
4297
4189
|
[[package]]
|
|
4298
4190
|
name = "unicode-segmentation"
|
|
@@ -4302,26 +4194,20 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
4302
4194
|
|
|
4303
4195
|
[[package]]
|
|
4304
4196
|
name = "unicode-truncate"
|
|
4305
|
-
version = "2.0.
|
|
4197
|
+
version = "2.0.1"
|
|
4306
4198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4307
|
-
checksum = "
|
|
4199
|
+
checksum = "16b380a1238663e5f8a691f9039c73e1cdae598a30e9855f541d29b08b53e9a5"
|
|
4308
4200
|
dependencies = [
|
|
4309
|
-
"itertools
|
|
4201
|
+
"itertools",
|
|
4310
4202
|
"unicode-segmentation",
|
|
4311
|
-
"unicode-width
|
|
4203
|
+
"unicode-width",
|
|
4312
4204
|
]
|
|
4313
4205
|
|
|
4314
4206
|
[[package]]
|
|
4315
4207
|
name = "unicode-width"
|
|
4316
|
-
version = "0.
|
|
4317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4318
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
4319
|
-
|
|
4320
|
-
[[package]]
|
|
4321
|
-
name = "unicode-width"
|
|
4322
|
-
version = "0.2.0"
|
|
4208
|
+
version = "0.2.2"
|
|
4323
4209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4324
|
-
checksum = "
|
|
4210
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
4325
4211
|
|
|
4326
4212
|
[[package]]
|
|
4327
4213
|
name = "unicode-xid"
|
|
@@ -4349,14 +4235,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
4349
4235
|
|
|
4350
4236
|
[[package]]
|
|
4351
4237
|
name = "url"
|
|
4352
|
-
version = "2.5.
|
|
4238
|
+
version = "2.5.8"
|
|
4353
4239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4354
|
-
checksum = "
|
|
4240
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4355
4241
|
dependencies = [
|
|
4356
4242
|
"form_urlencoded",
|
|
4357
4243
|
"idna",
|
|
4358
4244
|
"percent-encoding",
|
|
4359
4245
|
"serde",
|
|
4246
|
+
"serde_derive",
|
|
4360
4247
|
]
|
|
4361
4248
|
|
|
4362
4249
|
[[package]]
|
|
@@ -4379,13 +4266,15 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
4379
4266
|
|
|
4380
4267
|
[[package]]
|
|
4381
4268
|
name = "uuid"
|
|
4382
|
-
version = "1.
|
|
4269
|
+
version = "1.19.0"
|
|
4383
4270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4384
|
-
checksum = "
|
|
4271
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
4385
4272
|
dependencies = [
|
|
4386
4273
|
"atomic",
|
|
4387
|
-
"getrandom 0.3.
|
|
4388
|
-
"
|
|
4274
|
+
"getrandom 0.3.4",
|
|
4275
|
+
"js-sys",
|
|
4276
|
+
"serde_core",
|
|
4277
|
+
"wasm-bindgen",
|
|
4389
4278
|
]
|
|
4390
4279
|
|
|
4391
4280
|
[[package]]
|
|
@@ -4445,52 +4334,40 @@ dependencies = [
|
|
|
4445
4334
|
|
|
4446
4335
|
[[package]]
|
|
4447
4336
|
name = "wasi"
|
|
4448
|
-
version = "0.11.
|
|
4337
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
4449
4338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4450
|
-
checksum = "
|
|
4339
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4451
4340
|
|
|
4452
4341
|
[[package]]
|
|
4453
|
-
name = "
|
|
4454
|
-
version = "0.
|
|
4342
|
+
name = "wasip2"
|
|
4343
|
+
version = "1.0.2+wasi-0.2.9"
|
|
4455
4344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4456
|
-
checksum = "
|
|
4345
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
4457
4346
|
dependencies = [
|
|
4458
|
-
"wit-bindgen
|
|
4347
|
+
"wit-bindgen",
|
|
4459
4348
|
]
|
|
4460
4349
|
|
|
4461
4350
|
[[package]]
|
|
4462
4351
|
name = "wasm-bindgen"
|
|
4463
|
-
version = "0.2.
|
|
4352
|
+
version = "0.2.108"
|
|
4464
4353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4465
|
-
checksum = "
|
|
4354
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
4466
4355
|
dependencies = [
|
|
4467
4356
|
"cfg-if",
|
|
4468
4357
|
"once_cell",
|
|
4469
4358
|
"rustversion",
|
|
4470
4359
|
"wasm-bindgen-macro",
|
|
4471
|
-
]
|
|
4472
|
-
|
|
4473
|
-
[[package]]
|
|
4474
|
-
name = "wasm-bindgen-backend"
|
|
4475
|
-
version = "0.2.100"
|
|
4476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4477
|
-
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
4478
|
-
dependencies = [
|
|
4479
|
-
"bumpalo",
|
|
4480
|
-
"log",
|
|
4481
|
-
"proc-macro2",
|
|
4482
|
-
"quote",
|
|
4483
|
-
"syn 2.0.101",
|
|
4484
4360
|
"wasm-bindgen-shared",
|
|
4485
4361
|
]
|
|
4486
4362
|
|
|
4487
4363
|
[[package]]
|
|
4488
4364
|
name = "wasm-bindgen-futures"
|
|
4489
|
-
version = "0.4.
|
|
4365
|
+
version = "0.4.58"
|
|
4490
4366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4491
|
-
checksum = "
|
|
4367
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
4492
4368
|
dependencies = [
|
|
4493
4369
|
"cfg-if",
|
|
4370
|
+
"futures-util",
|
|
4494
4371
|
"js-sys",
|
|
4495
4372
|
"once_cell",
|
|
4496
4373
|
"wasm-bindgen",
|
|
@@ -4499,9 +4376,9 @@ dependencies = [
|
|
|
4499
4376
|
|
|
4500
4377
|
[[package]]
|
|
4501
4378
|
name = "wasm-bindgen-macro"
|
|
4502
|
-
version = "0.2.
|
|
4379
|
+
version = "0.2.108"
|
|
4503
4380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4504
|
-
checksum = "
|
|
4381
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
4505
4382
|
dependencies = [
|
|
4506
4383
|
"quote",
|
|
4507
4384
|
"wasm-bindgen-macro-support",
|
|
@@ -4509,22 +4386,22 @@ dependencies = [
|
|
|
4509
4386
|
|
|
4510
4387
|
[[package]]
|
|
4511
4388
|
name = "wasm-bindgen-macro-support"
|
|
4512
|
-
version = "0.2.
|
|
4389
|
+
version = "0.2.108"
|
|
4513
4390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4514
|
-
checksum = "
|
|
4391
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
4515
4392
|
dependencies = [
|
|
4393
|
+
"bumpalo",
|
|
4516
4394
|
"proc-macro2",
|
|
4517
4395
|
"quote",
|
|
4518
|
-
"syn 2.0.
|
|
4519
|
-
"wasm-bindgen-backend",
|
|
4396
|
+
"syn 2.0.114",
|
|
4520
4397
|
"wasm-bindgen-shared",
|
|
4521
4398
|
]
|
|
4522
4399
|
|
|
4523
4400
|
[[package]]
|
|
4524
4401
|
name = "wasm-bindgen-shared"
|
|
4525
|
-
version = "0.2.
|
|
4402
|
+
version = "0.2.108"
|
|
4526
4403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4527
|
-
checksum = "
|
|
4404
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
4528
4405
|
dependencies = [
|
|
4529
4406
|
"unicode-ident",
|
|
4530
4407
|
]
|
|
@@ -4544,9 +4421,9 @@ dependencies = [
|
|
|
4544
4421
|
|
|
4545
4422
|
[[package]]
|
|
4546
4423
|
name = "web-sys"
|
|
4547
|
-
version = "0.3.
|
|
4424
|
+
version = "0.3.85"
|
|
4548
4425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4549
|
-
checksum = "
|
|
4426
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
4550
4427
|
dependencies = [
|
|
4551
4428
|
"js-sys",
|
|
4552
4429
|
"wasm-bindgen",
|
|
@@ -4563,19 +4440,10 @@ dependencies = [
|
|
|
4563
4440
|
]
|
|
4564
4441
|
|
|
4565
4442
|
[[package]]
|
|
4566
|
-
name = "webpki-
|
|
4567
|
-
version = "0.
|
|
4568
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4569
|
-
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
4570
|
-
dependencies = [
|
|
4571
|
-
"webpki-roots 1.0.0",
|
|
4572
|
-
]
|
|
4573
|
-
|
|
4574
|
-
[[package]]
|
|
4575
|
-
name = "webpki-roots"
|
|
4576
|
-
version = "1.0.0"
|
|
4443
|
+
name = "webpki-root-certs"
|
|
4444
|
+
version = "1.0.5"
|
|
4577
4445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4578
|
-
checksum = "
|
|
4446
|
+
checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
|
|
4579
4447
|
dependencies = [
|
|
4580
4448
|
"rustls-pki-types",
|
|
4581
4449
|
]
|
|
@@ -4596,7 +4464,7 @@ version = "0.1.1"
|
|
|
4596
4464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4597
4465
|
checksum = "692daff6d93d94e29e4114544ef6d5c942a7ed998b37abdc19b17136ea428eb7"
|
|
4598
4466
|
dependencies = [
|
|
4599
|
-
"getrandom 0.3.
|
|
4467
|
+
"getrandom 0.3.4",
|
|
4600
4468
|
"mac_address",
|
|
4601
4469
|
"sha2",
|
|
4602
4470
|
"thiserror 1.0.69",
|
|
@@ -4670,11 +4538,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
4670
4538
|
|
|
4671
4539
|
[[package]]
|
|
4672
4540
|
name = "winapi-util"
|
|
4673
|
-
version = "0.1.
|
|
4541
|
+
version = "0.1.11"
|
|
4674
4542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4675
|
-
checksum = "
|
|
4543
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4676
4544
|
dependencies = [
|
|
4677
|
-
"windows-sys 0.
|
|
4545
|
+
"windows-sys 0.61.2",
|
|
4678
4546
|
]
|
|
4679
4547
|
|
|
4680
4548
|
[[package]]
|
|
@@ -4685,9 +4553,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
4685
4553
|
|
|
4686
4554
|
[[package]]
|
|
4687
4555
|
name = "windows-core"
|
|
4688
|
-
version = "0.
|
|
4556
|
+
version = "0.62.2"
|
|
4689
4557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4690
|
-
checksum = "
|
|
4558
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4691
4559
|
dependencies = [
|
|
4692
4560
|
"windows-implement",
|
|
4693
4561
|
"windows-interface",
|
|
@@ -4698,57 +4566,57 @@ dependencies = [
|
|
|
4698
4566
|
|
|
4699
4567
|
[[package]]
|
|
4700
4568
|
name = "windows-implement"
|
|
4701
|
-
version = "0.60.
|
|
4569
|
+
version = "0.60.2"
|
|
4702
4570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4703
|
-
checksum = "
|
|
4571
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4704
4572
|
dependencies = [
|
|
4705
4573
|
"proc-macro2",
|
|
4706
4574
|
"quote",
|
|
4707
|
-
"syn 2.0.
|
|
4575
|
+
"syn 2.0.114",
|
|
4708
4576
|
]
|
|
4709
4577
|
|
|
4710
4578
|
[[package]]
|
|
4711
4579
|
name = "windows-interface"
|
|
4712
|
-
version = "0.59.
|
|
4580
|
+
version = "0.59.3"
|
|
4713
4581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4714
|
-
checksum = "
|
|
4582
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4715
4583
|
dependencies = [
|
|
4716
4584
|
"proc-macro2",
|
|
4717
4585
|
"quote",
|
|
4718
|
-
"syn 2.0.
|
|
4586
|
+
"syn 2.0.114",
|
|
4719
4587
|
]
|
|
4720
4588
|
|
|
4721
4589
|
[[package]]
|
|
4722
4590
|
name = "windows-link"
|
|
4723
|
-
version = "0.
|
|
4591
|
+
version = "0.2.1"
|
|
4724
4592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4725
|
-
checksum = "
|
|
4593
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4726
4594
|
|
|
4727
4595
|
[[package]]
|
|
4728
4596
|
name = "windows-result"
|
|
4729
|
-
version = "0.
|
|
4597
|
+
version = "0.4.1"
|
|
4730
4598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4731
|
-
checksum = "
|
|
4599
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4732
4600
|
dependencies = [
|
|
4733
4601
|
"windows-link",
|
|
4734
4602
|
]
|
|
4735
4603
|
|
|
4736
4604
|
[[package]]
|
|
4737
4605
|
name = "windows-strings"
|
|
4738
|
-
version = "0.
|
|
4606
|
+
version = "0.5.1"
|
|
4739
4607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4740
|
-
checksum = "
|
|
4608
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4741
4609
|
dependencies = [
|
|
4742
4610
|
"windows-link",
|
|
4743
4611
|
]
|
|
4744
4612
|
|
|
4745
4613
|
[[package]]
|
|
4746
4614
|
name = "windows-sys"
|
|
4747
|
-
version = "0.
|
|
4615
|
+
version = "0.45.0"
|
|
4748
4616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4749
|
-
checksum = "
|
|
4617
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4750
4618
|
dependencies = [
|
|
4751
|
-
"windows-targets 0.
|
|
4619
|
+
"windows-targets 0.42.2",
|
|
4752
4620
|
]
|
|
4753
4621
|
|
|
4754
4622
|
[[package]]
|
|
@@ -4762,26 +4630,35 @@ dependencies = [
|
|
|
4762
4630
|
|
|
4763
4631
|
[[package]]
|
|
4764
4632
|
name = "windows-sys"
|
|
4765
|
-
version = "0.
|
|
4633
|
+
version = "0.60.2"
|
|
4766
4634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4767
|
-
checksum = "
|
|
4635
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4768
4636
|
dependencies = [
|
|
4769
|
-
"windows-targets 0.
|
|
4637
|
+
"windows-targets 0.53.5",
|
|
4638
|
+
]
|
|
4639
|
+
|
|
4640
|
+
[[package]]
|
|
4641
|
+
name = "windows-sys"
|
|
4642
|
+
version = "0.61.2"
|
|
4643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4644
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4645
|
+
dependencies = [
|
|
4646
|
+
"windows-link",
|
|
4770
4647
|
]
|
|
4771
4648
|
|
|
4772
4649
|
[[package]]
|
|
4773
4650
|
name = "windows-targets"
|
|
4774
|
-
version = "0.
|
|
4651
|
+
version = "0.42.2"
|
|
4775
4652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4776
|
-
checksum = "
|
|
4653
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4777
4654
|
dependencies = [
|
|
4778
|
-
"windows_aarch64_gnullvm 0.
|
|
4779
|
-
"windows_aarch64_msvc 0.
|
|
4780
|
-
"windows_i686_gnu 0.
|
|
4781
|
-
"windows_i686_msvc 0.
|
|
4782
|
-
"windows_x86_64_gnu 0.
|
|
4783
|
-
"windows_x86_64_gnullvm 0.
|
|
4784
|
-
"windows_x86_64_msvc 0.
|
|
4655
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4656
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4657
|
+
"windows_i686_gnu 0.42.2",
|
|
4658
|
+
"windows_i686_msvc 0.42.2",
|
|
4659
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4660
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4661
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4785
4662
|
]
|
|
4786
4663
|
|
|
4787
4664
|
[[package]]
|
|
@@ -4793,18 +4670,35 @@ dependencies = [
|
|
|
4793
4670
|
"windows_aarch64_gnullvm 0.52.6",
|
|
4794
4671
|
"windows_aarch64_msvc 0.52.6",
|
|
4795
4672
|
"windows_i686_gnu 0.52.6",
|
|
4796
|
-
"windows_i686_gnullvm",
|
|
4673
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4797
4674
|
"windows_i686_msvc 0.52.6",
|
|
4798
4675
|
"windows_x86_64_gnu 0.52.6",
|
|
4799
4676
|
"windows_x86_64_gnullvm 0.52.6",
|
|
4800
4677
|
"windows_x86_64_msvc 0.52.6",
|
|
4801
4678
|
]
|
|
4802
4679
|
|
|
4680
|
+
[[package]]
|
|
4681
|
+
name = "windows-targets"
|
|
4682
|
+
version = "0.53.5"
|
|
4683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4684
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4685
|
+
dependencies = [
|
|
4686
|
+
"windows-link",
|
|
4687
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4688
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4689
|
+
"windows_i686_gnu 0.53.1",
|
|
4690
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4691
|
+
"windows_i686_msvc 0.53.1",
|
|
4692
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4693
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4694
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4695
|
+
]
|
|
4696
|
+
|
|
4803
4697
|
[[package]]
|
|
4804
4698
|
name = "windows_aarch64_gnullvm"
|
|
4805
|
-
version = "0.
|
|
4699
|
+
version = "0.42.2"
|
|
4806
4700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4807
|
-
checksum = "
|
|
4701
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4808
4702
|
|
|
4809
4703
|
[[package]]
|
|
4810
4704
|
name = "windows_aarch64_gnullvm"
|
|
@@ -4812,11 +4706,17 @@ version = "0.52.6"
|
|
|
4812
4706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4813
4707
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4814
4708
|
|
|
4709
|
+
[[package]]
|
|
4710
|
+
name = "windows_aarch64_gnullvm"
|
|
4711
|
+
version = "0.53.1"
|
|
4712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4713
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4714
|
+
|
|
4815
4715
|
[[package]]
|
|
4816
4716
|
name = "windows_aarch64_msvc"
|
|
4817
|
-
version = "0.
|
|
4717
|
+
version = "0.42.2"
|
|
4818
4718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4819
|
-
checksum = "
|
|
4719
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4820
4720
|
|
|
4821
4721
|
[[package]]
|
|
4822
4722
|
name = "windows_aarch64_msvc"
|
|
@@ -4824,11 +4724,17 @@ version = "0.52.6"
|
|
|
4824
4724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4825
4725
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4826
4726
|
|
|
4727
|
+
[[package]]
|
|
4728
|
+
name = "windows_aarch64_msvc"
|
|
4729
|
+
version = "0.53.1"
|
|
4730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4731
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4732
|
+
|
|
4827
4733
|
[[package]]
|
|
4828
4734
|
name = "windows_i686_gnu"
|
|
4829
|
-
version = "0.
|
|
4735
|
+
version = "0.42.2"
|
|
4830
4736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4831
|
-
checksum = "
|
|
4737
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4832
4738
|
|
|
4833
4739
|
[[package]]
|
|
4834
4740
|
name = "windows_i686_gnu"
|
|
@@ -4836,17 +4742,29 @@ version = "0.52.6"
|
|
|
4836
4742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4837
4743
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4838
4744
|
|
|
4745
|
+
[[package]]
|
|
4746
|
+
name = "windows_i686_gnu"
|
|
4747
|
+
version = "0.53.1"
|
|
4748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4749
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4750
|
+
|
|
4839
4751
|
[[package]]
|
|
4840
4752
|
name = "windows_i686_gnullvm"
|
|
4841
4753
|
version = "0.52.6"
|
|
4842
4754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4843
4755
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4844
4756
|
|
|
4757
|
+
[[package]]
|
|
4758
|
+
name = "windows_i686_gnullvm"
|
|
4759
|
+
version = "0.53.1"
|
|
4760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4761
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4762
|
+
|
|
4845
4763
|
[[package]]
|
|
4846
4764
|
name = "windows_i686_msvc"
|
|
4847
|
-
version = "0.
|
|
4765
|
+
version = "0.42.2"
|
|
4848
4766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4849
|
-
checksum = "
|
|
4767
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4850
4768
|
|
|
4851
4769
|
[[package]]
|
|
4852
4770
|
name = "windows_i686_msvc"
|
|
@@ -4854,11 +4772,17 @@ version = "0.52.6"
|
|
|
4854
4772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4855
4773
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4856
4774
|
|
|
4775
|
+
[[package]]
|
|
4776
|
+
name = "windows_i686_msvc"
|
|
4777
|
+
version = "0.53.1"
|
|
4778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4779
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4780
|
+
|
|
4857
4781
|
[[package]]
|
|
4858
4782
|
name = "windows_x86_64_gnu"
|
|
4859
|
-
version = "0.
|
|
4783
|
+
version = "0.42.2"
|
|
4860
4784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4861
|
-
checksum = "
|
|
4785
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4862
4786
|
|
|
4863
4787
|
[[package]]
|
|
4864
4788
|
name = "windows_x86_64_gnu"
|
|
@@ -4866,11 +4790,17 @@ version = "0.52.6"
|
|
|
4866
4790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4867
4791
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4868
4792
|
|
|
4793
|
+
[[package]]
|
|
4794
|
+
name = "windows_x86_64_gnu"
|
|
4795
|
+
version = "0.53.1"
|
|
4796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4797
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4798
|
+
|
|
4869
4799
|
[[package]]
|
|
4870
4800
|
name = "windows_x86_64_gnullvm"
|
|
4871
|
-
version = "0.
|
|
4801
|
+
version = "0.42.2"
|
|
4872
4802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4873
|
-
checksum = "
|
|
4803
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4874
4804
|
|
|
4875
4805
|
[[package]]
|
|
4876
4806
|
name = "windows_x86_64_gnullvm"
|
|
@@ -4878,11 +4808,17 @@ version = "0.52.6"
|
|
|
4878
4808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4879
4809
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4880
4810
|
|
|
4811
|
+
[[package]]
|
|
4812
|
+
name = "windows_x86_64_gnullvm"
|
|
4813
|
+
version = "0.53.1"
|
|
4814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4815
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4816
|
+
|
|
4881
4817
|
[[package]]
|
|
4882
4818
|
name = "windows_x86_64_msvc"
|
|
4883
|
-
version = "0.
|
|
4819
|
+
version = "0.42.2"
|
|
4884
4820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4885
|
-
checksum = "
|
|
4821
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4886
4822
|
|
|
4887
4823
|
[[package]]
|
|
4888
4824
|
name = "windows_x86_64_msvc"
|
|
@@ -4890,6 +4826,12 @@ version = "0.52.6"
|
|
|
4890
4826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4891
4827
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4892
4828
|
|
|
4829
|
+
[[package]]
|
|
4830
|
+
name = "windows_x86_64_msvc"
|
|
4831
|
+
version = "0.53.1"
|
|
4832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4833
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4834
|
+
|
|
4893
4835
|
[[package]]
|
|
4894
4836
|
name = "winnow"
|
|
4895
4837
|
version = "0.7.14"
|
|
@@ -4901,12 +4843,11 @@ dependencies = [
|
|
|
4901
4843
|
|
|
4902
4844
|
[[package]]
|
|
4903
4845
|
name = "wiremock"
|
|
4904
|
-
version = "0.6.
|
|
4846
|
+
version = "0.6.5"
|
|
4905
4847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4906
|
-
checksum = "
|
|
4848
|
+
checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
|
|
4907
4849
|
dependencies = [
|
|
4908
4850
|
"assert-json-diff",
|
|
4909
|
-
"async-trait",
|
|
4910
4851
|
"base64 0.22.1",
|
|
4911
4852
|
"deadpool",
|
|
4912
4853
|
"futures",
|
|
@@ -4924,19 +4865,16 @@ dependencies = [
|
|
|
4924
4865
|
]
|
|
4925
4866
|
|
|
4926
4867
|
[[package]]
|
|
4927
|
-
name = "wit-bindgen
|
|
4928
|
-
version = "0.
|
|
4868
|
+
name = "wit-bindgen"
|
|
4869
|
+
version = "0.51.0"
|
|
4929
4870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4930
|
-
checksum = "
|
|
4931
|
-
dependencies = [
|
|
4932
|
-
"bitflags 2.9.1",
|
|
4933
|
-
]
|
|
4871
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
4934
4872
|
|
|
4935
4873
|
[[package]]
|
|
4936
4874
|
name = "writeable"
|
|
4937
|
-
version = "0.6.
|
|
4875
|
+
version = "0.6.2"
|
|
4938
4876
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4939
|
-
checksum = "
|
|
4877
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4940
4878
|
|
|
4941
4879
|
[[package]]
|
|
4942
4880
|
name = "yansi"
|
|
@@ -4946,11 +4884,10 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4946
4884
|
|
|
4947
4885
|
[[package]]
|
|
4948
4886
|
name = "yoke"
|
|
4949
|
-
version = "0.8.
|
|
4887
|
+
version = "0.8.1"
|
|
4950
4888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4951
|
-
checksum = "
|
|
4889
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4952
4890
|
dependencies = [
|
|
4953
|
-
"serde",
|
|
4954
4891
|
"stable_deref_trait",
|
|
4955
4892
|
"yoke-derive",
|
|
4956
4893
|
"zerofrom",
|
|
@@ -4958,34 +4895,34 @@ dependencies = [
|
|
|
4958
4895
|
|
|
4959
4896
|
[[package]]
|
|
4960
4897
|
name = "yoke-derive"
|
|
4961
|
-
version = "0.8.
|
|
4898
|
+
version = "0.8.1"
|
|
4962
4899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4963
|
-
checksum = "
|
|
4900
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4964
4901
|
dependencies = [
|
|
4965
4902
|
"proc-macro2",
|
|
4966
4903
|
"quote",
|
|
4967
|
-
"syn 2.0.
|
|
4904
|
+
"syn 2.0.114",
|
|
4968
4905
|
"synstructure",
|
|
4969
4906
|
]
|
|
4970
4907
|
|
|
4971
4908
|
[[package]]
|
|
4972
4909
|
name = "zerocopy"
|
|
4973
|
-
version = "0.8.
|
|
4910
|
+
version = "0.8.33"
|
|
4974
4911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4975
|
-
checksum = "
|
|
4912
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
4976
4913
|
dependencies = [
|
|
4977
4914
|
"zerocopy-derive",
|
|
4978
4915
|
]
|
|
4979
4916
|
|
|
4980
4917
|
[[package]]
|
|
4981
4918
|
name = "zerocopy-derive"
|
|
4982
|
-
version = "0.8.
|
|
4919
|
+
version = "0.8.33"
|
|
4983
4920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4984
|
-
checksum = "
|
|
4921
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
4985
4922
|
dependencies = [
|
|
4986
4923
|
"proc-macro2",
|
|
4987
4924
|
"quote",
|
|
4988
|
-
"syn 2.0.
|
|
4925
|
+
"syn 2.0.114",
|
|
4989
4926
|
]
|
|
4990
4927
|
|
|
4991
4928
|
[[package]]
|
|
@@ -5005,21 +4942,21 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
5005
4942
|
dependencies = [
|
|
5006
4943
|
"proc-macro2",
|
|
5007
4944
|
"quote",
|
|
5008
|
-
"syn 2.0.
|
|
4945
|
+
"syn 2.0.114",
|
|
5009
4946
|
"synstructure",
|
|
5010
4947
|
]
|
|
5011
4948
|
|
|
5012
4949
|
[[package]]
|
|
5013
4950
|
name = "zeroize"
|
|
5014
|
-
version = "1.8.
|
|
4951
|
+
version = "1.8.2"
|
|
5015
4952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5016
|
-
checksum = "
|
|
4953
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
5017
4954
|
|
|
5018
4955
|
[[package]]
|
|
5019
4956
|
name = "zerotrie"
|
|
5020
|
-
version = "0.2.
|
|
4957
|
+
version = "0.2.3"
|
|
5021
4958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5022
|
-
checksum = "
|
|
4959
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
5023
4960
|
dependencies = [
|
|
5024
4961
|
"displaydoc",
|
|
5025
4962
|
"yoke",
|
|
@@ -5028,9 +4965,9 @@ dependencies = [
|
|
|
5028
4965
|
|
|
5029
4966
|
[[package]]
|
|
5030
4967
|
name = "zerovec"
|
|
5031
|
-
version = "0.11.
|
|
4968
|
+
version = "0.11.5"
|
|
5032
4969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5033
|
-
checksum = "
|
|
4970
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
5034
4971
|
dependencies = [
|
|
5035
4972
|
"yoke",
|
|
5036
4973
|
"zerofrom",
|
|
@@ -5039,11 +4976,17 @@ dependencies = [
|
|
|
5039
4976
|
|
|
5040
4977
|
[[package]]
|
|
5041
4978
|
name = "zerovec-derive"
|
|
5042
|
-
version = "0.11.
|
|
4979
|
+
version = "0.11.2"
|
|
5043
4980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5044
|
-
checksum = "
|
|
4981
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
5045
4982
|
dependencies = [
|
|
5046
4983
|
"proc-macro2",
|
|
5047
4984
|
"quote",
|
|
5048
|
-
"syn 2.0.
|
|
4985
|
+
"syn 2.0.114",
|
|
5049
4986
|
]
|
|
4987
|
+
|
|
4988
|
+
[[package]]
|
|
4989
|
+
name = "zmij"
|
|
4990
|
+
version = "1.0.14"
|
|
4991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4992
|
+
checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"
|