wreq-rb 0.5.0 → 0.5.1
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.
- checksums.yaml +4 -4
- data/Cargo.lock +1922 -397
- data/LICENSE +203 -0
- data/README.md +19 -15
- data/ext/wreq_rb/Cargo.toml +4 -6
- data/ext/wreq_rb/src/client.rs +41 -48
- data/lib/wreq-rb/version.rb +1 -1
- data/patches/0001-add-transfer-size-tracking.patch +76 -67
- data/vendor/wreq/Cargo.toml +119 -71
- data/vendor/wreq/README.md +25 -20
- data/vendor/wreq/bench/http1.rs +25 -0
- data/vendor/wreq/bench/http1_over_tls.rs +25 -0
- data/vendor/wreq/bench/http2.rs +25 -0
- data/vendor/wreq/bench/http2_over_tls.rs +25 -0
- data/vendor/wreq/bench/support/bench.rs +91 -0
- data/vendor/wreq/bench/support/client.rs +217 -0
- data/vendor/wreq/bench/support/server.rs +188 -0
- data/vendor/wreq/bench/support.rs +56 -0
- data/vendor/wreq/examples/cert_store.rs +4 -4
- data/vendor/wreq/examples/{emulation.rs → emulate.rs} +2 -2
- data/vendor/wreq/examples/http2_websocket.rs +2 -2
- data/vendor/wreq/examples/keylog.rs +3 -3
- data/vendor/wreq/examples/{request_with_emulation.rs → request_with_emulate.rs} +2 -2
- data/vendor/wreq/examples/rt.rs +23 -0
- data/vendor/wreq/src/client/body.rs +23 -61
- data/vendor/wreq/src/client/emulate.rs +119 -0
- data/vendor/wreq/src/client/{http/future.rs → future.rs} +11 -32
- data/vendor/wreq/src/client/{http → layer}/client/pool.rs +66 -61
- data/vendor/wreq/src/client/{http → layer}/client.rs +416 -270
- data/vendor/wreq/src/client/layer/config.rs +27 -6
- data/vendor/wreq/src/client/layer/decoder.rs +9 -4
- data/vendor/wreq/src/client/layer/redirect/future.rs +6 -3
- data/vendor/wreq/src/client/layer/redirect.rs +4 -5
- data/vendor/wreq/src/client/layer/retry.rs +8 -5
- data/vendor/wreq/src/client/layer/timeout/body.rs +15 -6
- data/vendor/wreq/src/client/layer/timeout/future.rs +23 -18
- data/vendor/wreq/src/client/layer/timeout.rs +24 -74
- data/vendor/wreq/src/client/layer.rs +1 -2
- data/vendor/wreq/src/client/multipart.rs +137 -154
- data/vendor/wreq/src/client/request.rs +202 -118
- data/vendor/wreq/src/client/response.rs +46 -45
- data/vendor/wreq/src/client/upgrade.rs +15 -0
- data/vendor/wreq/src/client/ws.rs +73 -25
- data/vendor/wreq/src/client.rs +1655 -17
- data/vendor/wreq/src/config.rs +11 -11
- data/vendor/wreq/src/{client/conn → conn}/connector.rs +139 -137
- data/vendor/wreq/src/conn/descriptor.rs +143 -0
- data/vendor/wreq/src/conn/http.rs +484 -0
- data/vendor/wreq/src/conn/net/io.rs +75 -0
- data/vendor/wreq/src/conn/net/tcp/compio.rs +71 -0
- data/vendor/wreq/src/conn/net/tcp/tokio.rs +57 -0
- data/vendor/wreq/src/conn/net/tcp.rs +561 -0
- data/vendor/wreq/src/conn/net/uds/compio.rs +60 -0
- data/vendor/wreq/src/{client/conn/uds.rs → conn/net/uds/tokio.rs} +18 -12
- data/vendor/wreq/src/conn/net/uds.rs +11 -0
- data/vendor/wreq/src/conn/net.rs +130 -0
- data/vendor/wreq/src/{client/conn → conn}/proxy/socks.rs +2 -9
- data/vendor/wreq/src/{client/conn → conn}/proxy/tunnel.rs +21 -56
- data/vendor/wreq/src/conn/tls_info.rs +47 -0
- data/vendor/wreq/src/{client/conn.rs → conn.rs} +202 -54
- data/vendor/wreq/src/cookie.rs +302 -142
- data/vendor/wreq/src/dns/gai/compio.rs +77 -0
- data/vendor/wreq/src/dns/gai/tokio.rs +90 -0
- data/vendor/wreq/src/dns/gai.rs +14 -164
- data/vendor/wreq/src/dns/hickory.rs +16 -23
- data/vendor/wreq/src/dns/resolve.rs +7 -41
- data/vendor/wreq/src/dns.rs +90 -7
- data/vendor/wreq/src/error.rs +57 -31
- data/vendor/wreq/src/ext.rs +25 -0
- data/vendor/wreq/src/group.rs +211 -0
- data/vendor/wreq/src/header.rs +100 -112
- data/vendor/wreq/src/lib.rs +124 -73
- data/vendor/wreq/src/proxy.rs +6 -20
- data/vendor/wreq/src/redirect.rs +1 -1
- data/vendor/wreq/src/rt.rs +208 -0
- data/vendor/wreq/src/sync.rs +97 -98
- data/vendor/wreq/src/tls/compress.rs +124 -0
- data/vendor/wreq/src/tls/conn/ext.rs +54 -45
- data/vendor/wreq/src/tls/conn/service.rs +14 -18
- data/vendor/wreq/src/tls/conn.rs +169 -241
- data/vendor/wreq/src/tls/keylog.rs +68 -5
- data/vendor/wreq/src/tls/session.rs +205 -0
- data/vendor/wreq/src/tls/{x509 → trust}/identity.rs +4 -21
- data/vendor/wreq/src/tls/{x509/parser.rs → trust/parse.rs} +1 -1
- data/vendor/wreq/src/tls/{x509 → trust}/store.rs +42 -81
- data/vendor/wreq/src/tls/{x509.rs → trust.rs} +8 -2
- data/vendor/wreq/src/tls.rs +489 -25
- data/vendor/wreq/src/trace.rs +0 -12
- data/vendor/wreq/src/util.rs +1 -1
- data/vendor/wreq/tests/badssl.rs +10 -10
- data/vendor/wreq/tests/client.rs +3 -9
- data/vendor/wreq/tests/cookie.rs +6 -8
- data/vendor/wreq/tests/{emulation.rs → emulate.rs} +130 -22
- data/vendor/wreq/tests/multipart.rs +43 -1
- data/vendor/wreq/tests/proxy.rs +1 -1
- data/vendor/wreq/tests/support/layer.rs +1 -0
- metadata +49 -71
- data/patches/0002-add-cancel-connections.patch +0 -181
- data/vendor/wreq/src/client/conn/conn.rs +0 -231
- data/vendor/wreq/src/client/conn/http.rs +0 -1023
- data/vendor/wreq/src/client/conn/tls_info.rs +0 -98
- data/vendor/wreq/src/client/core/body/incoming.rs +0 -485
- data/vendor/wreq/src/client/core/body/length.rs +0 -118
- data/vendor/wreq/src/client/core/body.rs +0 -34
- data/vendor/wreq/src/client/core/common/buf.rs +0 -149
- data/vendor/wreq/src/client/core/common/rewind.rs +0 -141
- data/vendor/wreq/src/client/core/common/watch.rs +0 -76
- data/vendor/wreq/src/client/core/common.rs +0 -3
- data/vendor/wreq/src/client/core/conn/http1.rs +0 -342
- data/vendor/wreq/src/client/core/conn/http2.rs +0 -307
- data/vendor/wreq/src/client/core/conn.rs +0 -11
- data/vendor/wreq/src/client/core/dispatch.rs +0 -299
- data/vendor/wreq/src/client/core/error.rs +0 -435
- data/vendor/wreq/src/client/core/ext.rs +0 -201
- data/vendor/wreq/src/client/core/http1.rs +0 -178
- data/vendor/wreq/src/client/core/http2.rs +0 -483
- data/vendor/wreq/src/client/core/proto/h1/conn.rs +0 -988
- data/vendor/wreq/src/client/core/proto/h1/decode.rs +0 -1170
- data/vendor/wreq/src/client/core/proto/h1/dispatch.rs +0 -684
- data/vendor/wreq/src/client/core/proto/h1/encode.rs +0 -580
- data/vendor/wreq/src/client/core/proto/h1/io.rs +0 -879
- data/vendor/wreq/src/client/core/proto/h1/role.rs +0 -694
- data/vendor/wreq/src/client/core/proto/h1.rs +0 -104
- data/vendor/wreq/src/client/core/proto/h2/client.rs +0 -650
- data/vendor/wreq/src/client/core/proto/h2/ping.rs +0 -539
- data/vendor/wreq/src/client/core/proto/h2.rs +0 -379
- data/vendor/wreq/src/client/core/proto/headers.rs +0 -138
- data/vendor/wreq/src/client/core/proto.rs +0 -58
- data/vendor/wreq/src/client/core/rt/bounds.rs +0 -57
- data/vendor/wreq/src/client/core/rt/timer.rs +0 -150
- data/vendor/wreq/src/client/core/rt/tokio.rs +0 -99
- data/vendor/wreq/src/client/core/rt.rs +0 -25
- data/vendor/wreq/src/client/core/upgrade.rs +0 -267
- data/vendor/wreq/src/client/core.rs +0 -16
- data/vendor/wreq/src/client/emulation.rs +0 -161
- data/vendor/wreq/src/client/http/client/error.rs +0 -142
- data/vendor/wreq/src/client/http/client/exec.rs +0 -29
- data/vendor/wreq/src/client/http/client/extra.rs +0 -77
- data/vendor/wreq/src/client/http/client/util.rs +0 -104
- data/vendor/wreq/src/client/http.rs +0 -1629
- data/vendor/wreq/src/client/layer/config/options.rs +0 -156
- data/vendor/wreq/src/client/layer/cookie.rs +0 -161
- data/vendor/wreq/src/hash.rs +0 -143
- data/vendor/wreq/src/tls/conn/cache.rs +0 -123
- data/vendor/wreq/src/tls/conn/cert_compression.rs +0 -125
- data/vendor/wreq/src/tls/keylog/handle.rs +0 -64
- data/vendor/wreq/src/tls/options.rs +0 -464
- /data/vendor/wreq/src/client/{http → layer}/client/lazy.rs +0 -0
- /data/vendor/wreq/src/{client/conn → conn}/proxy.rs +0 -0
- /data/vendor/wreq/src/{client/conn → conn}/verbose.rs +0 -0
data/Cargo.lock
CHANGED
|
@@ -8,18 +8,6 @@ version = "2.0.1"
|
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
9
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
|
-
[[package]]
|
|
12
|
-
name = "ahash"
|
|
13
|
-
version = "0.8.12"
|
|
14
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
-
dependencies = [
|
|
17
|
-
"cfg-if",
|
|
18
|
-
"once_cell",
|
|
19
|
-
"version_check",
|
|
20
|
-
"zerocopy",
|
|
21
|
-
]
|
|
22
|
-
|
|
23
11
|
[[package]]
|
|
24
12
|
name = "aho-corasick"
|
|
25
13
|
version = "1.1.4"
|
|
@@ -44,11 +32,50 @@ dependencies = [
|
|
|
44
32
|
"alloc-no-stdlib",
|
|
45
33
|
]
|
|
46
34
|
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "alloca"
|
|
37
|
+
version = "0.4.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"cc",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "allocator-api2"
|
|
46
|
+
version = "0.2.21"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anes"
|
|
52
|
+
version = "0.1.6"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle"
|
|
58
|
+
version = "1.0.14"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anyhow"
|
|
64
|
+
version = "1.0.102"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "arrayvec"
|
|
70
|
+
version = "0.7.6"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
73
|
+
|
|
47
74
|
[[package]]
|
|
48
75
|
name = "async-compression"
|
|
49
|
-
version = "0.4.
|
|
76
|
+
version = "0.4.42"
|
|
50
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
-
checksum = "
|
|
78
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
52
79
|
dependencies = [
|
|
53
80
|
"compression-codecs",
|
|
54
81
|
"compression-core",
|
|
@@ -74,25 +101,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
74
101
|
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
75
102
|
|
|
76
103
|
[[package]]
|
|
77
|
-
name = "
|
|
78
|
-
version = "
|
|
104
|
+
name = "autocfg"
|
|
105
|
+
version = "1.5.1"
|
|
79
106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
107
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "aws-lc-rs"
|
|
111
|
+
version = "1.17.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
81
114
|
dependencies = [
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
"
|
|
115
|
+
"aws-lc-sys",
|
|
116
|
+
"zeroize",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "aws-lc-sys"
|
|
121
|
+
version = "0.41.0"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"cc",
|
|
126
|
+
"cmake",
|
|
127
|
+
"dunce",
|
|
128
|
+
"fs_extra",
|
|
94
129
|
]
|
|
95
130
|
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "base64"
|
|
133
|
+
version = "0.22.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
136
|
+
|
|
96
137
|
[[package]]
|
|
97
138
|
name = "bindgen"
|
|
98
139
|
version = "0.72.1"
|
|
@@ -102,20 +143,20 @@ dependencies = [
|
|
|
102
143
|
"bitflags",
|
|
103
144
|
"cexpr",
|
|
104
145
|
"clang-sys",
|
|
105
|
-
"itertools
|
|
146
|
+
"itertools",
|
|
106
147
|
"proc-macro2",
|
|
107
148
|
"quote",
|
|
108
149
|
"regex",
|
|
109
|
-
"rustc-hash
|
|
110
|
-
"shlex",
|
|
150
|
+
"rustc-hash",
|
|
151
|
+
"shlex 1.3.0",
|
|
111
152
|
"syn",
|
|
112
153
|
]
|
|
113
154
|
|
|
114
155
|
[[package]]
|
|
115
156
|
name = "bitflags"
|
|
116
|
-
version = "2.
|
|
157
|
+
version = "2.12.1"
|
|
117
158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
-
checksum = "
|
|
159
|
+
checksum = "84d7ced0ae9557296835c32bf1b1e02b44c746701f898460fb000d7eaa84f00a"
|
|
119
160
|
|
|
120
161
|
[[package]]
|
|
121
162
|
name = "block-buffer"
|
|
@@ -127,56 +168,62 @@ dependencies = [
|
|
|
127
168
|
]
|
|
128
169
|
|
|
129
170
|
[[package]]
|
|
130
|
-
name = "
|
|
131
|
-
version = "
|
|
171
|
+
name = "brotli"
|
|
172
|
+
version = "8.0.3"
|
|
132
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
-
checksum = "
|
|
174
|
+
checksum = "8119e4516436f5708bbc474a9d395bf12f1b5395e93a92a56e647ac3388c8610"
|
|
134
175
|
dependencies = [
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
|
|
176
|
+
"alloc-no-stdlib",
|
|
177
|
+
"alloc-stdlib",
|
|
178
|
+
"brotli-decompressor",
|
|
179
|
+
]
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "brotli-decompressor"
|
|
183
|
+
version = "5.0.1"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "5962523e1b92ce1b5e793d9169b9943eece10d39f62550bc04bb605d75b94924"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"alloc-no-stdlib",
|
|
188
|
+
"alloc-stdlib",
|
|
139
189
|
]
|
|
140
190
|
|
|
141
191
|
[[package]]
|
|
142
|
-
name = "
|
|
143
|
-
version = "
|
|
192
|
+
name = "btls"
|
|
193
|
+
version = "0.5.6"
|
|
144
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "
|
|
195
|
+
checksum = "2c5e60b8c8d282c86360cab651ded04ab0335a7b5390c8d34145cbeab8cacf5f"
|
|
146
196
|
dependencies = [
|
|
147
197
|
"bitflags",
|
|
148
|
-
"
|
|
198
|
+
"btls-sys",
|
|
149
199
|
"foreign-types",
|
|
150
200
|
"libc",
|
|
151
201
|
"openssl-macros",
|
|
152
202
|
]
|
|
153
203
|
|
|
154
204
|
[[package]]
|
|
155
|
-
name = "
|
|
156
|
-
version = "
|
|
205
|
+
name = "btls-sys"
|
|
206
|
+
version = "0.5.6"
|
|
157
207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
-
checksum = "
|
|
208
|
+
checksum = "9b1b8638a2e1c38a5ae4efa90ae57e643baec35a30d03fc5b399b893adc4954b"
|
|
159
209
|
dependencies = [
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
210
|
+
"bindgen",
|
|
211
|
+
"cmake",
|
|
212
|
+
"fs_extra",
|
|
213
|
+
"fslock",
|
|
163
214
|
]
|
|
164
215
|
|
|
165
216
|
[[package]]
|
|
166
|
-
name = "
|
|
167
|
-
version = "
|
|
217
|
+
name = "bumpalo"
|
|
218
|
+
version = "3.20.3"
|
|
168
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
-
checksum = "
|
|
170
|
-
dependencies = [
|
|
171
|
-
"alloc-no-stdlib",
|
|
172
|
-
"alloc-stdlib",
|
|
173
|
-
]
|
|
220
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
174
221
|
|
|
175
222
|
[[package]]
|
|
176
|
-
name = "
|
|
177
|
-
version = "
|
|
223
|
+
name = "bytemuck"
|
|
224
|
+
version = "1.25.0"
|
|
178
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "
|
|
226
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
180
227
|
|
|
181
228
|
[[package]]
|
|
182
229
|
name = "bytes"
|
|
@@ -184,16 +231,22 @@ version = "1.11.1"
|
|
|
184
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
232
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
186
233
|
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "cast"
|
|
236
|
+
version = "0.3.0"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
239
|
+
|
|
187
240
|
[[package]]
|
|
188
241
|
name = "cc"
|
|
189
|
-
version = "1.2.
|
|
242
|
+
version = "1.2.63"
|
|
190
243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
-
checksum = "
|
|
244
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
192
245
|
dependencies = [
|
|
193
246
|
"find-msvc-tools",
|
|
194
247
|
"jobserver",
|
|
195
248
|
"libc",
|
|
196
|
-
"shlex",
|
|
249
|
+
"shlex 2.0.1",
|
|
197
250
|
]
|
|
198
251
|
|
|
199
252
|
[[package]]
|
|
@@ -211,6 +264,50 @@ version = "1.0.4"
|
|
|
211
264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
265
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
213
266
|
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "cfg_aliases"
|
|
269
|
+
version = "0.2.1"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "chacha20"
|
|
275
|
+
version = "0.10.0"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"cfg-if",
|
|
280
|
+
"cpufeatures 0.3.0",
|
|
281
|
+
"rand_core 0.10.1",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "ciborium"
|
|
286
|
+
version = "0.2.2"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"ciborium-io",
|
|
291
|
+
"ciborium-ll",
|
|
292
|
+
"serde",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "ciborium-io"
|
|
297
|
+
version = "0.2.2"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "ciborium-ll"
|
|
303
|
+
version = "0.2.2"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"ciborium-io",
|
|
308
|
+
"half",
|
|
309
|
+
]
|
|
310
|
+
|
|
214
311
|
[[package]]
|
|
215
312
|
name = "clang-sys"
|
|
216
313
|
version = "1.8.1"
|
|
@@ -222,20 +319,237 @@ dependencies = [
|
|
|
222
319
|
"libloading",
|
|
223
320
|
]
|
|
224
321
|
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "clap"
|
|
324
|
+
version = "4.6.1"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"clap_builder",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "clap_builder"
|
|
333
|
+
version = "4.6.0"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"anstyle",
|
|
338
|
+
"clap_lex",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "clap_lex"
|
|
343
|
+
version = "1.1.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
346
|
+
|
|
225
347
|
[[package]]
|
|
226
348
|
name = "cmake"
|
|
227
|
-
version = "0.1.
|
|
349
|
+
version = "0.1.58"
|
|
228
350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
-
checksum = "
|
|
351
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
230
352
|
dependencies = [
|
|
231
353
|
"cc",
|
|
232
354
|
]
|
|
233
355
|
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "combine"
|
|
358
|
+
version = "4.6.7"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
361
|
+
dependencies = [
|
|
362
|
+
"bytes",
|
|
363
|
+
"memchr",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "compio"
|
|
368
|
+
version = "0.19.0"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "2a25ca13ca7580b0cfe1982166432ee8f60a00bff6a3bf781800fce581bb97cd"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"compio-buf",
|
|
373
|
+
"compio-driver",
|
|
374
|
+
"compio-io",
|
|
375
|
+
"compio-log",
|
|
376
|
+
"compio-macros",
|
|
377
|
+
"compio-net",
|
|
378
|
+
"compio-quic",
|
|
379
|
+
"compio-runtime",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "compio-buf"
|
|
384
|
+
version = "0.8.2"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "1b9478803aae4726ce02139b5510354034ae3afc99ce2496734784314664b91c"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"arrayvec",
|
|
389
|
+
"bytes",
|
|
390
|
+
"libc",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "compio-driver"
|
|
395
|
+
version = "0.12.1"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "2bb85cde3af21a2baaaa6eb40dada718d8ef2ac4a1f4acf671091dea13f3f43d"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"bitflags",
|
|
400
|
+
"cfg_aliases",
|
|
401
|
+
"compio-buf",
|
|
402
|
+
"compio-log",
|
|
403
|
+
"compio-send-wrapper",
|
|
404
|
+
"crossbeam-queue",
|
|
405
|
+
"flume",
|
|
406
|
+
"futures-util",
|
|
407
|
+
"io-uring",
|
|
408
|
+
"libc",
|
|
409
|
+
"linux-raw-sys",
|
|
410
|
+
"mod_use",
|
|
411
|
+
"once_cell",
|
|
412
|
+
"pastey",
|
|
413
|
+
"polling",
|
|
414
|
+
"rustix",
|
|
415
|
+
"smallvec",
|
|
416
|
+
"socket2",
|
|
417
|
+
"synchrony",
|
|
418
|
+
"thin-cell",
|
|
419
|
+
"windows-sys 0.61.2",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "compio-executor"
|
|
424
|
+
version = "0.1.1"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "43a8134ddbf3d1ae400ba29fbb19f26e7da58784d4b049b370cef8230ae015a9"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"compio-log",
|
|
429
|
+
"compio-send-wrapper",
|
|
430
|
+
"crossbeam-queue",
|
|
431
|
+
"loom",
|
|
432
|
+
"slotmap",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "compio-io"
|
|
437
|
+
version = "0.10.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "cd2f4a095767ab3144de394b868b17cf0e7cab706b5d6464effbc7bf7ee95aaa"
|
|
440
|
+
dependencies = [
|
|
441
|
+
"bytemuck",
|
|
442
|
+
"compio-buf",
|
|
443
|
+
"futures-util",
|
|
444
|
+
"libc",
|
|
445
|
+
"pastey",
|
|
446
|
+
"pin-project-lite",
|
|
447
|
+
"rustix",
|
|
448
|
+
"synchrony",
|
|
449
|
+
"windows-sys 0.61.2",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "compio-log"
|
|
454
|
+
version = "0.2.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "ef39fff6341af7ab6c27fae9a3887e1ec618320d43f3b9c924c7a644f693a859"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"tracing",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "compio-macros"
|
|
463
|
+
version = "0.2.0"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "a9ac573b3bb60fffabf47c2ce01c61536fb5eb2168d66e0375e85603e7d51614"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"darling",
|
|
468
|
+
"proc-macro-crate",
|
|
469
|
+
"proc-macro2",
|
|
470
|
+
"quote",
|
|
471
|
+
"syn",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "compio-net"
|
|
476
|
+
version = "0.12.0"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "9c83b4b129666d6411f0b0b797f21669c4d3f3ca007e7cce6099957faaa0dc1d"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"compio-buf",
|
|
481
|
+
"compio-driver",
|
|
482
|
+
"compio-io",
|
|
483
|
+
"compio-runtime",
|
|
484
|
+
"either",
|
|
485
|
+
"futures-util",
|
|
486
|
+
"libc",
|
|
487
|
+
"once_cell",
|
|
488
|
+
"pin-project-lite",
|
|
489
|
+
"socket2",
|
|
490
|
+
"synchrony",
|
|
491
|
+
"widestring",
|
|
492
|
+
"windows-sys 0.61.2",
|
|
493
|
+
]
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "compio-quic"
|
|
497
|
+
version = "0.8.0"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "edd50cb1b2c2c8276728871bc3bf3c12618c551cdd550123d564aa49b059aea5"
|
|
500
|
+
dependencies = [
|
|
501
|
+
"cfg_aliases",
|
|
502
|
+
"compio-buf",
|
|
503
|
+
"compio-io",
|
|
504
|
+
"compio-log",
|
|
505
|
+
"compio-net",
|
|
506
|
+
"compio-runtime",
|
|
507
|
+
"flume",
|
|
508
|
+
"futures-util",
|
|
509
|
+
"libc",
|
|
510
|
+
"quinn-proto",
|
|
511
|
+
"rustc-hash",
|
|
512
|
+
"rustls",
|
|
513
|
+
"synchrony",
|
|
514
|
+
"thiserror 2.0.18",
|
|
515
|
+
"windows-sys 0.61.2",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "compio-runtime"
|
|
520
|
+
version = "0.12.0"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "7788d06de0a16b81025ffb9241bd54a8bf4583d67bc332151b512ae7d8896d04"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"compio-buf",
|
|
525
|
+
"compio-driver",
|
|
526
|
+
"compio-executor",
|
|
527
|
+
"compio-log",
|
|
528
|
+
"compio-send-wrapper",
|
|
529
|
+
"core_affinity",
|
|
530
|
+
"futures-util",
|
|
531
|
+
"libc",
|
|
532
|
+
"pin-project-lite",
|
|
533
|
+
"scoped-tls",
|
|
534
|
+
"synchrony",
|
|
535
|
+
"windows-sys 0.61.2",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "compio-send-wrapper"
|
|
540
|
+
version = "0.7.1"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "4f1ef3947d751725afe49ab18ce447d819cd8f4ea9b58ae94b8498eb8ad1f864"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"cfg-if",
|
|
545
|
+
"loom",
|
|
546
|
+
]
|
|
547
|
+
|
|
234
548
|
[[package]]
|
|
235
549
|
name = "compression-codecs"
|
|
236
|
-
version = "0.4.
|
|
550
|
+
version = "0.4.38"
|
|
237
551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
552
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
239
553
|
dependencies = [
|
|
240
554
|
"brotli",
|
|
241
555
|
"compression-core",
|
|
@@ -247,9 +561,18 @@ dependencies = [
|
|
|
247
561
|
|
|
248
562
|
[[package]]
|
|
249
563
|
name = "compression-core"
|
|
250
|
-
version = "0.4.
|
|
564
|
+
version = "0.4.32"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "concurrent-queue"
|
|
570
|
+
version = "2.5.0"
|
|
251
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
572
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"crossbeam-utils",
|
|
575
|
+
]
|
|
253
576
|
|
|
254
577
|
[[package]]
|
|
255
578
|
name = "cookie"
|
|
@@ -271,12 +594,33 @@ dependencies = [
|
|
|
271
594
|
"libc",
|
|
272
595
|
]
|
|
273
596
|
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "core-foundation"
|
|
599
|
+
version = "0.10.1"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"core-foundation-sys",
|
|
604
|
+
"libc",
|
|
605
|
+
]
|
|
606
|
+
|
|
274
607
|
[[package]]
|
|
275
608
|
name = "core-foundation-sys"
|
|
276
609
|
version = "0.8.7"
|
|
277
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
611
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
279
612
|
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "core_affinity"
|
|
615
|
+
version = "0.8.3"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"libc",
|
|
620
|
+
"num_cpus",
|
|
621
|
+
"winapi",
|
|
622
|
+
]
|
|
623
|
+
|
|
280
624
|
[[package]]
|
|
281
625
|
name = "cpufeatures"
|
|
282
626
|
version = "0.2.17"
|
|
@@ -286,6 +630,15 @@ dependencies = [
|
|
|
286
630
|
"libc",
|
|
287
631
|
]
|
|
288
632
|
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "cpufeatures"
|
|
635
|
+
version = "0.3.0"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"libc",
|
|
640
|
+
]
|
|
641
|
+
|
|
289
642
|
[[package]]
|
|
290
643
|
name = "crc32fast"
|
|
291
644
|
version = "1.5.0"
|
|
@@ -295,6 +648,42 @@ dependencies = [
|
|
|
295
648
|
"cfg-if",
|
|
296
649
|
]
|
|
297
650
|
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "criterion"
|
|
653
|
+
version = "0.8.2"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"alloca",
|
|
658
|
+
"anes",
|
|
659
|
+
"cast",
|
|
660
|
+
"ciborium",
|
|
661
|
+
"clap",
|
|
662
|
+
"criterion-plot",
|
|
663
|
+
"itertools",
|
|
664
|
+
"num-traits",
|
|
665
|
+
"oorandom",
|
|
666
|
+
"page_size",
|
|
667
|
+
"plotters",
|
|
668
|
+
"rayon",
|
|
669
|
+
"regex",
|
|
670
|
+
"serde",
|
|
671
|
+
"serde_json",
|
|
672
|
+
"tinytemplate",
|
|
673
|
+
"tokio",
|
|
674
|
+
"walkdir",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "criterion-plot"
|
|
679
|
+
version = "0.8.2"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"cast",
|
|
684
|
+
"itertools",
|
|
685
|
+
]
|
|
686
|
+
|
|
298
687
|
[[package]]
|
|
299
688
|
name = "critical-section"
|
|
300
689
|
version = "1.2.0"
|
|
@@ -310,6 +699,16 @@ dependencies = [
|
|
|
310
699
|
"crossbeam-utils",
|
|
311
700
|
]
|
|
312
701
|
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "crossbeam-deque"
|
|
704
|
+
version = "0.8.6"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"crossbeam-epoch",
|
|
709
|
+
"crossbeam-utils",
|
|
710
|
+
]
|
|
711
|
+
|
|
313
712
|
[[package]]
|
|
314
713
|
name = "crossbeam-epoch"
|
|
315
714
|
version = "0.9.18"
|
|
@@ -319,12 +718,27 @@ dependencies = [
|
|
|
319
718
|
"crossbeam-utils",
|
|
320
719
|
]
|
|
321
720
|
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "crossbeam-queue"
|
|
723
|
+
version = "0.3.12"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"crossbeam-utils",
|
|
728
|
+
]
|
|
729
|
+
|
|
322
730
|
[[package]]
|
|
323
731
|
name = "crossbeam-utils"
|
|
324
732
|
version = "0.8.21"
|
|
325
733
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
734
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
327
735
|
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "crunchy"
|
|
738
|
+
version = "0.2.4"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
741
|
+
|
|
328
742
|
[[package]]
|
|
329
743
|
name = "crypto-common"
|
|
330
744
|
version = "0.1.7"
|
|
@@ -335,17 +749,51 @@ dependencies = [
|
|
|
335
749
|
"typenum",
|
|
336
750
|
]
|
|
337
751
|
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "darling"
|
|
754
|
+
version = "0.23.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"darling_core",
|
|
759
|
+
"darling_macro",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "darling_core"
|
|
764
|
+
version = "0.23.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"ident_case",
|
|
769
|
+
"proc-macro2",
|
|
770
|
+
"quote",
|
|
771
|
+
"strsim",
|
|
772
|
+
"syn",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "darling_macro"
|
|
777
|
+
version = "0.23.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"darling_core",
|
|
782
|
+
"quote",
|
|
783
|
+
"syn",
|
|
784
|
+
]
|
|
785
|
+
|
|
338
786
|
[[package]]
|
|
339
787
|
name = "data-encoding"
|
|
340
|
-
version = "2.
|
|
788
|
+
version = "2.11.0"
|
|
341
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
-
checksum = "
|
|
790
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
343
791
|
|
|
344
792
|
[[package]]
|
|
345
793
|
name = "deranged"
|
|
346
|
-
version = "0.5.
|
|
794
|
+
version = "0.5.8"
|
|
347
795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
796
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
349
797
|
dependencies = [
|
|
350
798
|
"powerfmt",
|
|
351
799
|
]
|
|
@@ -362,20 +810,26 @@ dependencies = [
|
|
|
362
810
|
|
|
363
811
|
[[package]]
|
|
364
812
|
name = "displaydoc"
|
|
365
|
-
version = "0.2.
|
|
813
|
+
version = "0.2.6"
|
|
366
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
815
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
368
816
|
dependencies = [
|
|
369
817
|
"proc-macro2",
|
|
370
818
|
"quote",
|
|
371
819
|
"syn",
|
|
372
820
|
]
|
|
373
821
|
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "dunce"
|
|
824
|
+
version = "1.0.5"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
827
|
+
|
|
374
828
|
[[package]]
|
|
375
829
|
name = "either"
|
|
376
|
-
version = "1.
|
|
830
|
+
version = "1.16.0"
|
|
377
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "
|
|
832
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
379
833
|
|
|
380
834
|
[[package]]
|
|
381
835
|
name = "encoding_rs"
|
|
@@ -386,18 +840,6 @@ dependencies = [
|
|
|
386
840
|
"cfg-if",
|
|
387
841
|
]
|
|
388
842
|
|
|
389
|
-
[[package]]
|
|
390
|
-
name = "enum-as-inner"
|
|
391
|
-
version = "0.6.1"
|
|
392
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
-
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
394
|
-
dependencies = [
|
|
395
|
-
"heck",
|
|
396
|
-
"proc-macro2",
|
|
397
|
-
"quote",
|
|
398
|
-
"syn",
|
|
399
|
-
]
|
|
400
|
-
|
|
401
843
|
[[package]]
|
|
402
844
|
name = "env_logger"
|
|
403
845
|
version = "0.10.2"
|
|
@@ -427,6 +869,16 @@ dependencies = [
|
|
|
427
869
|
"windows-sys 0.61.2",
|
|
428
870
|
]
|
|
429
871
|
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "event-listener"
|
|
874
|
+
version = "5.4.1"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"concurrent-queue",
|
|
879
|
+
"pin-project-lite",
|
|
880
|
+
]
|
|
881
|
+
|
|
430
882
|
[[package]]
|
|
431
883
|
name = "find-msvc-tools"
|
|
432
884
|
version = "0.1.9"
|
|
@@ -443,12 +895,35 @@ dependencies = [
|
|
|
443
895
|
"miniz_oxide",
|
|
444
896
|
]
|
|
445
897
|
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "flume"
|
|
900
|
+
version = "0.12.0"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"futures-core",
|
|
905
|
+
"futures-sink",
|
|
906
|
+
"spin",
|
|
907
|
+
]
|
|
908
|
+
|
|
446
909
|
[[package]]
|
|
447
910
|
name = "fnv"
|
|
448
911
|
version = "1.0.7"
|
|
449
912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
913
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
451
914
|
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "foldhash"
|
|
917
|
+
version = "0.1.5"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "foldhash"
|
|
923
|
+
version = "0.2.0"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
926
|
+
|
|
452
927
|
[[package]]
|
|
453
928
|
name = "foreign-types"
|
|
454
929
|
version = "0.5.0"
|
|
@@ -503,9 +978,9 @@ dependencies = [
|
|
|
503
978
|
|
|
504
979
|
[[package]]
|
|
505
980
|
name = "futures"
|
|
506
|
-
version = "0.3.
|
|
981
|
+
version = "0.3.32"
|
|
507
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
983
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
509
984
|
dependencies = [
|
|
510
985
|
"futures-channel",
|
|
511
986
|
"futures-core",
|
|
@@ -517,9 +992,9 @@ dependencies = [
|
|
|
517
992
|
|
|
518
993
|
[[package]]
|
|
519
994
|
name = "futures-channel"
|
|
520
|
-
version = "0.3.
|
|
995
|
+
version = "0.3.32"
|
|
521
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
-
checksum = "
|
|
997
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
523
998
|
dependencies = [
|
|
524
999
|
"futures-core",
|
|
525
1000
|
"futures-sink",
|
|
@@ -527,45 +1002,71 @@ dependencies = [
|
|
|
527
1002
|
|
|
528
1003
|
[[package]]
|
|
529
1004
|
name = "futures-core"
|
|
530
|
-
version = "0.3.
|
|
1005
|
+
version = "0.3.32"
|
|
531
1006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
-
checksum = "
|
|
1007
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
533
1008
|
|
|
534
1009
|
[[package]]
|
|
535
1010
|
name = "futures-io"
|
|
536
|
-
version = "0.3.
|
|
1011
|
+
version = "0.3.32"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "futures-macro"
|
|
1017
|
+
version = "0.3.32"
|
|
537
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
1019
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"proc-macro2",
|
|
1022
|
+
"quote",
|
|
1023
|
+
"syn",
|
|
1024
|
+
]
|
|
539
1025
|
|
|
540
1026
|
[[package]]
|
|
541
1027
|
name = "futures-sink"
|
|
542
|
-
version = "0.3.
|
|
1028
|
+
version = "0.3.32"
|
|
543
1029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
1030
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
545
1031
|
|
|
546
1032
|
[[package]]
|
|
547
1033
|
name = "futures-task"
|
|
548
|
-
version = "0.3.
|
|
1034
|
+
version = "0.3.32"
|
|
549
1035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
-
checksum = "
|
|
1036
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
551
1037
|
|
|
552
1038
|
[[package]]
|
|
553
1039
|
name = "futures-util"
|
|
554
|
-
version = "0.3.
|
|
1040
|
+
version = "0.3.32"
|
|
555
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
-
checksum = "
|
|
1042
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
557
1043
|
dependencies = [
|
|
558
1044
|
"futures-channel",
|
|
559
1045
|
"futures-core",
|
|
560
1046
|
"futures-io",
|
|
1047
|
+
"futures-macro",
|
|
561
1048
|
"futures-sink",
|
|
562
1049
|
"futures-task",
|
|
563
1050
|
"memchr",
|
|
564
1051
|
"pin-project-lite",
|
|
565
|
-
"pin-utils",
|
|
566
1052
|
"slab",
|
|
567
1053
|
]
|
|
568
1054
|
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "generator"
|
|
1057
|
+
version = "0.8.9"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"cc",
|
|
1062
|
+
"cfg-if",
|
|
1063
|
+
"libc",
|
|
1064
|
+
"log",
|
|
1065
|
+
"rustversion",
|
|
1066
|
+
"windows-link",
|
|
1067
|
+
"windows-result",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
569
1070
|
[[package]]
|
|
570
1071
|
name = "generic-array"
|
|
571
1072
|
version = "0.14.7"
|
|
@@ -583,8 +1084,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
583
1084
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
584
1085
|
dependencies = [
|
|
585
1086
|
"cfg-if",
|
|
1087
|
+
"js-sys",
|
|
586
1088
|
"libc",
|
|
587
1089
|
"wasi",
|
|
1090
|
+
"wasm-bindgen",
|
|
588
1091
|
]
|
|
589
1092
|
|
|
590
1093
|
[[package]]
|
|
@@ -592,11 +1095,27 @@ name = "getrandom"
|
|
|
592
1095
|
version = "0.3.4"
|
|
593
1096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
1097
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"cfg-if",
|
|
1100
|
+
"js-sys",
|
|
1101
|
+
"libc",
|
|
1102
|
+
"r-efi 5.3.0",
|
|
1103
|
+
"wasip2",
|
|
1104
|
+
"wasm-bindgen",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "getrandom"
|
|
1109
|
+
version = "0.4.2"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
595
1112
|
dependencies = [
|
|
596
1113
|
"cfg-if",
|
|
597
1114
|
"libc",
|
|
598
|
-
"r-efi",
|
|
1115
|
+
"r-efi 6.0.0",
|
|
1116
|
+
"rand_core 0.10.1",
|
|
599
1117
|
"wasip2",
|
|
1118
|
+
"wasip3",
|
|
600
1119
|
]
|
|
601
1120
|
|
|
602
1121
|
[[package]]
|
|
@@ -607,9 +1126,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
607
1126
|
|
|
608
1127
|
[[package]]
|
|
609
1128
|
name = "h2"
|
|
610
|
-
version = "0.4.
|
|
1129
|
+
version = "0.4.14"
|
|
611
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
1131
|
+
checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
|
|
613
1132
|
dependencies = [
|
|
614
1133
|
"atomic-waker",
|
|
615
1134
|
"bytes",
|
|
@@ -624,17 +1143,36 @@ dependencies = [
|
|
|
624
1143
|
"tracing",
|
|
625
1144
|
]
|
|
626
1145
|
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "half"
|
|
1148
|
+
version = "2.7.1"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"cfg-if",
|
|
1153
|
+
"crunchy",
|
|
1154
|
+
"zerocopy",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
627
1157
|
[[package]]
|
|
628
1158
|
name = "hashbrown"
|
|
629
|
-
version = "0.
|
|
1159
|
+
version = "0.15.5"
|
|
630
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
-
checksum = "
|
|
1161
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1162
|
+
dependencies = [
|
|
1163
|
+
"foldhash 0.1.5",
|
|
1164
|
+
]
|
|
632
1165
|
|
|
633
1166
|
[[package]]
|
|
634
1167
|
name = "hashbrown"
|
|
635
|
-
version = "0.
|
|
1168
|
+
version = "0.17.1"
|
|
636
1169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
-
checksum = "
|
|
1170
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"allocator-api2",
|
|
1173
|
+
"equivalent",
|
|
1174
|
+
"foldhash 0.2.0",
|
|
1175
|
+
]
|
|
638
1176
|
|
|
639
1177
|
[[package]]
|
|
640
1178
|
name = "heck"
|
|
@@ -649,46 +1187,70 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
649
1187
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
650
1188
|
|
|
651
1189
|
[[package]]
|
|
652
|
-
name = "hickory-
|
|
653
|
-
version = "0.
|
|
1190
|
+
name = "hickory-net"
|
|
1191
|
+
version = "0.26.1"
|
|
654
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
-
checksum = "
|
|
1193
|
+
checksum = "e2295ed2f9c31e471e1428a8f88a3f0e1f4b27c15049592138d1eebe9c35b183"
|
|
656
1194
|
dependencies = [
|
|
657
1195
|
"async-trait",
|
|
658
1196
|
"cfg-if",
|
|
659
1197
|
"data-encoding",
|
|
660
|
-
"enum-as-inner",
|
|
661
1198
|
"futures-channel",
|
|
662
1199
|
"futures-io",
|
|
663
1200
|
"futures-util",
|
|
1201
|
+
"hickory-proto",
|
|
664
1202
|
"idna",
|
|
665
1203
|
"ipnet",
|
|
1204
|
+
"jni",
|
|
1205
|
+
"rand 0.10.1",
|
|
1206
|
+
"thiserror 2.0.18",
|
|
1207
|
+
"tinyvec",
|
|
1208
|
+
"tokio",
|
|
1209
|
+
"tracing",
|
|
1210
|
+
"url",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "hickory-proto"
|
|
1215
|
+
version = "0.26.1"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "0bab31817bfb44672a252e97fe81cd0c18d1b2cf892108922f6818820df8c643"
|
|
1218
|
+
dependencies = [
|
|
1219
|
+
"data-encoding",
|
|
1220
|
+
"idna",
|
|
1221
|
+
"ipnet",
|
|
1222
|
+
"jni",
|
|
666
1223
|
"once_cell",
|
|
667
|
-
"
|
|
1224
|
+
"prefix-trie",
|
|
1225
|
+
"rand 0.10.1",
|
|
668
1226
|
"ring",
|
|
669
1227
|
"thiserror 2.0.18",
|
|
670
1228
|
"tinyvec",
|
|
671
|
-
"tokio",
|
|
672
1229
|
"tracing",
|
|
673
1230
|
"url",
|
|
674
1231
|
]
|
|
675
1232
|
|
|
676
1233
|
[[package]]
|
|
677
1234
|
name = "hickory-resolver"
|
|
678
|
-
version = "0.
|
|
1235
|
+
version = "0.26.1"
|
|
679
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
1237
|
+
checksum = "f0d58d28879ceecde6607729660c2667a081ccdc082e082675042793960f178c"
|
|
681
1238
|
dependencies = [
|
|
682
1239
|
"cfg-if",
|
|
683
1240
|
"futures-util",
|
|
1241
|
+
"hickory-net",
|
|
684
1242
|
"hickory-proto",
|
|
685
1243
|
"ipconfig",
|
|
1244
|
+
"ipnet",
|
|
1245
|
+
"jni",
|
|
686
1246
|
"moka",
|
|
1247
|
+
"ndk-context",
|
|
687
1248
|
"once_cell",
|
|
688
1249
|
"parking_lot",
|
|
689
|
-
"rand",
|
|
1250
|
+
"rand 0.10.1",
|
|
690
1251
|
"resolv-conf",
|
|
691
1252
|
"smallvec",
|
|
1253
|
+
"system-configuration",
|
|
692
1254
|
"thiserror 2.0.18",
|
|
693
1255
|
"tokio",
|
|
694
1256
|
"tracing",
|
|
@@ -696,9 +1258,9 @@ dependencies = [
|
|
|
696
1258
|
|
|
697
1259
|
[[package]]
|
|
698
1260
|
name = "http"
|
|
699
|
-
version = "1.4.
|
|
1261
|
+
version = "1.4.1"
|
|
700
1262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
-
checksum = "
|
|
1263
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
702
1264
|
dependencies = [
|
|
703
1265
|
"bytes",
|
|
704
1266
|
"itoa",
|
|
@@ -729,9 +1291,9 @@ dependencies = [
|
|
|
729
1291
|
|
|
730
1292
|
[[package]]
|
|
731
1293
|
name = "http2"
|
|
732
|
-
version = "0.5.
|
|
1294
|
+
version = "0.5.17"
|
|
733
1295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
-
checksum = "
|
|
1296
|
+
checksum = "569ef7a780e853c4e1768f58a3c8168193b82cdcbab66638a0b1c6583ec5995e"
|
|
735
1297
|
dependencies = [
|
|
736
1298
|
"atomic-waker",
|
|
737
1299
|
"bytes",
|
|
@@ -768,9 +1330,9 @@ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
|
768
1330
|
|
|
769
1331
|
[[package]]
|
|
770
1332
|
name = "hyper"
|
|
771
|
-
version = "1.
|
|
1333
|
+
version = "1.10.1"
|
|
772
1334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
-
checksum = "
|
|
1335
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
774
1336
|
dependencies = [
|
|
775
1337
|
"atomic-waker",
|
|
776
1338
|
"bytes",
|
|
@@ -783,9 +1345,24 @@ dependencies = [
|
|
|
783
1345
|
"httpdate",
|
|
784
1346
|
"itoa",
|
|
785
1347
|
"pin-project-lite",
|
|
786
|
-
"pin-utils",
|
|
787
1348
|
"smallvec",
|
|
788
1349
|
"tokio",
|
|
1350
|
+
"want",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "hyper-rustls"
|
|
1355
|
+
version = "0.27.9"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"http",
|
|
1360
|
+
"hyper",
|
|
1361
|
+
"hyper-util",
|
|
1362
|
+
"rustls",
|
|
1363
|
+
"tokio",
|
|
1364
|
+
"tokio-rustls",
|
|
1365
|
+
"tower-service",
|
|
789
1366
|
]
|
|
790
1367
|
|
|
791
1368
|
[[package]]
|
|
@@ -794,22 +1371,32 @@ version = "0.1.20"
|
|
|
794
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
1372
|
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
796
1373
|
dependencies = [
|
|
1374
|
+
"base64",
|
|
797
1375
|
"bytes",
|
|
1376
|
+
"futures-channel",
|
|
1377
|
+
"futures-util",
|
|
798
1378
|
"http",
|
|
799
1379
|
"http-body",
|
|
800
1380
|
"hyper",
|
|
1381
|
+
"ipnet",
|
|
1382
|
+
"libc",
|
|
1383
|
+
"percent-encoding",
|
|
801
1384
|
"pin-project-lite",
|
|
1385
|
+
"socket2",
|
|
802
1386
|
"tokio",
|
|
1387
|
+
"tower-service",
|
|
1388
|
+
"tracing",
|
|
803
1389
|
]
|
|
804
1390
|
|
|
805
1391
|
[[package]]
|
|
806
1392
|
name = "icu_collections"
|
|
807
|
-
version = "2.
|
|
1393
|
+
version = "2.2.0"
|
|
808
1394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
-
checksum = "
|
|
1395
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
810
1396
|
dependencies = [
|
|
811
1397
|
"displaydoc",
|
|
812
1398
|
"potential_utf",
|
|
1399
|
+
"utf8_iter",
|
|
813
1400
|
"yoke",
|
|
814
1401
|
"zerofrom",
|
|
815
1402
|
"zerovec",
|
|
@@ -817,9 +1404,9 @@ dependencies = [
|
|
|
817
1404
|
|
|
818
1405
|
[[package]]
|
|
819
1406
|
name = "icu_locale_core"
|
|
820
|
-
version = "2.
|
|
1407
|
+
version = "2.2.0"
|
|
821
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
1409
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
823
1410
|
dependencies = [
|
|
824
1411
|
"displaydoc",
|
|
825
1412
|
"litemap",
|
|
@@ -830,9 +1417,9 @@ dependencies = [
|
|
|
830
1417
|
|
|
831
1418
|
[[package]]
|
|
832
1419
|
name = "icu_normalizer"
|
|
833
|
-
version = "2.
|
|
1420
|
+
version = "2.2.0"
|
|
834
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
-
checksum = "
|
|
1422
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
836
1423
|
dependencies = [
|
|
837
1424
|
"icu_collections",
|
|
838
1425
|
"icu_normalizer_data",
|
|
@@ -844,15 +1431,15 @@ dependencies = [
|
|
|
844
1431
|
|
|
845
1432
|
[[package]]
|
|
846
1433
|
name = "icu_normalizer_data"
|
|
847
|
-
version = "2.
|
|
1434
|
+
version = "2.2.0"
|
|
848
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
-
checksum = "
|
|
1436
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
850
1437
|
|
|
851
1438
|
[[package]]
|
|
852
1439
|
name = "icu_properties"
|
|
853
|
-
version = "2.
|
|
1440
|
+
version = "2.2.0"
|
|
854
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
1442
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
856
1443
|
dependencies = [
|
|
857
1444
|
"icu_collections",
|
|
858
1445
|
"icu_locale_core",
|
|
@@ -864,15 +1451,15 @@ dependencies = [
|
|
|
864
1451
|
|
|
865
1452
|
[[package]]
|
|
866
1453
|
name = "icu_properties_data"
|
|
867
|
-
version = "2.
|
|
1454
|
+
version = "2.2.0"
|
|
868
1455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "
|
|
1456
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
870
1457
|
|
|
871
1458
|
[[package]]
|
|
872
1459
|
name = "icu_provider"
|
|
873
|
-
version = "2.
|
|
1460
|
+
version = "2.2.0"
|
|
874
1461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
-
checksum = "
|
|
1462
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
876
1463
|
dependencies = [
|
|
877
1464
|
"displaydoc",
|
|
878
1465
|
"icu_locale_core",
|
|
@@ -883,6 +1470,18 @@ dependencies = [
|
|
|
883
1470
|
"zerovec",
|
|
884
1471
|
]
|
|
885
1472
|
|
|
1473
|
+
[[package]]
|
|
1474
|
+
name = "id-arena"
|
|
1475
|
+
version = "2.3.0"
|
|
1476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1477
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1478
|
+
|
|
1479
|
+
[[package]]
|
|
1480
|
+
name = "ident_case"
|
|
1481
|
+
version = "1.0.1"
|
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1484
|
+
|
|
886
1485
|
[[package]]
|
|
887
1486
|
name = "idna"
|
|
888
1487
|
version = "1.1.0"
|
|
@@ -896,9 +1495,9 @@ dependencies = [
|
|
|
896
1495
|
|
|
897
1496
|
[[package]]
|
|
898
1497
|
name = "idna_adapter"
|
|
899
|
-
version = "1.2.
|
|
1498
|
+
version = "1.2.2"
|
|
900
1499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
-
checksum = "
|
|
1500
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
902
1501
|
dependencies = [
|
|
903
1502
|
"icu_normalizer",
|
|
904
1503
|
"icu_properties",
|
|
@@ -906,31 +1505,48 @@ dependencies = [
|
|
|
906
1505
|
|
|
907
1506
|
[[package]]
|
|
908
1507
|
name = "indexmap"
|
|
909
|
-
version = "2.
|
|
1508
|
+
version = "2.14.0"
|
|
910
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
1510
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
912
1511
|
dependencies = [
|
|
913
1512
|
"equivalent",
|
|
914
|
-
"hashbrown 0.
|
|
1513
|
+
"hashbrown 0.17.1",
|
|
1514
|
+
"serde",
|
|
1515
|
+
"serde_core",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "io-uring"
|
|
1520
|
+
version = "0.7.12"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "4d09b98f7eace8982db770e4408e7470b028ce513ac28fecdc6bf4c30fe92b62"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"bitflags",
|
|
1525
|
+
"cfg-if",
|
|
1526
|
+
"libc",
|
|
915
1527
|
]
|
|
916
1528
|
|
|
917
1529
|
[[package]]
|
|
918
1530
|
name = "ipconfig"
|
|
919
|
-
version = "0.3.
|
|
1531
|
+
version = "0.3.4"
|
|
920
1532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
-
checksum = "
|
|
1533
|
+
checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
|
|
922
1534
|
dependencies = [
|
|
923
|
-
"socket2
|
|
1535
|
+
"socket2",
|
|
924
1536
|
"widestring",
|
|
925
|
-
"windows-
|
|
926
|
-
"
|
|
1537
|
+
"windows-registry",
|
|
1538
|
+
"windows-result",
|
|
1539
|
+
"windows-sys 0.61.2",
|
|
927
1540
|
]
|
|
928
1541
|
|
|
929
1542
|
[[package]]
|
|
930
1543
|
name = "ipnet"
|
|
931
|
-
version = "2.
|
|
1544
|
+
version = "2.12.0"
|
|
932
1545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
-
checksum = "
|
|
1546
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"serde",
|
|
1549
|
+
]
|
|
934
1550
|
|
|
935
1551
|
[[package]]
|
|
936
1552
|
name = "is-terminal"
|
|
@@ -945,27 +1561,67 @@ dependencies = [
|
|
|
945
1561
|
|
|
946
1562
|
[[package]]
|
|
947
1563
|
name = "itertools"
|
|
948
|
-
version = "0.
|
|
1564
|
+
version = "0.13.0"
|
|
949
1565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
-
checksum = "
|
|
1566
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
951
1567
|
dependencies = [
|
|
952
1568
|
"either",
|
|
953
1569
|
]
|
|
954
1570
|
|
|
955
1571
|
[[package]]
|
|
956
|
-
name = "
|
|
957
|
-
version = "0.
|
|
1572
|
+
name = "itoa"
|
|
1573
|
+
version = "1.0.18"
|
|
958
1574
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
-
checksum = "
|
|
1575
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "jni"
|
|
1579
|
+
version = "0.22.4"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
960
1582
|
dependencies = [
|
|
961
|
-
"
|
|
1583
|
+
"cfg-if",
|
|
1584
|
+
"combine",
|
|
1585
|
+
"jni-macros",
|
|
1586
|
+
"jni-sys",
|
|
1587
|
+
"log",
|
|
1588
|
+
"simd_cesu8",
|
|
1589
|
+
"thiserror 2.0.18",
|
|
1590
|
+
"walkdir",
|
|
1591
|
+
"windows-link",
|
|
962
1592
|
]
|
|
963
1593
|
|
|
964
1594
|
[[package]]
|
|
965
|
-
name = "
|
|
966
|
-
version = "
|
|
1595
|
+
name = "jni-macros"
|
|
1596
|
+
version = "0.22.4"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"proc-macro2",
|
|
1601
|
+
"quote",
|
|
1602
|
+
"rustc_version",
|
|
1603
|
+
"simd_cesu8",
|
|
1604
|
+
"syn",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "jni-sys"
|
|
1609
|
+
version = "0.4.1"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"jni-sys-macros",
|
|
1614
|
+
]
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "jni-sys-macros"
|
|
1618
|
+
version = "0.4.1"
|
|
967
1619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
-
checksum = "
|
|
1620
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1621
|
+
dependencies = [
|
|
1622
|
+
"quote",
|
|
1623
|
+
"syn",
|
|
1624
|
+
]
|
|
969
1625
|
|
|
970
1626
|
[[package]]
|
|
971
1627
|
name = "jobserver"
|
|
@@ -979,10 +1635,12 @@ dependencies = [
|
|
|
979
1635
|
|
|
980
1636
|
[[package]]
|
|
981
1637
|
name = "js-sys"
|
|
982
|
-
version = "0.3.
|
|
1638
|
+
version = "0.3.99"
|
|
983
1639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
1640
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
985
1641
|
dependencies = [
|
|
1642
|
+
"cfg-if",
|
|
1643
|
+
"futures-util",
|
|
986
1644
|
"once_cell",
|
|
987
1645
|
"wasm-bindgen",
|
|
988
1646
|
]
|
|
@@ -994,16 +1652,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
994
1652
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
995
1653
|
|
|
996
1654
|
[[package]]
|
|
997
|
-
name = "
|
|
998
|
-
version = "1.
|
|
1655
|
+
name = "leb128fmt"
|
|
1656
|
+
version = "0.1.0"
|
|
999
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
-
checksum = "
|
|
1658
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1001
1659
|
|
|
1002
1660
|
[[package]]
|
|
1003
1661
|
name = "libc"
|
|
1004
|
-
version = "0.2.
|
|
1662
|
+
version = "0.2.186"
|
|
1005
1663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
-
checksum = "
|
|
1664
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1007
1665
|
|
|
1008
1666
|
[[package]]
|
|
1009
1667
|
name = "libloading"
|
|
@@ -1015,11 +1673,23 @@ dependencies = [
|
|
|
1015
1673
|
"windows-link",
|
|
1016
1674
|
]
|
|
1017
1675
|
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "linux-raw-sys"
|
|
1678
|
+
version = "0.12.1"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1681
|
+
|
|
1018
1682
|
[[package]]
|
|
1019
1683
|
name = "litemap"
|
|
1020
|
-
version = "0.8.
|
|
1684
|
+
version = "0.8.2"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "local-event"
|
|
1690
|
+
version = "0.1.2"
|
|
1021
1691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
1692
|
+
checksum = "76dda8459b10a8960dfae91c1c77316fc15e7caf94f9f18794126512a8dc77e5"
|
|
1023
1693
|
|
|
1024
1694
|
[[package]]
|
|
1025
1695
|
name = "lock_api"
|
|
@@ -1032,9 +1702,40 @@ dependencies = [
|
|
|
1032
1702
|
|
|
1033
1703
|
[[package]]
|
|
1034
1704
|
name = "log"
|
|
1035
|
-
version = "0.4.
|
|
1705
|
+
version = "0.4.32"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "loom"
|
|
1711
|
+
version = "0.7.2"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
|
|
1714
|
+
dependencies = [
|
|
1715
|
+
"cfg-if",
|
|
1716
|
+
"generator",
|
|
1717
|
+
"pin-utils",
|
|
1718
|
+
"scoped-tls",
|
|
1719
|
+
"serde",
|
|
1720
|
+
"serde_json",
|
|
1721
|
+
"tracing",
|
|
1722
|
+
"tracing-subscriber",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "lru"
|
|
1727
|
+
version = "0.18.0"
|
|
1036
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
-
checksum = "
|
|
1729
|
+
checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
|
|
1730
|
+
dependencies = [
|
|
1731
|
+
"hashbrown 0.17.1",
|
|
1732
|
+
]
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "lru-slab"
|
|
1736
|
+
version = "0.1.2"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1038
1739
|
|
|
1039
1740
|
[[package]]
|
|
1040
1741
|
name = "magnus"
|
|
@@ -1059,11 +1760,20 @@ dependencies = [
|
|
|
1059
1760
|
"syn",
|
|
1060
1761
|
]
|
|
1061
1762
|
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "matchers"
|
|
1765
|
+
version = "0.2.0"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1768
|
+
dependencies = [
|
|
1769
|
+
"regex-automata",
|
|
1770
|
+
]
|
|
1771
|
+
|
|
1062
1772
|
[[package]]
|
|
1063
1773
|
name = "memchr"
|
|
1064
|
-
version = "2.8.
|
|
1774
|
+
version = "2.8.1"
|
|
1065
1775
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
-
checksum = "
|
|
1776
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
1067
1777
|
|
|
1068
1778
|
[[package]]
|
|
1069
1779
|
name = "mime"
|
|
@@ -1099,20 +1809,26 @@ dependencies = [
|
|
|
1099
1809
|
|
|
1100
1810
|
[[package]]
|
|
1101
1811
|
name = "mio"
|
|
1102
|
-
version = "1.
|
|
1812
|
+
version = "1.2.1"
|
|
1103
1813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
-
checksum = "
|
|
1814
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1105
1815
|
dependencies = [
|
|
1106
1816
|
"libc",
|
|
1107
1817
|
"wasi",
|
|
1108
1818
|
"windows-sys 0.61.2",
|
|
1109
1819
|
]
|
|
1110
1820
|
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "mod_use"
|
|
1823
|
+
version = "0.2.3"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "21909324aa58f5c284d91cac514c6d081210901dc372d7c8ea6a9d7e0406097a"
|
|
1826
|
+
|
|
1111
1827
|
[[package]]
|
|
1112
1828
|
name = "moka"
|
|
1113
|
-
version = "0.12.
|
|
1829
|
+
version = "0.12.15"
|
|
1114
1830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1115
|
-
checksum = "
|
|
1831
|
+
checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
|
|
1116
1832
|
dependencies = [
|
|
1117
1833
|
"crossbeam-channel",
|
|
1118
1834
|
"crossbeam-epoch",
|
|
@@ -1125,6 +1841,12 @@ dependencies = [
|
|
|
1125
1841
|
"uuid",
|
|
1126
1842
|
]
|
|
1127
1843
|
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "ndk-context"
|
|
1846
|
+
version = "0.1.1"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
1849
|
+
|
|
1128
1850
|
[[package]]
|
|
1129
1851
|
name = "nom"
|
|
1130
1852
|
version = "7.1.3"
|
|
@@ -1135,6 +1857,15 @@ dependencies = [
|
|
|
1135
1857
|
"minimal-lexical",
|
|
1136
1858
|
]
|
|
1137
1859
|
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "ntapi"
|
|
1862
|
+
version = "0.4.3"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
1865
|
+
dependencies = [
|
|
1866
|
+
"winapi",
|
|
1867
|
+
]
|
|
1868
|
+
|
|
1138
1869
|
[[package]]
|
|
1139
1870
|
name = "nu-ansi-term"
|
|
1140
1871
|
version = "0.50.3"
|
|
@@ -1146,20 +1877,64 @@ dependencies = [
|
|
|
1146
1877
|
|
|
1147
1878
|
[[package]]
|
|
1148
1879
|
name = "num-conv"
|
|
1149
|
-
version = "0.2.
|
|
1880
|
+
version = "0.2.2"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1883
|
+
|
|
1884
|
+
[[package]]
|
|
1885
|
+
name = "num-traits"
|
|
1886
|
+
version = "0.2.19"
|
|
1887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1889
|
+
dependencies = [
|
|
1890
|
+
"autocfg",
|
|
1891
|
+
]
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "num_cpus"
|
|
1895
|
+
version = "1.17.0"
|
|
1896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1898
|
+
dependencies = [
|
|
1899
|
+
"hermit-abi",
|
|
1900
|
+
"libc",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "objc2-core-foundation"
|
|
1905
|
+
version = "0.3.2"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"bitflags",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "objc2-io-kit"
|
|
1914
|
+
version = "0.3.2"
|
|
1150
1915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "
|
|
1916
|
+
checksum = "33fafba39597d6dc1fb709123dfa8289d39406734be322956a69f0931c73bb15"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"libc",
|
|
1919
|
+
"objc2-core-foundation",
|
|
1920
|
+
]
|
|
1152
1921
|
|
|
1153
1922
|
[[package]]
|
|
1154
1923
|
name = "once_cell"
|
|
1155
|
-
version = "1.21.
|
|
1924
|
+
version = "1.21.4"
|
|
1156
1925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
-
checksum = "
|
|
1926
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1158
1927
|
dependencies = [
|
|
1159
1928
|
"critical-section",
|
|
1160
1929
|
"portable-atomic",
|
|
1161
1930
|
]
|
|
1162
1931
|
|
|
1932
|
+
[[package]]
|
|
1933
|
+
name = "oorandom"
|
|
1934
|
+
version = "11.1.5"
|
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1937
|
+
|
|
1163
1938
|
[[package]]
|
|
1164
1939
|
name = "openssl-macros"
|
|
1165
1940
|
version = "0.1.1"
|
|
@@ -1171,6 +1946,22 @@ dependencies = [
|
|
|
1171
1946
|
"syn",
|
|
1172
1947
|
]
|
|
1173
1948
|
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "openssl-probe"
|
|
1951
|
+
version = "0.2.1"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "page_size"
|
|
1957
|
+
version = "0.6.0"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"libc",
|
|
1962
|
+
"winapi",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1174
1965
|
[[package]]
|
|
1175
1966
|
name = "parking_lot"
|
|
1176
1967
|
version = "0.12.5"
|
|
@@ -1194,6 +1985,12 @@ dependencies = [
|
|
|
1194
1985
|
"windows-link",
|
|
1195
1986
|
]
|
|
1196
1987
|
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "pastey"
|
|
1990
|
+
version = "0.2.3"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
|
|
1993
|
+
|
|
1197
1994
|
[[package]]
|
|
1198
1995
|
name = "percent-encoding"
|
|
1199
1996
|
version = "2.3.2"
|
|
@@ -1202,9 +1999,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
1202
1999
|
|
|
1203
2000
|
[[package]]
|
|
1204
2001
|
name = "pin-project-lite"
|
|
1205
|
-
version = "0.2.
|
|
2002
|
+
version = "0.2.17"
|
|
1206
2003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
-
checksum = "
|
|
2004
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1208
2005
|
|
|
1209
2006
|
[[package]]
|
|
1210
2007
|
name = "pin-utils"
|
|
@@ -1214,9 +2011,51 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1214
2011
|
|
|
1215
2012
|
[[package]]
|
|
1216
2013
|
name = "pkg-config"
|
|
1217
|
-
version = "0.3.
|
|
2014
|
+
version = "0.3.33"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "plotters"
|
|
2020
|
+
version = "0.3.7"
|
|
1218
2021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
-
checksum = "
|
|
2022
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2023
|
+
dependencies = [
|
|
2024
|
+
"num-traits",
|
|
2025
|
+
"plotters-backend",
|
|
2026
|
+
"plotters-svg",
|
|
2027
|
+
"wasm-bindgen",
|
|
2028
|
+
"web-sys",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "plotters-backend"
|
|
2033
|
+
version = "0.3.7"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2036
|
+
|
|
2037
|
+
[[package]]
|
|
2038
|
+
name = "plotters-svg"
|
|
2039
|
+
version = "0.3.7"
|
|
2040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2042
|
+
dependencies = [
|
|
2043
|
+
"plotters-backend",
|
|
2044
|
+
]
|
|
2045
|
+
|
|
2046
|
+
[[package]]
|
|
2047
|
+
name = "polling"
|
|
2048
|
+
version = "3.11.0"
|
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
2051
|
+
dependencies = [
|
|
2052
|
+
"cfg-if",
|
|
2053
|
+
"concurrent-queue",
|
|
2054
|
+
"hermit-abi",
|
|
2055
|
+
"pin-project-lite",
|
|
2056
|
+
"rustix",
|
|
2057
|
+
"windows-sys 0.61.2",
|
|
2058
|
+
]
|
|
1220
2059
|
|
|
1221
2060
|
[[package]]
|
|
1222
2061
|
name = "portable-atomic"
|
|
@@ -1226,9 +2065,9 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
|
1226
2065
|
|
|
1227
2066
|
[[package]]
|
|
1228
2067
|
name = "potential_utf"
|
|
1229
|
-
version = "0.1.
|
|
2068
|
+
version = "0.1.5"
|
|
1230
2069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
-
checksum = "
|
|
2070
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1232
2071
|
dependencies = [
|
|
1233
2072
|
"zerovec",
|
|
1234
2073
|
]
|
|
@@ -1248,6 +2087,17 @@ dependencies = [
|
|
|
1248
2087
|
"zerocopy",
|
|
1249
2088
|
]
|
|
1250
2089
|
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "prefix-trie"
|
|
2092
|
+
version = "0.8.4"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"either",
|
|
2097
|
+
"ipnet",
|
|
2098
|
+
"num-traits",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
1251
2101
|
[[package]]
|
|
1252
2102
|
name = "pretty_env_logger"
|
|
1253
2103
|
version = "0.5.0"
|
|
@@ -1258,6 +2108,25 @@ dependencies = [
|
|
|
1258
2108
|
"log",
|
|
1259
2109
|
]
|
|
1260
2110
|
|
|
2111
|
+
[[package]]
|
|
2112
|
+
name = "prettyplease"
|
|
2113
|
+
version = "0.2.37"
|
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2116
|
+
dependencies = [
|
|
2117
|
+
"proc-macro2",
|
|
2118
|
+
"syn",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "proc-macro-crate"
|
|
2123
|
+
version = "3.5.0"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"toml_edit",
|
|
2128
|
+
]
|
|
2129
|
+
|
|
1261
2130
|
[[package]]
|
|
1262
2131
|
name = "proc-macro2"
|
|
1263
2132
|
version = "1.0.106"
|
|
@@ -1267,11 +2136,67 @@ dependencies = [
|
|
|
1267
2136
|
"unicode-ident",
|
|
1268
2137
|
]
|
|
1269
2138
|
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "quinn"
|
|
2141
|
+
version = "0.11.9"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2144
|
+
dependencies = [
|
|
2145
|
+
"bytes",
|
|
2146
|
+
"cfg_aliases",
|
|
2147
|
+
"pin-project-lite",
|
|
2148
|
+
"quinn-proto",
|
|
2149
|
+
"quinn-udp",
|
|
2150
|
+
"rustc-hash",
|
|
2151
|
+
"rustls",
|
|
2152
|
+
"socket2",
|
|
2153
|
+
"thiserror 2.0.18",
|
|
2154
|
+
"tokio",
|
|
2155
|
+
"tracing",
|
|
2156
|
+
"web-time",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "quinn-proto"
|
|
2161
|
+
version = "0.11.14"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"aws-lc-rs",
|
|
2166
|
+
"bytes",
|
|
2167
|
+
"getrandom 0.3.4",
|
|
2168
|
+
"lru-slab",
|
|
2169
|
+
"rand 0.9.4",
|
|
2170
|
+
"ring",
|
|
2171
|
+
"rustc-hash",
|
|
2172
|
+
"rustls",
|
|
2173
|
+
"rustls-pki-types",
|
|
2174
|
+
"slab",
|
|
2175
|
+
"thiserror 2.0.18",
|
|
2176
|
+
"tinyvec",
|
|
2177
|
+
"tracing",
|
|
2178
|
+
"web-time",
|
|
2179
|
+
]
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "quinn-udp"
|
|
2183
|
+
version = "0.5.14"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2186
|
+
dependencies = [
|
|
2187
|
+
"cfg_aliases",
|
|
2188
|
+
"libc",
|
|
2189
|
+
"once_cell",
|
|
2190
|
+
"socket2",
|
|
2191
|
+
"tracing",
|
|
2192
|
+
"windows-sys 0.60.2",
|
|
2193
|
+
]
|
|
2194
|
+
|
|
1270
2195
|
[[package]]
|
|
1271
2196
|
name = "quote"
|
|
1272
|
-
version = "1.0.
|
|
2197
|
+
version = "1.0.45"
|
|
1273
2198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
-
checksum = "
|
|
2199
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1275
2200
|
dependencies = [
|
|
1276
2201
|
"proc-macro2",
|
|
1277
2202
|
]
|
|
@@ -1282,14 +2207,31 @@ version = "5.3.0"
|
|
|
1282
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
2208
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1284
2209
|
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "r-efi"
|
|
2212
|
+
version = "6.0.0"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2215
|
+
|
|
2216
|
+
[[package]]
|
|
2217
|
+
name = "rand"
|
|
2218
|
+
version = "0.9.4"
|
|
2219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2221
|
+
dependencies = [
|
|
2222
|
+
"rand_chacha",
|
|
2223
|
+
"rand_core 0.9.5",
|
|
2224
|
+
]
|
|
2225
|
+
|
|
1285
2226
|
[[package]]
|
|
1286
2227
|
name = "rand"
|
|
1287
|
-
version = "0.
|
|
2228
|
+
version = "0.10.1"
|
|
1288
2229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
2230
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
1290
2231
|
dependencies = [
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
2232
|
+
"chacha20",
|
|
2233
|
+
"getrandom 0.4.2",
|
|
2234
|
+
"rand_core 0.10.1",
|
|
1293
2235
|
]
|
|
1294
2236
|
|
|
1295
2237
|
[[package]]
|
|
@@ -1299,7 +2241,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1299
2241
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1300
2242
|
dependencies = [
|
|
1301
2243
|
"ppv-lite86",
|
|
1302
|
-
"rand_core",
|
|
2244
|
+
"rand_core 0.9.5",
|
|
1303
2245
|
]
|
|
1304
2246
|
|
|
1305
2247
|
[[package]]
|
|
@@ -1311,22 +2253,48 @@ dependencies = [
|
|
|
1311
2253
|
"getrandom 0.3.4",
|
|
1312
2254
|
]
|
|
1313
2255
|
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "rand_core"
|
|
2258
|
+
version = "0.10.1"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2261
|
+
|
|
2262
|
+
[[package]]
|
|
2263
|
+
name = "rayon"
|
|
2264
|
+
version = "1.12.0"
|
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
2267
|
+
dependencies = [
|
|
2268
|
+
"either",
|
|
2269
|
+
"rayon-core",
|
|
2270
|
+
]
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "rayon-core"
|
|
2274
|
+
version = "1.13.0"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2277
|
+
dependencies = [
|
|
2278
|
+
"crossbeam-deque",
|
|
2279
|
+
"crossbeam-utils",
|
|
2280
|
+
]
|
|
2281
|
+
|
|
1314
2282
|
[[package]]
|
|
1315
2283
|
name = "rb-sys"
|
|
1316
|
-
version = "0.9.
|
|
2284
|
+
version = "0.9.128"
|
|
1317
2285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "
|
|
2286
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
1319
2287
|
dependencies = [
|
|
1320
2288
|
"rb-sys-build",
|
|
1321
2289
|
]
|
|
1322
2290
|
|
|
1323
2291
|
[[package]]
|
|
1324
2292
|
name = "rb-sys-build"
|
|
1325
|
-
version = "0.9.
|
|
2293
|
+
version = "0.9.128"
|
|
1326
2294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
-
checksum = "
|
|
2295
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
1328
2296
|
dependencies = [
|
|
1329
|
-
"bindgen
|
|
2297
|
+
"bindgen",
|
|
1330
2298
|
"lazy_static",
|
|
1331
2299
|
"proc-macro2",
|
|
1332
2300
|
"quote",
|
|
@@ -1375,9 +2343,48 @@ dependencies = [
|
|
|
1375
2343
|
|
|
1376
2344
|
[[package]]
|
|
1377
2345
|
name = "regex-syntax"
|
|
1378
|
-
version = "0.8.
|
|
2346
|
+
version = "0.8.10"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2349
|
+
|
|
2350
|
+
[[package]]
|
|
2351
|
+
name = "reqwest"
|
|
2352
|
+
version = "0.13.4"
|
|
1379
2353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1380
|
-
checksum = "
|
|
2354
|
+
checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
|
|
2355
|
+
dependencies = [
|
|
2356
|
+
"base64",
|
|
2357
|
+
"bytes",
|
|
2358
|
+
"futures-core",
|
|
2359
|
+
"futures-util",
|
|
2360
|
+
"h2",
|
|
2361
|
+
"http",
|
|
2362
|
+
"http-body",
|
|
2363
|
+
"http-body-util",
|
|
2364
|
+
"hyper",
|
|
2365
|
+
"hyper-rustls",
|
|
2366
|
+
"hyper-util",
|
|
2367
|
+
"js-sys",
|
|
2368
|
+
"log",
|
|
2369
|
+
"percent-encoding",
|
|
2370
|
+
"pin-project-lite",
|
|
2371
|
+
"quinn",
|
|
2372
|
+
"rustls",
|
|
2373
|
+
"rustls-pki-types",
|
|
2374
|
+
"rustls-platform-verifier",
|
|
2375
|
+
"sync_wrapper",
|
|
2376
|
+
"tokio",
|
|
2377
|
+
"tokio-rustls",
|
|
2378
|
+
"tokio-util",
|
|
2379
|
+
"tower",
|
|
2380
|
+
"tower-http",
|
|
2381
|
+
"tower-service",
|
|
2382
|
+
"url",
|
|
2383
|
+
"wasm-bindgen",
|
|
2384
|
+
"wasm-bindgen-futures",
|
|
2385
|
+
"wasm-streams",
|
|
2386
|
+
"web-sys",
|
|
2387
|
+
]
|
|
1381
2388
|
|
|
1382
2389
|
[[package]]
|
|
1383
2390
|
name = "resolv-conf"
|
|
@@ -1401,21 +2408,106 @@ dependencies = [
|
|
|
1401
2408
|
|
|
1402
2409
|
[[package]]
|
|
1403
2410
|
name = "rustc-hash"
|
|
1404
|
-
version = "
|
|
2411
|
+
version = "2.1.2"
|
|
1405
2412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
-
checksum = "
|
|
2413
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1407
2414
|
|
|
1408
2415
|
[[package]]
|
|
1409
|
-
name = "
|
|
1410
|
-
version = "
|
|
2416
|
+
name = "rustc_version"
|
|
2417
|
+
version = "0.4.1"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"semver",
|
|
2422
|
+
]
|
|
2423
|
+
|
|
2424
|
+
[[package]]
|
|
2425
|
+
name = "rustix"
|
|
2426
|
+
version = "1.1.4"
|
|
2427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2429
|
+
dependencies = [
|
|
2430
|
+
"bitflags",
|
|
2431
|
+
"errno",
|
|
2432
|
+
"libc",
|
|
2433
|
+
"linux-raw-sys",
|
|
2434
|
+
"windows-sys 0.61.2",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "rustls"
|
|
2439
|
+
version = "0.23.40"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"aws-lc-rs",
|
|
2444
|
+
"once_cell",
|
|
2445
|
+
"rustls-pki-types",
|
|
2446
|
+
"rustls-webpki",
|
|
2447
|
+
"subtle",
|
|
2448
|
+
"zeroize",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "rustls-native-certs"
|
|
2453
|
+
version = "0.8.4"
|
|
1411
2454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
-
checksum = "
|
|
2455
|
+
checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
|
|
2456
|
+
dependencies = [
|
|
2457
|
+
"openssl-probe",
|
|
2458
|
+
"rustls-pki-types",
|
|
2459
|
+
"schannel",
|
|
2460
|
+
"security-framework",
|
|
2461
|
+
]
|
|
1413
2462
|
|
|
1414
2463
|
[[package]]
|
|
1415
2464
|
name = "rustls-pki-types"
|
|
1416
|
-
version = "1.14.
|
|
2465
|
+
version = "1.14.1"
|
|
2466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2467
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2468
|
+
dependencies = [
|
|
2469
|
+
"web-time",
|
|
2470
|
+
"zeroize",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "rustls-platform-verifier"
|
|
2475
|
+
version = "0.7.0"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"core-foundation 0.10.1",
|
|
2480
|
+
"core-foundation-sys",
|
|
2481
|
+
"jni",
|
|
2482
|
+
"log",
|
|
2483
|
+
"once_cell",
|
|
2484
|
+
"rustls",
|
|
2485
|
+
"rustls-native-certs",
|
|
2486
|
+
"rustls-platform-verifier-android",
|
|
2487
|
+
"rustls-webpki",
|
|
2488
|
+
"security-framework",
|
|
2489
|
+
"security-framework-sys",
|
|
2490
|
+
"webpki-root-certs",
|
|
2491
|
+
"windows-sys 0.61.2",
|
|
2492
|
+
]
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "rustls-platform-verifier-android"
|
|
2496
|
+
version = "0.1.1"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "rustls-webpki"
|
|
2502
|
+
version = "0.103.13"
|
|
1417
2503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
-
checksum = "
|
|
2504
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2505
|
+
dependencies = [
|
|
2506
|
+
"aws-lc-rs",
|
|
2507
|
+
"ring",
|
|
2508
|
+
"rustls-pki-types",
|
|
2509
|
+
"untrusted",
|
|
2510
|
+
]
|
|
1419
2511
|
|
|
1420
2512
|
[[package]]
|
|
1421
2513
|
name = "rustversion"
|
|
@@ -1430,22 +2522,70 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1430
2522
|
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1431
2523
|
|
|
1432
2524
|
[[package]]
|
|
1433
|
-
name = "
|
|
1434
|
-
version = "0.
|
|
2525
|
+
name = "same-file"
|
|
2526
|
+
version = "1.0.6"
|
|
1435
2527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
-
checksum = "
|
|
2528
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1437
2529
|
dependencies = [
|
|
1438
|
-
"
|
|
1439
|
-
|
|
1440
|
-
|
|
2530
|
+
"winapi-util",
|
|
2531
|
+
]
|
|
2532
|
+
|
|
2533
|
+
[[package]]
|
|
2534
|
+
name = "schannel"
|
|
2535
|
+
version = "0.1.29"
|
|
2536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2537
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2538
|
+
dependencies = [
|
|
2539
|
+
"windows-sys 0.61.2",
|
|
1441
2540
|
]
|
|
1442
2541
|
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "scoped-tls"
|
|
2544
|
+
version = "1.0.1"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
2547
|
+
|
|
1443
2548
|
[[package]]
|
|
1444
2549
|
name = "scopeguard"
|
|
1445
2550
|
version = "1.2.0"
|
|
1446
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
2552
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1448
2553
|
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "security-framework"
|
|
2556
|
+
version = "3.7.0"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"bitflags",
|
|
2561
|
+
"core-foundation 0.10.1",
|
|
2562
|
+
"core-foundation-sys",
|
|
2563
|
+
"libc",
|
|
2564
|
+
"security-framework-sys",
|
|
2565
|
+
]
|
|
2566
|
+
|
|
2567
|
+
[[package]]
|
|
2568
|
+
name = "security-framework-sys"
|
|
2569
|
+
version = "2.17.0"
|
|
2570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2572
|
+
dependencies = [
|
|
2573
|
+
"core-foundation-sys",
|
|
2574
|
+
"libc",
|
|
2575
|
+
]
|
|
2576
|
+
|
|
2577
|
+
[[package]]
|
|
2578
|
+
name = "semver"
|
|
2579
|
+
version = "1.0.28"
|
|
2580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2581
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2582
|
+
|
|
2583
|
+
[[package]]
|
|
2584
|
+
name = "send_wrapper"
|
|
2585
|
+
version = "0.6.0"
|
|
2586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
2588
|
+
|
|
1449
2589
|
[[package]]
|
|
1450
2590
|
name = "seq-macro"
|
|
1451
2591
|
version = "0.3.6"
|
|
@@ -1483,28 +2623,29 @@ dependencies = [
|
|
|
1483
2623
|
]
|
|
1484
2624
|
|
|
1485
2625
|
[[package]]
|
|
1486
|
-
name = "
|
|
1487
|
-
version = "
|
|
2626
|
+
name = "serde_html_form"
|
|
2627
|
+
version = "0.4.0"
|
|
1488
2628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
-
checksum = "
|
|
2629
|
+
checksum = "0946d52b4b7e28823148aebbeceb901012c595ad737920d504fa8634bb099e6f"
|
|
1490
2630
|
dependencies = [
|
|
2631
|
+
"form_urlencoded",
|
|
2632
|
+
"indexmap",
|
|
1491
2633
|
"itoa",
|
|
1492
|
-
"
|
|
1493
|
-
"serde",
|
|
2634
|
+
"ryu",
|
|
1494
2635
|
"serde_core",
|
|
1495
|
-
"zmij",
|
|
1496
2636
|
]
|
|
1497
2637
|
|
|
1498
2638
|
[[package]]
|
|
1499
|
-
name = "
|
|
1500
|
-
version = "0.
|
|
2639
|
+
name = "serde_json"
|
|
2640
|
+
version = "1.0.150"
|
|
1501
2641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
2642
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1503
2643
|
dependencies = [
|
|
1504
|
-
"form_urlencoded",
|
|
1505
2644
|
"itoa",
|
|
1506
|
-
"
|
|
2645
|
+
"memchr",
|
|
1507
2646
|
"serde",
|
|
2647
|
+
"serde_core",
|
|
2648
|
+
"zmij",
|
|
1508
2649
|
]
|
|
1509
2650
|
|
|
1510
2651
|
[[package]]
|
|
@@ -1514,7 +2655,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1514
2655
|
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1515
2656
|
dependencies = [
|
|
1516
2657
|
"cfg-if",
|
|
1517
|
-
"cpufeatures",
|
|
2658
|
+
"cpufeatures 0.2.17",
|
|
1518
2659
|
"digest",
|
|
1519
2660
|
]
|
|
1520
2661
|
|
|
@@ -1539,6 +2680,12 @@ version = "1.3.0"
|
|
|
1539
2680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
2681
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1541
2682
|
|
|
2683
|
+
[[package]]
|
|
2684
|
+
name = "shlex"
|
|
2685
|
+
version = "2.0.1"
|
|
2686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2687
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2688
|
+
|
|
1542
2689
|
[[package]]
|
|
1543
2690
|
name = "signal-hook-registry"
|
|
1544
2691
|
version = "1.4.8"
|
|
@@ -1551,9 +2698,25 @@ dependencies = [
|
|
|
1551
2698
|
|
|
1552
2699
|
[[package]]
|
|
1553
2700
|
name = "simd-adler32"
|
|
1554
|
-
version = "0.3.
|
|
2701
|
+
version = "0.3.9"
|
|
2702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2704
|
+
|
|
2705
|
+
[[package]]
|
|
2706
|
+
name = "simd_cesu8"
|
|
2707
|
+
version = "1.1.1"
|
|
2708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
2710
|
+
dependencies = [
|
|
2711
|
+
"rustc_version",
|
|
2712
|
+
"simdutf8",
|
|
2713
|
+
]
|
|
2714
|
+
|
|
2715
|
+
[[package]]
|
|
2716
|
+
name = "simdutf8"
|
|
2717
|
+
version = "0.1.5"
|
|
1555
2718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
-
checksum = "
|
|
2719
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1557
2720
|
|
|
1558
2721
|
[[package]]
|
|
1559
2722
|
name = "slab"
|
|
@@ -1561,6 +2724,15 @@ version = "0.4.12"
|
|
|
1561
2724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
2725
|
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1563
2726
|
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "slotmap"
|
|
2729
|
+
version = "1.1.1"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
2732
|
+
dependencies = [
|
|
2733
|
+
"version_check",
|
|
2734
|
+
]
|
|
2735
|
+
|
|
1564
2736
|
[[package]]
|
|
1565
2737
|
name = "smallvec"
|
|
1566
2738
|
version = "1.15.1"
|
|
@@ -1569,22 +2741,21 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1569
2741
|
|
|
1570
2742
|
[[package]]
|
|
1571
2743
|
name = "socket2"
|
|
1572
|
-
version = "0.
|
|
2744
|
+
version = "0.6.4"
|
|
1573
2745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
-
checksum = "
|
|
2746
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1575
2747
|
dependencies = [
|
|
1576
2748
|
"libc",
|
|
1577
|
-
"windows-sys 0.
|
|
2749
|
+
"windows-sys 0.61.2",
|
|
1578
2750
|
]
|
|
1579
2751
|
|
|
1580
2752
|
[[package]]
|
|
1581
|
-
name = "
|
|
1582
|
-
version = "0.
|
|
2753
|
+
name = "spin"
|
|
2754
|
+
version = "0.9.8"
|
|
1583
2755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
-
checksum = "
|
|
2756
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1585
2757
|
dependencies = [
|
|
1586
|
-
"
|
|
1587
|
-
"windows-sys 0.60.2",
|
|
2758
|
+
"lock_api",
|
|
1588
2759
|
]
|
|
1589
2760
|
|
|
1590
2761
|
[[package]]
|
|
@@ -1593,11 +2764,23 @@ version = "1.2.1"
|
|
|
1593
2764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
2765
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1595
2766
|
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "strsim"
|
|
2769
|
+
version = "0.11.1"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2772
|
+
|
|
2773
|
+
[[package]]
|
|
2774
|
+
name = "subtle"
|
|
2775
|
+
version = "2.6.1"
|
|
2776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2778
|
+
|
|
1596
2779
|
[[package]]
|
|
1597
2780
|
name = "syn"
|
|
1598
|
-
version = "2.0.
|
|
2781
|
+
version = "2.0.117"
|
|
1599
2782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
-
checksum = "
|
|
2783
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1601
2784
|
dependencies = [
|
|
1602
2785
|
"proc-macro2",
|
|
1603
2786
|
"quote",
|
|
@@ -1613,6 +2796,18 @@ dependencies = [
|
|
|
1613
2796
|
"futures-core",
|
|
1614
2797
|
]
|
|
1615
2798
|
|
|
2799
|
+
[[package]]
|
|
2800
|
+
name = "synchrony"
|
|
2801
|
+
version = "0.1.8"
|
|
2802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
+
checksum = "416090a4d8f6358526df5f9f65dfe28750b8b7bfd1fd8a5620f483fc4a75722c"
|
|
2804
|
+
dependencies = [
|
|
2805
|
+
"event-listener",
|
|
2806
|
+
"futures-util",
|
|
2807
|
+
"local-event",
|
|
2808
|
+
"loom",
|
|
2809
|
+
]
|
|
2810
|
+
|
|
1616
2811
|
[[package]]
|
|
1617
2812
|
name = "synstructure"
|
|
1618
2813
|
version = "0.13.2"
|
|
@@ -1624,6 +2819,20 @@ dependencies = [
|
|
|
1624
2819
|
"syn",
|
|
1625
2820
|
]
|
|
1626
2821
|
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "sysinfo"
|
|
2824
|
+
version = "0.39.3"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "21d0d938c10fcda3e897e28aaddf4ab462375d411f4378cd63b1c945f69aba96"
|
|
2827
|
+
dependencies = [
|
|
2828
|
+
"libc",
|
|
2829
|
+
"memchr",
|
|
2830
|
+
"ntapi",
|
|
2831
|
+
"objc2-core-foundation",
|
|
2832
|
+
"objc2-io-kit",
|
|
2833
|
+
"windows",
|
|
2834
|
+
]
|
|
2835
|
+
|
|
1627
2836
|
[[package]]
|
|
1628
2837
|
name = "system-configuration"
|
|
1629
2838
|
version = "0.7.0"
|
|
@@ -1631,7 +2840,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1631
2840
|
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1632
2841
|
dependencies = [
|
|
1633
2842
|
"bitflags",
|
|
1634
|
-
"core-foundation",
|
|
2843
|
+
"core-foundation 0.9.4",
|
|
1635
2844
|
"system-configuration-sys",
|
|
1636
2845
|
]
|
|
1637
2846
|
|
|
@@ -1660,6 +2869,15 @@ dependencies = [
|
|
|
1660
2869
|
"winapi-util",
|
|
1661
2870
|
]
|
|
1662
2871
|
|
|
2872
|
+
[[package]]
|
|
2873
|
+
name = "thin-cell"
|
|
2874
|
+
version = "0.2.1"
|
|
2875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2876
|
+
checksum = "a9d3c47fea6e344ef1ac01be266c27945ec30ae8049c3292c897f0878de5c784"
|
|
2877
|
+
dependencies = [
|
|
2878
|
+
"synchrony",
|
|
2879
|
+
]
|
|
2880
|
+
|
|
1663
2881
|
[[package]]
|
|
1664
2882
|
name = "thiserror"
|
|
1665
2883
|
version = "1.0.69"
|
|
@@ -1742,19 +2960,29 @@ dependencies = [
|
|
|
1742
2960
|
|
|
1743
2961
|
[[package]]
|
|
1744
2962
|
name = "tinystr"
|
|
1745
|
-
version = "0.8.
|
|
2963
|
+
version = "0.8.3"
|
|
1746
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
-
checksum = "
|
|
2965
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1748
2966
|
dependencies = [
|
|
1749
2967
|
"displaydoc",
|
|
1750
2968
|
"zerovec",
|
|
1751
2969
|
]
|
|
1752
2970
|
|
|
2971
|
+
[[package]]
|
|
2972
|
+
name = "tinytemplate"
|
|
2973
|
+
version = "1.2.1"
|
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2976
|
+
dependencies = [
|
|
2977
|
+
"serde",
|
|
2978
|
+
"serde_json",
|
|
2979
|
+
]
|
|
2980
|
+
|
|
1753
2981
|
[[package]]
|
|
1754
2982
|
name = "tinyvec"
|
|
1755
|
-
version = "1.
|
|
2983
|
+
version = "1.11.0"
|
|
1756
2984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
-
checksum = "
|
|
2985
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1758
2986
|
dependencies = [
|
|
1759
2987
|
"tinyvec_macros",
|
|
1760
2988
|
]
|
|
@@ -1767,9 +2995,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1767
2995
|
|
|
1768
2996
|
[[package]]
|
|
1769
2997
|
name = "tokio"
|
|
1770
|
-
version = "1.
|
|
2998
|
+
version = "1.52.3"
|
|
1771
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
-
checksum = "
|
|
3000
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1773
3001
|
dependencies = [
|
|
1774
3002
|
"bytes",
|
|
1775
3003
|
"libc",
|
|
@@ -1777,37 +3005,47 @@ dependencies = [
|
|
|
1777
3005
|
"parking_lot",
|
|
1778
3006
|
"pin-project-lite",
|
|
1779
3007
|
"signal-hook-registry",
|
|
1780
|
-
"socket2
|
|
3008
|
+
"socket2",
|
|
1781
3009
|
"tokio-macros",
|
|
1782
3010
|
"windows-sys 0.61.2",
|
|
1783
3011
|
]
|
|
1784
3012
|
|
|
1785
3013
|
[[package]]
|
|
1786
|
-
name = "tokio-
|
|
1787
|
-
version = "
|
|
3014
|
+
name = "tokio-btls"
|
|
3015
|
+
version = "0.5.6"
|
|
1788
3016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
-
checksum = "
|
|
3017
|
+
checksum = "2e1fd638ec35427faf3b8f412e0fdd6fae76591d79dba40f38fa667d22bc44dd"
|
|
1790
3018
|
dependencies = [
|
|
1791
|
-
"
|
|
3019
|
+
"btls",
|
|
1792
3020
|
"tokio",
|
|
1793
3021
|
]
|
|
1794
3022
|
|
|
1795
3023
|
[[package]]
|
|
1796
3024
|
name = "tokio-macros"
|
|
1797
|
-
version = "2.
|
|
3025
|
+
version = "2.7.0"
|
|
1798
3026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
-
checksum = "
|
|
3027
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1800
3028
|
dependencies = [
|
|
1801
3029
|
"proc-macro2",
|
|
1802
3030
|
"quote",
|
|
1803
3031
|
"syn",
|
|
1804
3032
|
]
|
|
1805
3033
|
|
|
3034
|
+
[[package]]
|
|
3035
|
+
name = "tokio-rustls"
|
|
3036
|
+
version = "0.26.4"
|
|
3037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3039
|
+
dependencies = [
|
|
3040
|
+
"rustls",
|
|
3041
|
+
"tokio",
|
|
3042
|
+
]
|
|
3043
|
+
|
|
1806
3044
|
[[package]]
|
|
1807
3045
|
name = "tokio-socks"
|
|
1808
|
-
version = "0.5.
|
|
3046
|
+
version = "0.5.3"
|
|
1809
3047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "
|
|
3048
|
+
checksum = "a7e2948f60dbe26b35f2c7fb74ac2854c1fddded0fe9d7548fcc674a246f7615"
|
|
1811
3049
|
dependencies = [
|
|
1812
3050
|
"either",
|
|
1813
3051
|
"futures-util",
|
|
@@ -1839,9 +3077,9 @@ dependencies = [
|
|
|
1839
3077
|
|
|
1840
3078
|
[[package]]
|
|
1841
3079
|
name = "tokio-tungstenite"
|
|
1842
|
-
version = "0.
|
|
3080
|
+
version = "0.29.0"
|
|
1843
3081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
-
checksum = "
|
|
3082
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
1845
3083
|
dependencies = [
|
|
1846
3084
|
"futures-util",
|
|
1847
3085
|
"log",
|
|
@@ -1862,6 +3100,36 @@ dependencies = [
|
|
|
1862
3100
|
"tokio",
|
|
1863
3101
|
]
|
|
1864
3102
|
|
|
3103
|
+
[[package]]
|
|
3104
|
+
name = "toml_datetime"
|
|
3105
|
+
version = "1.1.1+spec-1.1.0"
|
|
3106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
3108
|
+
dependencies = [
|
|
3109
|
+
"serde_core",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "toml_edit"
|
|
3114
|
+
version = "0.25.12+spec-1.1.0"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"indexmap",
|
|
3119
|
+
"toml_datetime",
|
|
3120
|
+
"toml_parser",
|
|
3121
|
+
"winnow",
|
|
3122
|
+
]
|
|
3123
|
+
|
|
3124
|
+
[[package]]
|
|
3125
|
+
name = "toml_parser"
|
|
3126
|
+
version = "1.1.2+spec-1.1.0"
|
|
3127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3129
|
+
dependencies = [
|
|
3130
|
+
"winnow",
|
|
3131
|
+
]
|
|
3132
|
+
|
|
1865
3133
|
[[package]]
|
|
1866
3134
|
name = "tower"
|
|
1867
3135
|
version = "0.5.3"
|
|
@@ -1881,22 +3149,25 @@ dependencies = [
|
|
|
1881
3149
|
|
|
1882
3150
|
[[package]]
|
|
1883
3151
|
name = "tower-http"
|
|
1884
|
-
version = "0.6.
|
|
3152
|
+
version = "0.6.11"
|
|
1885
3153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
-
checksum = "
|
|
3154
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1887
3155
|
dependencies = [
|
|
1888
3156
|
"async-compression",
|
|
1889
3157
|
"bitflags",
|
|
1890
3158
|
"bytes",
|
|
1891
3159
|
"futures-core",
|
|
3160
|
+
"futures-util",
|
|
1892
3161
|
"http",
|
|
1893
3162
|
"http-body",
|
|
1894
3163
|
"http-body-util",
|
|
1895
3164
|
"pin-project-lite",
|
|
1896
3165
|
"tokio",
|
|
1897
3166
|
"tokio-util",
|
|
3167
|
+
"tower",
|
|
1898
3168
|
"tower-layer",
|
|
1899
3169
|
"tower-service",
|
|
3170
|
+
"url",
|
|
1900
3171
|
]
|
|
1901
3172
|
|
|
1902
3173
|
[[package]]
|
|
@@ -1956,14 +3227,18 @@ dependencies = [
|
|
|
1956
3227
|
|
|
1957
3228
|
[[package]]
|
|
1958
3229
|
name = "tracing-subscriber"
|
|
1959
|
-
version = "0.3.
|
|
3230
|
+
version = "0.3.23"
|
|
1960
3231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
-
checksum = "
|
|
3232
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
1962
3233
|
dependencies = [
|
|
3234
|
+
"matchers",
|
|
1963
3235
|
"nu-ansi-term",
|
|
3236
|
+
"once_cell",
|
|
3237
|
+
"regex-automata",
|
|
1964
3238
|
"sharded-slab",
|
|
1965
3239
|
"smallvec",
|
|
1966
3240
|
"thread_local",
|
|
3241
|
+
"tracing",
|
|
1967
3242
|
"tracing-core",
|
|
1968
3243
|
"tracing-log",
|
|
1969
3244
|
]
|
|
@@ -1976,19 +3251,18 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
1976
3251
|
|
|
1977
3252
|
[[package]]
|
|
1978
3253
|
name = "tungstenite"
|
|
1979
|
-
version = "0.
|
|
3254
|
+
version = "0.29.0"
|
|
1980
3255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
-
checksum = "
|
|
3256
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
1982
3257
|
dependencies = [
|
|
1983
3258
|
"bytes",
|
|
1984
3259
|
"data-encoding",
|
|
1985
3260
|
"http",
|
|
1986
3261
|
"httparse",
|
|
1987
3262
|
"log",
|
|
1988
|
-
"rand",
|
|
3263
|
+
"rand 0.9.4",
|
|
1989
3264
|
"sha1",
|
|
1990
3265
|
"thiserror 2.0.18",
|
|
1991
|
-
"utf-8",
|
|
1992
3266
|
]
|
|
1993
3267
|
|
|
1994
3268
|
[[package]]
|
|
@@ -2013,9 +3287,9 @@ dependencies = [
|
|
|
2013
3287
|
|
|
2014
3288
|
[[package]]
|
|
2015
3289
|
name = "typenum"
|
|
2016
|
-
version = "1.
|
|
3290
|
+
version = "1.20.1"
|
|
2017
3291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
-
checksum = "
|
|
3292
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2019
3293
|
|
|
2020
3294
|
[[package]]
|
|
2021
3295
|
name = "unicase"
|
|
@@ -2025,9 +3299,15 @@ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
|
2025
3299
|
|
|
2026
3300
|
[[package]]
|
|
2027
3301
|
name = "unicode-ident"
|
|
2028
|
-
version = "1.0.
|
|
3302
|
+
version = "1.0.24"
|
|
2029
3303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
-
checksum = "
|
|
3304
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "unicode-xid"
|
|
3308
|
+
version = "0.2.6"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2031
3311
|
|
|
2032
3312
|
[[package]]
|
|
2033
3313
|
name = "untrusted"
|
|
@@ -2045,13 +3325,7 @@ dependencies = [
|
|
|
2045
3325
|
"idna",
|
|
2046
3326
|
"percent-encoding",
|
|
2047
3327
|
"serde",
|
|
2048
|
-
]
|
|
2049
|
-
|
|
2050
|
-
[[package]]
|
|
2051
|
-
name = "utf-8"
|
|
2052
|
-
version = "0.7.6"
|
|
2053
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2054
|
-
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3328
|
+
]
|
|
2055
3329
|
|
|
2056
3330
|
[[package]]
|
|
2057
3331
|
name = "utf8_iter"
|
|
@@ -2061,11 +3335,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
2061
3335
|
|
|
2062
3336
|
[[package]]
|
|
2063
3337
|
name = "uuid"
|
|
2064
|
-
version = "1.
|
|
3338
|
+
version = "1.23.2"
|
|
2065
3339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
-
checksum = "
|
|
3340
|
+
checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
2067
3341
|
dependencies = [
|
|
2068
|
-
"getrandom 0.
|
|
3342
|
+
"getrandom 0.4.2",
|
|
2069
3343
|
"js-sys",
|
|
2070
3344
|
"wasm-bindgen",
|
|
2071
3345
|
]
|
|
@@ -2082,6 +3356,16 @@ version = "0.9.5"
|
|
|
2082
3356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
3357
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2084
3358
|
|
|
3359
|
+
[[package]]
|
|
3360
|
+
name = "walkdir"
|
|
3361
|
+
version = "2.5.0"
|
|
3362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3364
|
+
dependencies = [
|
|
3365
|
+
"same-file",
|
|
3366
|
+
"winapi-util",
|
|
3367
|
+
]
|
|
3368
|
+
|
|
2085
3369
|
[[package]]
|
|
2086
3370
|
name = "want"
|
|
2087
3371
|
version = "0.3.1"
|
|
@@ -2099,18 +3383,27 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
2099
3383
|
|
|
2100
3384
|
[[package]]
|
|
2101
3385
|
name = "wasip2"
|
|
2102
|
-
version = "1.0.
|
|
3386
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2103
3387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
-
checksum = "
|
|
3388
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2105
3389
|
dependencies = [
|
|
2106
|
-
"wit-bindgen",
|
|
3390
|
+
"wit-bindgen 0.57.1",
|
|
3391
|
+
]
|
|
3392
|
+
|
|
3393
|
+
[[package]]
|
|
3394
|
+
name = "wasip3"
|
|
3395
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3397
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3398
|
+
dependencies = [
|
|
3399
|
+
"wit-bindgen 0.51.0",
|
|
2107
3400
|
]
|
|
2108
3401
|
|
|
2109
3402
|
[[package]]
|
|
2110
3403
|
name = "wasm-bindgen"
|
|
2111
|
-
version = "0.2.
|
|
3404
|
+
version = "0.2.122"
|
|
2112
3405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
-
checksum = "
|
|
3406
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
2114
3407
|
dependencies = [
|
|
2115
3408
|
"cfg-if",
|
|
2116
3409
|
"once_cell",
|
|
@@ -2119,11 +3412,21 @@ dependencies = [
|
|
|
2119
3412
|
"wasm-bindgen-shared",
|
|
2120
3413
|
]
|
|
2121
3414
|
|
|
3415
|
+
[[package]]
|
|
3416
|
+
name = "wasm-bindgen-futures"
|
|
3417
|
+
version = "0.4.72"
|
|
3418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3419
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
3420
|
+
dependencies = [
|
|
3421
|
+
"js-sys",
|
|
3422
|
+
"wasm-bindgen",
|
|
3423
|
+
]
|
|
3424
|
+
|
|
2122
3425
|
[[package]]
|
|
2123
3426
|
name = "wasm-bindgen-macro"
|
|
2124
|
-
version = "0.2.
|
|
3427
|
+
version = "0.2.122"
|
|
2125
3428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
-
checksum = "
|
|
3429
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
2127
3430
|
dependencies = [
|
|
2128
3431
|
"quote",
|
|
2129
3432
|
"wasm-bindgen-macro-support",
|
|
@@ -2131,9 +3434,9 @@ dependencies = [
|
|
|
2131
3434
|
|
|
2132
3435
|
[[package]]
|
|
2133
3436
|
name = "wasm-bindgen-macro-support"
|
|
2134
|
-
version = "0.2.
|
|
3437
|
+
version = "0.2.122"
|
|
2135
3438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
-
checksum = "
|
|
3439
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
2137
3440
|
dependencies = [
|
|
2138
3441
|
"bumpalo",
|
|
2139
3442
|
"proc-macro2",
|
|
@@ -2144,18 +3447,85 @@ dependencies = [
|
|
|
2144
3447
|
|
|
2145
3448
|
[[package]]
|
|
2146
3449
|
name = "wasm-bindgen-shared"
|
|
2147
|
-
version = "0.2.
|
|
3450
|
+
version = "0.2.122"
|
|
2148
3451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
-
checksum = "
|
|
3452
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
2150
3453
|
dependencies = [
|
|
2151
3454
|
"unicode-ident",
|
|
2152
3455
|
]
|
|
2153
3456
|
|
|
3457
|
+
[[package]]
|
|
3458
|
+
name = "wasm-encoder"
|
|
3459
|
+
version = "0.244.0"
|
|
3460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3461
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
3462
|
+
dependencies = [
|
|
3463
|
+
"leb128fmt",
|
|
3464
|
+
"wasmparser",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "wasm-metadata"
|
|
3469
|
+
version = "0.244.0"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"anyhow",
|
|
3474
|
+
"indexmap",
|
|
3475
|
+
"wasm-encoder",
|
|
3476
|
+
"wasmparser",
|
|
3477
|
+
]
|
|
3478
|
+
|
|
3479
|
+
[[package]]
|
|
3480
|
+
name = "wasm-streams"
|
|
3481
|
+
version = "0.5.0"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
|
|
3484
|
+
dependencies = [
|
|
3485
|
+
"futures-util",
|
|
3486
|
+
"js-sys",
|
|
3487
|
+
"wasm-bindgen",
|
|
3488
|
+
"wasm-bindgen-futures",
|
|
3489
|
+
"web-sys",
|
|
3490
|
+
]
|
|
3491
|
+
|
|
3492
|
+
[[package]]
|
|
3493
|
+
name = "wasmparser"
|
|
3494
|
+
version = "0.244.0"
|
|
3495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3496
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3497
|
+
dependencies = [
|
|
3498
|
+
"bitflags",
|
|
3499
|
+
"hashbrown 0.15.5",
|
|
3500
|
+
"indexmap",
|
|
3501
|
+
"semver",
|
|
3502
|
+
]
|
|
3503
|
+
|
|
3504
|
+
[[package]]
|
|
3505
|
+
name = "web-sys"
|
|
3506
|
+
version = "0.3.99"
|
|
3507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
3509
|
+
dependencies = [
|
|
3510
|
+
"js-sys",
|
|
3511
|
+
"wasm-bindgen",
|
|
3512
|
+
]
|
|
3513
|
+
|
|
3514
|
+
[[package]]
|
|
3515
|
+
name = "web-time"
|
|
3516
|
+
version = "1.1.0"
|
|
3517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3518
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3519
|
+
dependencies = [
|
|
3520
|
+
"js-sys",
|
|
3521
|
+
"wasm-bindgen",
|
|
3522
|
+
]
|
|
3523
|
+
|
|
2154
3524
|
[[package]]
|
|
2155
3525
|
name = "webpki-root-certs"
|
|
2156
|
-
version = "1.0.
|
|
3526
|
+
version = "1.0.7"
|
|
2157
3527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
-
checksum = "
|
|
3528
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
2159
3529
|
dependencies = [
|
|
2160
3530
|
"rustls-pki-types",
|
|
2161
3531
|
]
|
|
@@ -2197,12 +3567,89 @@ version = "0.4.0"
|
|
|
2197
3567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
3568
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2199
3569
|
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "windows"
|
|
3572
|
+
version = "0.62.2"
|
|
3573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
3575
|
+
dependencies = [
|
|
3576
|
+
"windows-collections",
|
|
3577
|
+
"windows-core",
|
|
3578
|
+
"windows-future",
|
|
3579
|
+
"windows-numerics",
|
|
3580
|
+
]
|
|
3581
|
+
|
|
3582
|
+
[[package]]
|
|
3583
|
+
name = "windows-collections"
|
|
3584
|
+
version = "0.3.2"
|
|
3585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3586
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
3587
|
+
dependencies = [
|
|
3588
|
+
"windows-core",
|
|
3589
|
+
]
|
|
3590
|
+
|
|
3591
|
+
[[package]]
|
|
3592
|
+
name = "windows-core"
|
|
3593
|
+
version = "0.62.2"
|
|
3594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3595
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3596
|
+
dependencies = [
|
|
3597
|
+
"windows-implement",
|
|
3598
|
+
"windows-interface",
|
|
3599
|
+
"windows-link",
|
|
3600
|
+
"windows-result",
|
|
3601
|
+
"windows-strings",
|
|
3602
|
+
]
|
|
3603
|
+
|
|
3604
|
+
[[package]]
|
|
3605
|
+
name = "windows-future"
|
|
3606
|
+
version = "0.3.2"
|
|
3607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3608
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
3609
|
+
dependencies = [
|
|
3610
|
+
"windows-core",
|
|
3611
|
+
"windows-link",
|
|
3612
|
+
"windows-threading",
|
|
3613
|
+
]
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "windows-implement"
|
|
3617
|
+
version = "0.60.2"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3620
|
+
dependencies = [
|
|
3621
|
+
"proc-macro2",
|
|
3622
|
+
"quote",
|
|
3623
|
+
"syn",
|
|
3624
|
+
]
|
|
3625
|
+
|
|
3626
|
+
[[package]]
|
|
3627
|
+
name = "windows-interface"
|
|
3628
|
+
version = "0.59.3"
|
|
3629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3631
|
+
dependencies = [
|
|
3632
|
+
"proc-macro2",
|
|
3633
|
+
"quote",
|
|
3634
|
+
"syn",
|
|
3635
|
+
]
|
|
3636
|
+
|
|
2200
3637
|
[[package]]
|
|
2201
3638
|
name = "windows-link"
|
|
2202
3639
|
version = "0.2.1"
|
|
2203
3640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
3641
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2205
3642
|
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "windows-numerics"
|
|
3645
|
+
version = "0.3.1"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
3648
|
+
dependencies = [
|
|
3649
|
+
"windows-core",
|
|
3650
|
+
"windows-link",
|
|
3651
|
+
]
|
|
3652
|
+
|
|
2206
3653
|
[[package]]
|
|
2207
3654
|
name = "windows-registry"
|
|
2208
3655
|
version = "0.6.1"
|
|
@@ -2232,15 +3679,6 @@ dependencies = [
|
|
|
2232
3679
|
"windows-link",
|
|
2233
3680
|
]
|
|
2234
3681
|
|
|
2235
|
-
[[package]]
|
|
2236
|
-
name = "windows-sys"
|
|
2237
|
-
version = "0.48.0"
|
|
2238
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2240
|
-
dependencies = [
|
|
2241
|
-
"windows-targets 0.48.5",
|
|
2242
|
-
]
|
|
2243
|
-
|
|
2244
3682
|
[[package]]
|
|
2245
3683
|
name = "windows-sys"
|
|
2246
3684
|
version = "0.52.0"
|
|
@@ -2268,21 +3706,6 @@ dependencies = [
|
|
|
2268
3706
|
"windows-link",
|
|
2269
3707
|
]
|
|
2270
3708
|
|
|
2271
|
-
[[package]]
|
|
2272
|
-
name = "windows-targets"
|
|
2273
|
-
version = "0.48.5"
|
|
2274
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2276
|
-
dependencies = [
|
|
2277
|
-
"windows_aarch64_gnullvm 0.48.5",
|
|
2278
|
-
"windows_aarch64_msvc 0.48.5",
|
|
2279
|
-
"windows_i686_gnu 0.48.5",
|
|
2280
|
-
"windows_i686_msvc 0.48.5",
|
|
2281
|
-
"windows_x86_64_gnu 0.48.5",
|
|
2282
|
-
"windows_x86_64_gnullvm 0.48.5",
|
|
2283
|
-
"windows_x86_64_msvc 0.48.5",
|
|
2284
|
-
]
|
|
2285
|
-
|
|
2286
3709
|
[[package]]
|
|
2287
3710
|
name = "windows-targets"
|
|
2288
3711
|
version = "0.52.6"
|
|
@@ -2317,10 +3740,13 @@ dependencies = [
|
|
|
2317
3740
|
]
|
|
2318
3741
|
|
|
2319
3742
|
[[package]]
|
|
2320
|
-
name = "
|
|
2321
|
-
version = "0.
|
|
3743
|
+
name = "windows-threading"
|
|
3744
|
+
version = "0.2.1"
|
|
2322
3745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
-
checksum = "
|
|
3746
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
3747
|
+
dependencies = [
|
|
3748
|
+
"windows-link",
|
|
3749
|
+
]
|
|
2324
3750
|
|
|
2325
3751
|
[[package]]
|
|
2326
3752
|
name = "windows_aarch64_gnullvm"
|
|
@@ -2334,12 +3760,6 @@ version = "0.53.1"
|
|
|
2334
3760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2335
3761
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2336
3762
|
|
|
2337
|
-
[[package]]
|
|
2338
|
-
name = "windows_aarch64_msvc"
|
|
2339
|
-
version = "0.48.5"
|
|
2340
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2342
|
-
|
|
2343
3763
|
[[package]]
|
|
2344
3764
|
name = "windows_aarch64_msvc"
|
|
2345
3765
|
version = "0.52.6"
|
|
@@ -2352,12 +3772,6 @@ version = "0.53.1"
|
|
|
2352
3772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
3773
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2354
3774
|
|
|
2355
|
-
[[package]]
|
|
2356
|
-
name = "windows_i686_gnu"
|
|
2357
|
-
version = "0.48.5"
|
|
2358
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2359
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2360
|
-
|
|
2361
3775
|
[[package]]
|
|
2362
3776
|
name = "windows_i686_gnu"
|
|
2363
3777
|
version = "0.52.6"
|
|
@@ -2382,12 +3796,6 @@ version = "0.53.1"
|
|
|
2382
3796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
3797
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2384
3798
|
|
|
2385
|
-
[[package]]
|
|
2386
|
-
name = "windows_i686_msvc"
|
|
2387
|
-
version = "0.48.5"
|
|
2388
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2390
|
-
|
|
2391
3799
|
[[package]]
|
|
2392
3800
|
name = "windows_i686_msvc"
|
|
2393
3801
|
version = "0.52.6"
|
|
@@ -2400,12 +3808,6 @@ version = "0.53.1"
|
|
|
2400
3808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
3809
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2402
3810
|
|
|
2403
|
-
[[package]]
|
|
2404
|
-
name = "windows_x86_64_gnu"
|
|
2405
|
-
version = "0.48.5"
|
|
2406
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2408
|
-
|
|
2409
3811
|
[[package]]
|
|
2410
3812
|
name = "windows_x86_64_gnu"
|
|
2411
3813
|
version = "0.52.6"
|
|
@@ -2418,12 +3820,6 @@ version = "0.53.1"
|
|
|
2418
3820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
3821
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2420
3822
|
|
|
2421
|
-
[[package]]
|
|
2422
|
-
name = "windows_x86_64_gnullvm"
|
|
2423
|
-
version = "0.48.5"
|
|
2424
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2426
|
-
|
|
2427
3823
|
[[package]]
|
|
2428
3824
|
name = "windows_x86_64_gnullvm"
|
|
2429
3825
|
version = "0.52.6"
|
|
@@ -2436,12 +3832,6 @@ version = "0.53.1"
|
|
|
2436
3832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
3833
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2438
3834
|
|
|
2439
|
-
[[package]]
|
|
2440
|
-
name = "windows_x86_64_msvc"
|
|
2441
|
-
version = "0.48.5"
|
|
2442
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2444
|
-
|
|
2445
3835
|
[[package]]
|
|
2446
3836
|
name = "windows_x86_64_msvc"
|
|
2447
3837
|
version = "0.52.6"
|
|
@@ -2455,13 +3845,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2455
3845
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2456
3846
|
|
|
2457
3847
|
[[package]]
|
|
2458
|
-
name = "
|
|
2459
|
-
version = "0.
|
|
3848
|
+
name = "winnow"
|
|
3849
|
+
version = "1.0.3"
|
|
2460
3850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
-
checksum = "
|
|
3851
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
2462
3852
|
dependencies = [
|
|
2463
|
-
"
|
|
2464
|
-
"windows-sys 0.48.0",
|
|
3853
|
+
"memchr",
|
|
2465
3854
|
]
|
|
2466
3855
|
|
|
2467
3856
|
[[package]]
|
|
@@ -2469,20 +3858,109 @@ name = "wit-bindgen"
|
|
|
2469
3858
|
version = "0.51.0"
|
|
2470
3859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
3860
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3861
|
+
dependencies = [
|
|
3862
|
+
"wit-bindgen-rust-macro",
|
|
3863
|
+
]
|
|
3864
|
+
|
|
3865
|
+
[[package]]
|
|
3866
|
+
name = "wit-bindgen"
|
|
3867
|
+
version = "0.57.1"
|
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3870
|
+
|
|
3871
|
+
[[package]]
|
|
3872
|
+
name = "wit-bindgen-core"
|
|
3873
|
+
version = "0.51.0"
|
|
3874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3875
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3876
|
+
dependencies = [
|
|
3877
|
+
"anyhow",
|
|
3878
|
+
"heck",
|
|
3879
|
+
"wit-parser",
|
|
3880
|
+
]
|
|
3881
|
+
|
|
3882
|
+
[[package]]
|
|
3883
|
+
name = "wit-bindgen-rust"
|
|
3884
|
+
version = "0.51.0"
|
|
3885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3886
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3887
|
+
dependencies = [
|
|
3888
|
+
"anyhow",
|
|
3889
|
+
"heck",
|
|
3890
|
+
"indexmap",
|
|
3891
|
+
"prettyplease",
|
|
3892
|
+
"syn",
|
|
3893
|
+
"wasm-metadata",
|
|
3894
|
+
"wit-bindgen-core",
|
|
3895
|
+
"wit-component",
|
|
3896
|
+
]
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "wit-bindgen-rust-macro"
|
|
3900
|
+
version = "0.51.0"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3903
|
+
dependencies = [
|
|
3904
|
+
"anyhow",
|
|
3905
|
+
"prettyplease",
|
|
3906
|
+
"proc-macro2",
|
|
3907
|
+
"quote",
|
|
3908
|
+
"syn",
|
|
3909
|
+
"wit-bindgen-core",
|
|
3910
|
+
"wit-bindgen-rust",
|
|
3911
|
+
]
|
|
3912
|
+
|
|
3913
|
+
[[package]]
|
|
3914
|
+
name = "wit-component"
|
|
3915
|
+
version = "0.244.0"
|
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3918
|
+
dependencies = [
|
|
3919
|
+
"anyhow",
|
|
3920
|
+
"bitflags",
|
|
3921
|
+
"indexmap",
|
|
3922
|
+
"log",
|
|
3923
|
+
"serde",
|
|
3924
|
+
"serde_derive",
|
|
3925
|
+
"serde_json",
|
|
3926
|
+
"wasm-encoder",
|
|
3927
|
+
"wasm-metadata",
|
|
3928
|
+
"wasmparser",
|
|
3929
|
+
"wit-parser",
|
|
3930
|
+
]
|
|
3931
|
+
|
|
3932
|
+
[[package]]
|
|
3933
|
+
name = "wit-parser"
|
|
3934
|
+
version = "0.244.0"
|
|
3935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3936
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3937
|
+
dependencies = [
|
|
3938
|
+
"anyhow",
|
|
3939
|
+
"id-arena",
|
|
3940
|
+
"indexmap",
|
|
3941
|
+
"log",
|
|
3942
|
+
"semver",
|
|
3943
|
+
"serde",
|
|
3944
|
+
"serde_derive",
|
|
3945
|
+
"serde_json",
|
|
3946
|
+
"unicode-xid",
|
|
3947
|
+
"wasmparser",
|
|
3948
|
+
]
|
|
2472
3949
|
|
|
2473
3950
|
[[package]]
|
|
2474
3951
|
name = "wreq"
|
|
2475
|
-
version = "6.0.0-rc.
|
|
3952
|
+
version = "6.0.0-rc.29"
|
|
2476
3953
|
dependencies = [
|
|
2477
|
-
"ahash",
|
|
2478
|
-
"boring2",
|
|
2479
3954
|
"brotli",
|
|
3955
|
+
"btls",
|
|
3956
|
+
"btls-sys",
|
|
2480
3957
|
"bytes",
|
|
3958
|
+
"compio",
|
|
2481
3959
|
"cookie",
|
|
3960
|
+
"criterion",
|
|
2482
3961
|
"encoding_rs",
|
|
2483
3962
|
"flate2",
|
|
2484
3963
|
"futures",
|
|
2485
|
-
"futures-channel",
|
|
2486
3964
|
"futures-util",
|
|
2487
3965
|
"hickory-resolver",
|
|
2488
3966
|
"http",
|
|
@@ -2494,21 +3972,23 @@ dependencies = [
|
|
|
2494
3972
|
"hyper-util",
|
|
2495
3973
|
"ipnet",
|
|
2496
3974
|
"libc",
|
|
3975
|
+
"lru",
|
|
2497
3976
|
"mime",
|
|
2498
3977
|
"mime_guess",
|
|
3978
|
+
"parking_lot",
|
|
2499
3979
|
"percent-encoding",
|
|
2500
3980
|
"pin-project-lite",
|
|
2501
3981
|
"pretty_env_logger",
|
|
2502
|
-
"
|
|
3982
|
+
"reqwest",
|
|
2503
3983
|
"serde",
|
|
3984
|
+
"serde_html_form",
|
|
2504
3985
|
"serde_json",
|
|
2505
|
-
"
|
|
2506
|
-
"smallvec",
|
|
2507
|
-
"socket2 0.6.2",
|
|
3986
|
+
"socket2",
|
|
2508
3987
|
"sync_wrapper",
|
|
3988
|
+
"sysinfo",
|
|
2509
3989
|
"system-configuration",
|
|
2510
3990
|
"tokio",
|
|
2511
|
-
"tokio-
|
|
3991
|
+
"tokio-btls",
|
|
2512
3992
|
"tokio-socks",
|
|
2513
3993
|
"tokio-test",
|
|
2514
3994
|
"tokio-tungstenite",
|
|
@@ -2518,26 +3998,65 @@ dependencies = [
|
|
|
2518
3998
|
"tracing",
|
|
2519
3999
|
"tracing-subscriber",
|
|
2520
4000
|
"url",
|
|
2521
|
-
"want",
|
|
2522
4001
|
"webpki-root-certs",
|
|
2523
4002
|
"windows-registry",
|
|
4003
|
+
"wreq-proto",
|
|
4004
|
+
"wreq-rt",
|
|
2524
4005
|
"zstd",
|
|
2525
4006
|
]
|
|
2526
4007
|
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "wreq-proto"
|
|
4010
|
+
version = "0.2.5"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "a43942f024bb303f1042c9aa3c87fa1d9149f507c65db6e5220a11ccdb207387"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"bytes",
|
|
4015
|
+
"futures-channel",
|
|
4016
|
+
"futures-util",
|
|
4017
|
+
"http",
|
|
4018
|
+
"http-body",
|
|
4019
|
+
"http2",
|
|
4020
|
+
"httparse",
|
|
4021
|
+
"pin-project-lite",
|
|
4022
|
+
"smallvec",
|
|
4023
|
+
"tokio",
|
|
4024
|
+
"tokio-util",
|
|
4025
|
+
"tracing",
|
|
4026
|
+
"want",
|
|
4027
|
+
]
|
|
4028
|
+
|
|
4029
|
+
[[package]]
|
|
4030
|
+
name = "wreq-rt"
|
|
4031
|
+
version = "0.2.2-rc.4"
|
|
4032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4033
|
+
checksum = "99e9bce67a3fa3dd3f1503f066d86661c9caf399a763d3bd184da7afaf886c8b"
|
|
4034
|
+
dependencies = [
|
|
4035
|
+
"compio",
|
|
4036
|
+
"futures-util",
|
|
4037
|
+
"pin-project-lite",
|
|
4038
|
+
"send_wrapper",
|
|
4039
|
+
"tokio",
|
|
4040
|
+
"wreq-proto",
|
|
4041
|
+
]
|
|
4042
|
+
|
|
2527
4043
|
[[package]]
|
|
2528
4044
|
name = "wreq-util"
|
|
2529
|
-
version = "3.0.0-rc.
|
|
4045
|
+
version = "3.0.0-rc.12"
|
|
2530
4046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
-
checksum = "
|
|
4047
|
+
checksum = "baa5d2ab72139256916ca352a3d05c53d74e1dd360052eb5ba7691033c417c65"
|
|
2532
4048
|
dependencies = [
|
|
4049
|
+
"brotli",
|
|
4050
|
+
"flate2",
|
|
2533
4051
|
"serde",
|
|
2534
4052
|
"typed-builder",
|
|
2535
4053
|
"wreq",
|
|
4054
|
+
"zstd",
|
|
2536
4055
|
]
|
|
2537
4056
|
|
|
2538
4057
|
[[package]]
|
|
2539
4058
|
name = "wreq_rb"
|
|
2540
|
-
version = "0.5.
|
|
4059
|
+
version = "0.5.1"
|
|
2541
4060
|
dependencies = [
|
|
2542
4061
|
"bytes",
|
|
2543
4062
|
"http",
|
|
@@ -2552,15 +4071,15 @@ dependencies = [
|
|
|
2552
4071
|
|
|
2553
4072
|
[[package]]
|
|
2554
4073
|
name = "writeable"
|
|
2555
|
-
version = "0.6.
|
|
4074
|
+
version = "0.6.3"
|
|
2556
4075
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
-
checksum = "
|
|
4076
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2558
4077
|
|
|
2559
4078
|
[[package]]
|
|
2560
4079
|
name = "yoke"
|
|
2561
|
-
version = "0.8.
|
|
4080
|
+
version = "0.8.3"
|
|
2562
4081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
-
checksum = "
|
|
4082
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2564
4083
|
dependencies = [
|
|
2565
4084
|
"stable_deref_trait",
|
|
2566
4085
|
"yoke-derive",
|
|
@@ -2569,9 +4088,9 @@ dependencies = [
|
|
|
2569
4088
|
|
|
2570
4089
|
[[package]]
|
|
2571
4090
|
name = "yoke-derive"
|
|
2572
|
-
version = "0.8.
|
|
4091
|
+
version = "0.8.2"
|
|
2573
4092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
-
checksum = "
|
|
4093
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2575
4094
|
dependencies = [
|
|
2576
4095
|
"proc-macro2",
|
|
2577
4096
|
"quote",
|
|
@@ -2581,18 +4100,18 @@ dependencies = [
|
|
|
2581
4100
|
|
|
2582
4101
|
[[package]]
|
|
2583
4102
|
name = "zerocopy"
|
|
2584
|
-
version = "0.8.
|
|
4103
|
+
version = "0.8.50"
|
|
2585
4104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
-
checksum = "
|
|
4105
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
2587
4106
|
dependencies = [
|
|
2588
4107
|
"zerocopy-derive",
|
|
2589
4108
|
]
|
|
2590
4109
|
|
|
2591
4110
|
[[package]]
|
|
2592
4111
|
name = "zerocopy-derive"
|
|
2593
|
-
version = "0.8.
|
|
4112
|
+
version = "0.8.50"
|
|
2594
4113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2595
|
-
checksum = "
|
|
4114
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
2596
4115
|
dependencies = [
|
|
2597
4116
|
"proc-macro2",
|
|
2598
4117
|
"quote",
|
|
@@ -2601,18 +4120,18 @@ dependencies = [
|
|
|
2601
4120
|
|
|
2602
4121
|
[[package]]
|
|
2603
4122
|
name = "zerofrom"
|
|
2604
|
-
version = "0.1.
|
|
4123
|
+
version = "0.1.8"
|
|
2605
4124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
-
checksum = "
|
|
4125
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2607
4126
|
dependencies = [
|
|
2608
4127
|
"zerofrom-derive",
|
|
2609
4128
|
]
|
|
2610
4129
|
|
|
2611
4130
|
[[package]]
|
|
2612
4131
|
name = "zerofrom-derive"
|
|
2613
|
-
version = "0.1.
|
|
4132
|
+
version = "0.1.7"
|
|
2614
4133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
-
checksum = "
|
|
4134
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2616
4135
|
dependencies = [
|
|
2617
4136
|
"proc-macro2",
|
|
2618
4137
|
"quote",
|
|
@@ -2620,11 +4139,17 @@ dependencies = [
|
|
|
2620
4139
|
"synstructure",
|
|
2621
4140
|
]
|
|
2622
4141
|
|
|
4142
|
+
[[package]]
|
|
4143
|
+
name = "zeroize"
|
|
4144
|
+
version = "1.8.2"
|
|
4145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4147
|
+
|
|
2623
4148
|
[[package]]
|
|
2624
4149
|
name = "zerotrie"
|
|
2625
|
-
version = "0.2.
|
|
4150
|
+
version = "0.2.4"
|
|
2626
4151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
|
-
checksum = "
|
|
4152
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2628
4153
|
dependencies = [
|
|
2629
4154
|
"displaydoc",
|
|
2630
4155
|
"yoke",
|
|
@@ -2633,9 +4158,9 @@ dependencies = [
|
|
|
2633
4158
|
|
|
2634
4159
|
[[package]]
|
|
2635
4160
|
name = "zerovec"
|
|
2636
|
-
version = "0.11.
|
|
4161
|
+
version = "0.11.6"
|
|
2637
4162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
4163
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2639
4164
|
dependencies = [
|
|
2640
4165
|
"yoke",
|
|
2641
4166
|
"zerofrom",
|
|
@@ -2644,9 +4169,9 @@ dependencies = [
|
|
|
2644
4169
|
|
|
2645
4170
|
[[package]]
|
|
2646
4171
|
name = "zerovec-derive"
|
|
2647
|
-
version = "0.11.
|
|
4172
|
+
version = "0.11.3"
|
|
2648
4173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2649
|
-
checksum = "
|
|
4174
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2650
4175
|
dependencies = [
|
|
2651
4176
|
"proc-macro2",
|
|
2652
4177
|
"quote",
|
|
@@ -2655,9 +4180,9 @@ dependencies = [
|
|
|
2655
4180
|
|
|
2656
4181
|
[[package]]
|
|
2657
4182
|
name = "zmij"
|
|
2658
|
-
version = "1.0.
|
|
4183
|
+
version = "1.0.21"
|
|
2659
4184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2660
|
-
checksum = "
|
|
4185
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
2661
4186
|
|
|
2662
4187
|
[[package]]
|
|
2663
4188
|
name = "zstd"
|