kovra-ffi 0.8.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kovra_ffi-0.8.0/Cargo.lock +3971 -0
- kovra_ffi-0.8.0/Cargo.toml +35 -0
- kovra_ffi-0.8.0/PKG-INFO +9 -0
- kovra_ffi-0.8.0/crates/core/Cargo.toml +78 -0
- kovra_ffi-0.8.0/crates/core/README.md +24 -0
- kovra_ffi-0.8.0/crates/core/src/audit.rs +593 -0
- kovra_ffi-0.8.0/crates/core/src/clock.rs +130 -0
- kovra_ffi-0.8.0/crates/core/src/confirm.rs +509 -0
- kovra_ffi-0.8.0/crates/core/src/coordinate.rs +508 -0
- kovra_ffi-0.8.0/crates/core/src/crypto.rs +155 -0
- kovra_ffi-0.8.0/crates/core/src/doctor.rs +374 -0
- kovra_ffi-0.8.0/crates/core/src/env_source.rs +59 -0
- kovra_ffi-0.8.0/crates/core/src/envrefs.rs +389 -0
- kovra_ffi-0.8.0/crates/core/src/error.rs +97 -0
- kovra_ffi-0.8.0/crates/core/src/exchange.rs +264 -0
- kovra_ffi-0.8.0/crates/core/src/file_confirm.rs +308 -0
- kovra_ffi-0.8.0/crates/core/src/fingerprint.rs +60 -0
- kovra_ffi-0.8.0/crates/core/src/formatter.rs +485 -0
- kovra_ffi-0.8.0/crates/core/src/hooks.rs +134 -0
- kovra_ffi-0.8.0/crates/core/src/index.rs +437 -0
- kovra_ffi-0.8.0/crates/core/src/keybackup.rs +155 -0
- kovra_ffi-0.8.0/crates/core/src/keypair.rs +710 -0
- kovra_ffi-0.8.0/crates/core/src/keyring.rs +259 -0
- kovra_ffi-0.8.0/crates/core/src/lib.rs +110 -0
- kovra_ffi-0.8.0/crates/core/src/package.rs +743 -0
- kovra_ffi-0.8.0/crates/core/src/policy.rs +646 -0
- kovra_ffi-0.8.0/crates/core/src/provider.rs +254 -0
- kovra_ffi-0.8.0/crates/core/src/record.rs +432 -0
- kovra_ffi-0.8.0/crates/core/src/registry.rs +329 -0
- kovra_ffi-0.8.0/crates/core/src/resolver.rs +321 -0
- kovra_ffi-0.8.0/crates/core/src/scaffold.rs +404 -0
- kovra_ffi-0.8.0/crates/core/src/scope.rs +200 -0
- kovra_ffi-0.8.0/crates/core/src/secret.rs +66 -0
- kovra_ffi-0.8.0/crates/core/src/sensitivity.rs +19 -0
- kovra_ffi-0.8.0/crates/core/src/store.rs +375 -0
- kovra_ffi-0.8.0/crates/core/src/totp.rs +507 -0
- kovra_ffi-0.8.0/crates/core/tests/acceptance.rs +309 -0
- kovra_ffi-0.8.0/crates/core/tests/policy_enforcement.rs +405 -0
- kovra_ffi-0.8.0/crates/core/tests/resolver.rs +631 -0
- kovra_ffi-0.8.0/crates/core/tests/round_trip.rs +66 -0
- kovra_ffi-0.8.0/crates/core/tests/vault_store.rs +244 -0
- kovra_ffi-0.8.0/crates/ffi-python/Cargo.toml +50 -0
- kovra_ffi-0.8.0/crates/ffi-python/src/errors.rs +70 -0
- kovra_ffi-0.8.0/crates/ffi-python/src/lib.rs +238 -0
- kovra_ffi-0.8.0/crates/ffi-python/src/scope.rs +122 -0
- kovra_ffi-0.8.0/crates/ffi-python/src/session.rs +1959 -0
- kovra_ffi-0.8.0/crates/providers-aws/Cargo.toml +30 -0
- kovra_ffi-0.8.0/crates/providers-aws/README.md +15 -0
- kovra_ffi-0.8.0/crates/providers-aws/examples/host_aws_check.rs +42 -0
- kovra_ffi-0.8.0/crates/providers-aws/src/lib.rs +568 -0
- kovra_ffi-0.8.0/crates/providers-azure/Cargo.toml +30 -0
- kovra_ffi-0.8.0/crates/providers-azure/README.md +15 -0
- kovra_ffi-0.8.0/crates/providers-azure/examples/host_az_check.rs +41 -0
- kovra_ffi-0.8.0/crates/providers-azure/src/lib.rs +549 -0
- kovra_ffi-0.8.0/crates/wrapper/Cargo.toml +26 -0
- kovra_ffi-0.8.0/crates/wrapper/README.md +18 -0
- kovra_ffi-0.8.0/crates/wrapper/examples/kovra_run.rs +189 -0
- kovra_ffi-0.8.0/crates/wrapper/examples/kovra_run_compose.rs +189 -0
- kovra_ffi-0.8.0/crates/wrapper/src/allowlist.rs +106 -0
- kovra_ffi-0.8.0/crates/wrapper/src/caller.rs +129 -0
- kovra_ffi-0.8.0/crates/wrapper/src/error.rs +36 -0
- kovra_ffi-0.8.0/crates/wrapper/src/lib.rs +27 -0
- kovra_ffi-0.8.0/crates/wrapper/src/runner.rs +160 -0
- kovra_ffi-0.8.0/crates/wrapper/src/sanitize.rs +80 -0
- kovra_ffi-0.8.0/crates/wrapper/src/wrapper.rs +285 -0
- kovra_ffi-0.8.0/crates/wrapper/tests/wrapper.rs +524 -0
- kovra_ffi-0.8.0/pyproject.toml +21 -0
|
@@ -0,0 +1,3971 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aead"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"crypto-common",
|
|
12
|
+
"generic-array",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "aes"
|
|
17
|
+
version = "0.8.4"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"cfg-if",
|
|
22
|
+
"cipher",
|
|
23
|
+
"cpufeatures 0.2.17",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "aes-gcm"
|
|
28
|
+
version = "0.10.3"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"aead",
|
|
33
|
+
"aes",
|
|
34
|
+
"cipher",
|
|
35
|
+
"ctr",
|
|
36
|
+
"ghash",
|
|
37
|
+
"subtle",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "age"
|
|
42
|
+
version = "0.11.3"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "a07d86e4272c093c88caf7864a2d09af52a5159180848ca4832a3cdbd7d014d5"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"aes",
|
|
47
|
+
"aes-gcm",
|
|
48
|
+
"age-core",
|
|
49
|
+
"base64",
|
|
50
|
+
"bcrypt-pbkdf",
|
|
51
|
+
"bech32",
|
|
52
|
+
"cbc",
|
|
53
|
+
"chacha20poly1305",
|
|
54
|
+
"cipher",
|
|
55
|
+
"cookie-factory",
|
|
56
|
+
"ctr",
|
|
57
|
+
"curve25519-dalek",
|
|
58
|
+
"hmac",
|
|
59
|
+
"i18n-embed",
|
|
60
|
+
"i18n-embed-fl",
|
|
61
|
+
"lazy_static",
|
|
62
|
+
"nom",
|
|
63
|
+
"num-traits",
|
|
64
|
+
"pin-project",
|
|
65
|
+
"rand 0.8.6",
|
|
66
|
+
"rsa",
|
|
67
|
+
"rust-embed",
|
|
68
|
+
"scrypt",
|
|
69
|
+
"sha2",
|
|
70
|
+
"subtle",
|
|
71
|
+
"x25519-dalek",
|
|
72
|
+
"zeroize",
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "age-core"
|
|
77
|
+
version = "0.11.0"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "e2bf6a89c984ca9d850913ece2da39e1d200563b0a94b002b253beee4c5acf99"
|
|
80
|
+
dependencies = [
|
|
81
|
+
"base64",
|
|
82
|
+
"chacha20poly1305",
|
|
83
|
+
"cookie-factory",
|
|
84
|
+
"hkdf",
|
|
85
|
+
"io_tee",
|
|
86
|
+
"nom",
|
|
87
|
+
"rand 0.8.6",
|
|
88
|
+
"secrecy",
|
|
89
|
+
"sha2",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "aho-corasick"
|
|
94
|
+
version = "1.1.4"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"memchr",
|
|
99
|
+
]
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "anstream"
|
|
103
|
+
version = "1.0.0"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"anstyle",
|
|
108
|
+
"anstyle-parse",
|
|
109
|
+
"anstyle-query",
|
|
110
|
+
"anstyle-wincon",
|
|
111
|
+
"colorchoice",
|
|
112
|
+
"is_terminal_polyfill",
|
|
113
|
+
"utf8parse",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "anstyle"
|
|
118
|
+
version = "1.0.14"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "anstyle-parse"
|
|
124
|
+
version = "1.0.0"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
127
|
+
dependencies = [
|
|
128
|
+
"utf8parse",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "anstyle-query"
|
|
133
|
+
version = "1.1.5"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"windows-sys 0.61.2",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "anstyle-wincon"
|
|
142
|
+
version = "3.0.11"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"anstyle",
|
|
147
|
+
"once_cell_polyfill",
|
|
148
|
+
"windows-sys 0.61.2",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "anyhow"
|
|
153
|
+
version = "1.0.102"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "arc-swap"
|
|
159
|
+
version = "1.9.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"rustversion",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "argon2"
|
|
168
|
+
version = "0.5.3"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"base64ct",
|
|
173
|
+
"blake2",
|
|
174
|
+
"cpufeatures 0.2.17",
|
|
175
|
+
"password-hash",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "arrayref"
|
|
180
|
+
version = "0.3.9"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "arrayvec"
|
|
186
|
+
version = "0.7.6"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "async-broadcast"
|
|
192
|
+
version = "0.7.2"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"event-listener",
|
|
197
|
+
"event-listener-strategy",
|
|
198
|
+
"futures-core",
|
|
199
|
+
"pin-project-lite",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "async-channel"
|
|
204
|
+
version = "2.5.0"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"concurrent-queue",
|
|
209
|
+
"event-listener-strategy",
|
|
210
|
+
"futures-core",
|
|
211
|
+
"pin-project-lite",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "async-io"
|
|
216
|
+
version = "2.6.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"autocfg",
|
|
221
|
+
"cfg-if",
|
|
222
|
+
"concurrent-queue",
|
|
223
|
+
"futures-io",
|
|
224
|
+
"futures-lite",
|
|
225
|
+
"parking",
|
|
226
|
+
"polling",
|
|
227
|
+
"rustix",
|
|
228
|
+
"slab",
|
|
229
|
+
"windows-sys 0.61.2",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "async-lock"
|
|
234
|
+
version = "3.4.2"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"event-listener",
|
|
239
|
+
"event-listener-strategy",
|
|
240
|
+
"pin-project-lite",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "async-process"
|
|
245
|
+
version = "2.5.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"async-channel",
|
|
250
|
+
"async-io",
|
|
251
|
+
"async-lock",
|
|
252
|
+
"async-signal",
|
|
253
|
+
"async-task",
|
|
254
|
+
"blocking",
|
|
255
|
+
"cfg-if",
|
|
256
|
+
"event-listener",
|
|
257
|
+
"futures-lite",
|
|
258
|
+
"rustix",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "async-recursion"
|
|
263
|
+
version = "1.1.1"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"proc-macro2",
|
|
268
|
+
"quote",
|
|
269
|
+
"syn",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "async-signal"
|
|
274
|
+
version = "0.2.14"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"async-io",
|
|
279
|
+
"async-lock",
|
|
280
|
+
"atomic-waker",
|
|
281
|
+
"cfg-if",
|
|
282
|
+
"futures-core",
|
|
283
|
+
"futures-io",
|
|
284
|
+
"rustix",
|
|
285
|
+
"signal-hook-registry",
|
|
286
|
+
"slab",
|
|
287
|
+
"windows-sys 0.61.2",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "async-task"
|
|
292
|
+
version = "4.7.1"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "async-trait"
|
|
298
|
+
version = "0.1.89"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"proc-macro2",
|
|
303
|
+
"quote",
|
|
304
|
+
"syn",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "atomic-waker"
|
|
309
|
+
version = "1.1.2"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "autocfg"
|
|
315
|
+
version = "1.5.1"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "axum"
|
|
321
|
+
version = "0.8.9"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"axum-core",
|
|
326
|
+
"bytes",
|
|
327
|
+
"form_urlencoded",
|
|
328
|
+
"futures-util",
|
|
329
|
+
"http",
|
|
330
|
+
"http-body",
|
|
331
|
+
"http-body-util",
|
|
332
|
+
"hyper",
|
|
333
|
+
"hyper-util",
|
|
334
|
+
"itoa",
|
|
335
|
+
"matchit",
|
|
336
|
+
"memchr",
|
|
337
|
+
"mime",
|
|
338
|
+
"percent-encoding",
|
|
339
|
+
"pin-project-lite",
|
|
340
|
+
"serde_core",
|
|
341
|
+
"serde_json",
|
|
342
|
+
"serde_path_to_error",
|
|
343
|
+
"serde_urlencoded",
|
|
344
|
+
"sync_wrapper",
|
|
345
|
+
"tokio",
|
|
346
|
+
"tower",
|
|
347
|
+
"tower-layer",
|
|
348
|
+
"tower-service",
|
|
349
|
+
"tracing",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "axum-core"
|
|
354
|
+
version = "0.5.6"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"bytes",
|
|
359
|
+
"futures-core",
|
|
360
|
+
"http",
|
|
361
|
+
"http-body",
|
|
362
|
+
"http-body-util",
|
|
363
|
+
"mime",
|
|
364
|
+
"pin-project-lite",
|
|
365
|
+
"sync_wrapper",
|
|
366
|
+
"tower-layer",
|
|
367
|
+
"tower-service",
|
|
368
|
+
"tracing",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "base16ct"
|
|
373
|
+
version = "0.2.0"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "base64"
|
|
379
|
+
version = "0.21.7"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "base64ct"
|
|
385
|
+
version = "1.8.3"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "basic-toml"
|
|
391
|
+
version = "0.1.10"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"serde",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "bcrypt-pbkdf"
|
|
400
|
+
version = "0.10.0"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "6aeac2e1fe888769f34f05ac343bbef98b14d1ffb292ab69d4608b3abc86f2a2"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"blowfish",
|
|
405
|
+
"pbkdf2",
|
|
406
|
+
"sha2",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "bech32"
|
|
411
|
+
version = "0.9.1"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "bit-set"
|
|
417
|
+
version = "0.8.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"bit-vec",
|
|
422
|
+
]
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "bit-vec"
|
|
426
|
+
version = "0.8.0"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "bitflags"
|
|
432
|
+
version = "2.11.1"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "blake2"
|
|
438
|
+
version = "0.10.6"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"digest",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "blake3"
|
|
447
|
+
version = "1.8.5"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"arrayref",
|
|
452
|
+
"arrayvec",
|
|
453
|
+
"cc",
|
|
454
|
+
"cfg-if",
|
|
455
|
+
"constant_time_eq",
|
|
456
|
+
"cpufeatures 0.3.0",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "block-buffer"
|
|
461
|
+
version = "0.10.4"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"generic-array",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "block-padding"
|
|
470
|
+
version = "0.3.3"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"generic-array",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "block2"
|
|
479
|
+
version = "0.6.2"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"objc2",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "blocking"
|
|
488
|
+
version = "1.6.2"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"async-channel",
|
|
493
|
+
"async-task",
|
|
494
|
+
"futures-io",
|
|
495
|
+
"futures-lite",
|
|
496
|
+
"piper",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "blowfish"
|
|
501
|
+
version = "0.9.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"byteorder",
|
|
506
|
+
"cipher",
|
|
507
|
+
]
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "bstr"
|
|
511
|
+
version = "1.12.1"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
514
|
+
dependencies = [
|
|
515
|
+
"memchr",
|
|
516
|
+
"serde",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "byteorder"
|
|
521
|
+
version = "1.5.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "bytes"
|
|
527
|
+
version = "1.11.1"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "cbc"
|
|
533
|
+
version = "0.1.2"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"cipher",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "cc"
|
|
542
|
+
version = "1.2.63"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"find-msvc-tools",
|
|
547
|
+
"shlex",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "cfg-if"
|
|
552
|
+
version = "1.0.4"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "cfg_aliases"
|
|
558
|
+
version = "0.2.1"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "chacha20"
|
|
564
|
+
version = "0.9.1"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"cfg-if",
|
|
569
|
+
"cipher",
|
|
570
|
+
"cpufeatures 0.2.17",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "chacha20poly1305"
|
|
575
|
+
version = "0.10.1"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"aead",
|
|
580
|
+
"chacha20",
|
|
581
|
+
"cipher",
|
|
582
|
+
"poly1305",
|
|
583
|
+
"zeroize",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "cipher"
|
|
588
|
+
version = "0.4.4"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"crypto-common",
|
|
593
|
+
"inout",
|
|
594
|
+
"zeroize",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "clap"
|
|
599
|
+
version = "4.6.1"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"clap_builder",
|
|
604
|
+
"clap_derive",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "clap_builder"
|
|
609
|
+
version = "4.6.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"anstream",
|
|
614
|
+
"anstyle",
|
|
615
|
+
"clap_lex",
|
|
616
|
+
"strsim",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "clap_derive"
|
|
621
|
+
version = "4.6.1"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"heck",
|
|
626
|
+
"proc-macro2",
|
|
627
|
+
"quote",
|
|
628
|
+
"syn",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "clap_lex"
|
|
633
|
+
version = "1.1.0"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "colorchoice"
|
|
639
|
+
version = "1.0.5"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "comfy-table"
|
|
645
|
+
version = "7.2.2"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"crossterm",
|
|
650
|
+
"unicode-segmentation",
|
|
651
|
+
"unicode-width",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "concurrent-queue"
|
|
656
|
+
version = "2.5.0"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"crossbeam-utils",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "const-oid"
|
|
665
|
+
version = "0.9.6"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "constant_time_eq"
|
|
671
|
+
version = "0.4.2"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "convert_case"
|
|
677
|
+
version = "0.10.0"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"unicode-segmentation",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "cookie-factory"
|
|
686
|
+
version = "0.3.3"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"futures",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "core-foundation"
|
|
695
|
+
version = "0.9.4"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"core-foundation-sys",
|
|
700
|
+
"libc",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "core-foundation"
|
|
705
|
+
version = "0.10.1"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"core-foundation-sys",
|
|
710
|
+
"libc",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "core-foundation-sys"
|
|
715
|
+
version = "0.8.7"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "cpufeatures"
|
|
721
|
+
version = "0.2.17"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
724
|
+
dependencies = [
|
|
725
|
+
"libc",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "cpufeatures"
|
|
730
|
+
version = "0.3.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"libc",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "crossbeam-deque"
|
|
739
|
+
version = "0.8.6"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"crossbeam-epoch",
|
|
744
|
+
"crossbeam-utils",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "crossbeam-epoch"
|
|
749
|
+
version = "0.9.18"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"crossbeam-utils",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "crossbeam-utils"
|
|
758
|
+
version = "0.8.21"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "crossterm"
|
|
764
|
+
version = "0.29.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"bitflags",
|
|
769
|
+
"crossterm_winapi",
|
|
770
|
+
"derive_more",
|
|
771
|
+
"document-features",
|
|
772
|
+
"mio",
|
|
773
|
+
"parking_lot",
|
|
774
|
+
"rustix",
|
|
775
|
+
"signal-hook",
|
|
776
|
+
"signal-hook-mio",
|
|
777
|
+
"winapi",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "crossterm_winapi"
|
|
782
|
+
version = "0.9.1"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"winapi",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "crypto-bigint"
|
|
791
|
+
version = "0.5.5"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"generic-array",
|
|
796
|
+
"rand_core 0.6.4",
|
|
797
|
+
"subtle",
|
|
798
|
+
"zeroize",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "crypto-common"
|
|
803
|
+
version = "0.1.7"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"generic-array",
|
|
808
|
+
"rand_core 0.6.4",
|
|
809
|
+
"typenum",
|
|
810
|
+
]
|
|
811
|
+
|
|
812
|
+
[[package]]
|
|
813
|
+
name = "ctr"
|
|
814
|
+
version = "0.9.2"
|
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
817
|
+
dependencies = [
|
|
818
|
+
"cipher",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "curve25519-dalek"
|
|
823
|
+
version = "4.1.3"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"cfg-if",
|
|
828
|
+
"cpufeatures 0.2.17",
|
|
829
|
+
"curve25519-dalek-derive",
|
|
830
|
+
"digest",
|
|
831
|
+
"fiat-crypto",
|
|
832
|
+
"rustc_version",
|
|
833
|
+
"subtle",
|
|
834
|
+
"zeroize",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "curve25519-dalek-derive"
|
|
839
|
+
version = "0.1.1"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"proc-macro2",
|
|
844
|
+
"quote",
|
|
845
|
+
"syn",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "dbus"
|
|
850
|
+
version = "0.9.11"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "b942602992bb7acfd1f51c49811c58a610ef9181b6e66f3e519d79b540a3bf73"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"libc",
|
|
855
|
+
"libdbus-sys",
|
|
856
|
+
"windows-sys 0.61.2",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "dbus-secret-service"
|
|
861
|
+
version = "4.1.0"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "708b509edf7889e53d7efb0ffadd994cc6c2345ccb62f55cfd6b0682165e4fa6"
|
|
864
|
+
dependencies = [
|
|
865
|
+
"aes",
|
|
866
|
+
"block-padding",
|
|
867
|
+
"cbc",
|
|
868
|
+
"dbus",
|
|
869
|
+
"fastrand",
|
|
870
|
+
"hkdf",
|
|
871
|
+
"num",
|
|
872
|
+
"once_cell",
|
|
873
|
+
"sha2",
|
|
874
|
+
"zeroize",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "der"
|
|
879
|
+
version = "0.7.10"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"const-oid",
|
|
884
|
+
"pem-rfc7468",
|
|
885
|
+
"zeroize",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "derive_more"
|
|
890
|
+
version = "2.1.1"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"derive_more-impl",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "derive_more-impl"
|
|
899
|
+
version = "2.1.1"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"convert_case",
|
|
904
|
+
"proc-macro2",
|
|
905
|
+
"quote",
|
|
906
|
+
"rustc_version",
|
|
907
|
+
"syn",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "digest"
|
|
912
|
+
version = "0.10.7"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"block-buffer",
|
|
917
|
+
"const-oid",
|
|
918
|
+
"crypto-common",
|
|
919
|
+
"subtle",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "displaydoc"
|
|
924
|
+
version = "0.2.6"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"proc-macro2",
|
|
929
|
+
"quote",
|
|
930
|
+
"syn",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "document-features"
|
|
935
|
+
version = "0.2.12"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"litrs",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "ecdsa"
|
|
944
|
+
version = "0.16.9"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"der",
|
|
949
|
+
"digest",
|
|
950
|
+
"elliptic-curve",
|
|
951
|
+
"rfc6979",
|
|
952
|
+
"signature",
|
|
953
|
+
"spki",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "ed25519"
|
|
958
|
+
version = "2.2.3"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"signature",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "ed25519-dalek"
|
|
967
|
+
version = "2.2.0"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"curve25519-dalek",
|
|
972
|
+
"ed25519",
|
|
973
|
+
"sha2",
|
|
974
|
+
"subtle",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "elliptic-curve"
|
|
979
|
+
version = "0.13.8"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"base16ct",
|
|
984
|
+
"crypto-bigint",
|
|
985
|
+
"digest",
|
|
986
|
+
"ff",
|
|
987
|
+
"generic-array",
|
|
988
|
+
"group",
|
|
989
|
+
"pkcs8",
|
|
990
|
+
"rand_core 0.6.4",
|
|
991
|
+
"sec1",
|
|
992
|
+
"subtle",
|
|
993
|
+
"zeroize",
|
|
994
|
+
]
|
|
995
|
+
|
|
996
|
+
[[package]]
|
|
997
|
+
name = "endi"
|
|
998
|
+
version = "1.1.1"
|
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
+
checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "enumflags2"
|
|
1004
|
+
version = "0.7.12"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"enumflags2_derive",
|
|
1009
|
+
"serde",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "enumflags2_derive"
|
|
1014
|
+
version = "0.7.12"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"proc-macro2",
|
|
1019
|
+
"quote",
|
|
1020
|
+
"syn",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "equivalent"
|
|
1025
|
+
version = "1.0.2"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "errno"
|
|
1031
|
+
version = "0.3.14"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1034
|
+
dependencies = [
|
|
1035
|
+
"libc",
|
|
1036
|
+
"windows-sys 0.61.2",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "event-listener"
|
|
1041
|
+
version = "5.4.1"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"concurrent-queue",
|
|
1046
|
+
"parking",
|
|
1047
|
+
"pin-project-lite",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "event-listener-strategy"
|
|
1052
|
+
version = "0.5.4"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
1055
|
+
dependencies = [
|
|
1056
|
+
"event-listener",
|
|
1057
|
+
"pin-project-lite",
|
|
1058
|
+
]
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "fastrand"
|
|
1062
|
+
version = "2.4.1"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "ff"
|
|
1068
|
+
version = "0.13.1"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
|
1071
|
+
dependencies = [
|
|
1072
|
+
"rand_core 0.6.4",
|
|
1073
|
+
"subtle",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "fiat-crypto"
|
|
1078
|
+
version = "0.2.9"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "find-crate"
|
|
1084
|
+
version = "0.6.3"
|
|
1085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1086
|
+
checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2"
|
|
1087
|
+
dependencies = [
|
|
1088
|
+
"toml",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "find-msvc-tools"
|
|
1093
|
+
version = "0.1.9"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "fluent"
|
|
1099
|
+
version = "0.16.1"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "bb74634707bebd0ce645a981148e8fb8c7bccd4c33c652aeffd28bf2f96d555a"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"fluent-bundle",
|
|
1104
|
+
"unic-langid",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "fluent-bundle"
|
|
1109
|
+
version = "0.15.3"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "7fe0a21ee80050c678013f82edf4b705fe2f26f1f9877593d13198612503f493"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"fluent-langneg",
|
|
1114
|
+
"fluent-syntax",
|
|
1115
|
+
"intl-memoizer",
|
|
1116
|
+
"intl_pluralrules",
|
|
1117
|
+
"rustc-hash 1.1.0",
|
|
1118
|
+
"self_cell 0.10.3",
|
|
1119
|
+
"smallvec",
|
|
1120
|
+
"unic-langid",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "fluent-langneg"
|
|
1125
|
+
version = "0.13.1"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "7eebbe59450baee8282d71676f3bfed5689aeab00b27545e83e5f14b1195e8b0"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"unic-langid",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "fluent-syntax"
|
|
1134
|
+
version = "0.11.1"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "2a530c4694a6a8d528794ee9bbd8ba0122e779629ac908d15ad5a7ae7763a33d"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"thiserror 1.0.69",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "fnv"
|
|
1143
|
+
version = "1.0.7"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "foldhash"
|
|
1149
|
+
version = "0.1.5"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "form_urlencoded"
|
|
1155
|
+
version = "1.2.2"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1158
|
+
dependencies = [
|
|
1159
|
+
"percent-encoding",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "futures"
|
|
1164
|
+
version = "0.3.32"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"futures-channel",
|
|
1169
|
+
"futures-core",
|
|
1170
|
+
"futures-executor",
|
|
1171
|
+
"futures-io",
|
|
1172
|
+
"futures-sink",
|
|
1173
|
+
"futures-task",
|
|
1174
|
+
"futures-util",
|
|
1175
|
+
]
|
|
1176
|
+
|
|
1177
|
+
[[package]]
|
|
1178
|
+
name = "futures-channel"
|
|
1179
|
+
version = "0.3.32"
|
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1182
|
+
dependencies = [
|
|
1183
|
+
"futures-core",
|
|
1184
|
+
"futures-sink",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "futures-core"
|
|
1189
|
+
version = "0.3.32"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "futures-executor"
|
|
1195
|
+
version = "0.3.32"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
1198
|
+
dependencies = [
|
|
1199
|
+
"futures-core",
|
|
1200
|
+
"futures-task",
|
|
1201
|
+
"futures-util",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "futures-io"
|
|
1206
|
+
version = "0.3.32"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "futures-lite"
|
|
1212
|
+
version = "2.6.1"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"fastrand",
|
|
1217
|
+
"futures-core",
|
|
1218
|
+
"futures-io",
|
|
1219
|
+
"parking",
|
|
1220
|
+
"pin-project-lite",
|
|
1221
|
+
]
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "futures-macro"
|
|
1225
|
+
version = "0.3.32"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"proc-macro2",
|
|
1230
|
+
"quote",
|
|
1231
|
+
"syn",
|
|
1232
|
+
]
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "futures-sink"
|
|
1236
|
+
version = "0.3.32"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "futures-task"
|
|
1242
|
+
version = "0.3.32"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "futures-util"
|
|
1248
|
+
version = "0.3.32"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"futures-channel",
|
|
1253
|
+
"futures-core",
|
|
1254
|
+
"futures-io",
|
|
1255
|
+
"futures-macro",
|
|
1256
|
+
"futures-sink",
|
|
1257
|
+
"futures-task",
|
|
1258
|
+
"memchr",
|
|
1259
|
+
"pin-project-lite",
|
|
1260
|
+
"slab",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "generic-array"
|
|
1265
|
+
version = "0.14.7"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1268
|
+
dependencies = [
|
|
1269
|
+
"typenum",
|
|
1270
|
+
"version_check",
|
|
1271
|
+
"zeroize",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "getrandom"
|
|
1276
|
+
version = "0.2.17"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"cfg-if",
|
|
1281
|
+
"libc",
|
|
1282
|
+
"wasi",
|
|
1283
|
+
]
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "getrandom"
|
|
1287
|
+
version = "0.3.4"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"cfg-if",
|
|
1292
|
+
"libc",
|
|
1293
|
+
"r-efi 5.3.0",
|
|
1294
|
+
"wasip2",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "getrandom"
|
|
1299
|
+
version = "0.4.2"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"cfg-if",
|
|
1304
|
+
"libc",
|
|
1305
|
+
"r-efi 6.0.0",
|
|
1306
|
+
"wasip2",
|
|
1307
|
+
"wasip3",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "ghash"
|
|
1312
|
+
version = "0.5.1"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"opaque-debug",
|
|
1317
|
+
"polyval",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "globset"
|
|
1322
|
+
version = "0.4.18"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"aho-corasick",
|
|
1327
|
+
"bstr",
|
|
1328
|
+
"log",
|
|
1329
|
+
"regex-automata",
|
|
1330
|
+
"regex-syntax",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "group"
|
|
1335
|
+
version = "0.13.0"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"ff",
|
|
1340
|
+
"rand_core 0.6.4",
|
|
1341
|
+
"subtle",
|
|
1342
|
+
]
|
|
1343
|
+
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "hashbrown"
|
|
1346
|
+
version = "0.15.5"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1349
|
+
dependencies = [
|
|
1350
|
+
"foldhash",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "hashbrown"
|
|
1355
|
+
version = "0.17.1"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "heck"
|
|
1361
|
+
version = "0.5.0"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1364
|
+
|
|
1365
|
+
[[package]]
|
|
1366
|
+
name = "hermit-abi"
|
|
1367
|
+
version = "0.5.2"
|
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1369
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "hex"
|
|
1373
|
+
version = "0.4.3"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "hkdf"
|
|
1379
|
+
version = "0.12.4"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"hmac",
|
|
1384
|
+
]
|
|
1385
|
+
|
|
1386
|
+
[[package]]
|
|
1387
|
+
name = "hmac"
|
|
1388
|
+
version = "0.12.1"
|
|
1389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1390
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1391
|
+
dependencies = [
|
|
1392
|
+
"digest",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "http"
|
|
1397
|
+
version = "1.4.1"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
|
|
1400
|
+
dependencies = [
|
|
1401
|
+
"bytes",
|
|
1402
|
+
"itoa",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "http-body"
|
|
1407
|
+
version = "1.0.1"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"bytes",
|
|
1412
|
+
"http",
|
|
1413
|
+
]
|
|
1414
|
+
|
|
1415
|
+
[[package]]
|
|
1416
|
+
name = "http-body-util"
|
|
1417
|
+
version = "0.1.3"
|
|
1418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1419
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1420
|
+
dependencies = [
|
|
1421
|
+
"bytes",
|
|
1422
|
+
"futures-core",
|
|
1423
|
+
"http",
|
|
1424
|
+
"http-body",
|
|
1425
|
+
"pin-project-lite",
|
|
1426
|
+
]
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "httparse"
|
|
1430
|
+
version = "1.10.1"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "httpdate"
|
|
1436
|
+
version = "1.0.3"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "hyper"
|
|
1442
|
+
version = "1.10.1"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"atomic-waker",
|
|
1447
|
+
"bytes",
|
|
1448
|
+
"futures-channel",
|
|
1449
|
+
"futures-core",
|
|
1450
|
+
"http",
|
|
1451
|
+
"http-body",
|
|
1452
|
+
"httparse",
|
|
1453
|
+
"httpdate",
|
|
1454
|
+
"itoa",
|
|
1455
|
+
"pin-project-lite",
|
|
1456
|
+
"smallvec",
|
|
1457
|
+
"tokio",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "hyper-util"
|
|
1462
|
+
version = "0.1.20"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"bytes",
|
|
1467
|
+
"http",
|
|
1468
|
+
"http-body",
|
|
1469
|
+
"hyper",
|
|
1470
|
+
"pin-project-lite",
|
|
1471
|
+
"tokio",
|
|
1472
|
+
"tower-service",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "i18n-config"
|
|
1477
|
+
version = "0.4.8"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "3e06b90c8a0d252e203c94344b21e35a30f3a3a85dc7db5af8f8df9f3e0c63ef"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"basic-toml",
|
|
1482
|
+
"log",
|
|
1483
|
+
"serde",
|
|
1484
|
+
"serde_derive",
|
|
1485
|
+
"thiserror 1.0.69",
|
|
1486
|
+
"unic-langid",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "i18n-embed"
|
|
1491
|
+
version = "0.15.4"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "669ffc2c93f97e6ddf06ddbe999fcd6782e3342978bb85f7d3c087c7978404c4"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"arc-swap",
|
|
1496
|
+
"fluent",
|
|
1497
|
+
"fluent-langneg",
|
|
1498
|
+
"fluent-syntax",
|
|
1499
|
+
"i18n-embed-impl",
|
|
1500
|
+
"intl-memoizer",
|
|
1501
|
+
"log",
|
|
1502
|
+
"parking_lot",
|
|
1503
|
+
"rust-embed",
|
|
1504
|
+
"thiserror 1.0.69",
|
|
1505
|
+
"unic-langid",
|
|
1506
|
+
"walkdir",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "i18n-embed-fl"
|
|
1511
|
+
version = "0.9.4"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "04b2969d0b3fc6143776c535184c19722032b43e6a642d710fa3f88faec53c2d"
|
|
1514
|
+
dependencies = [
|
|
1515
|
+
"find-crate",
|
|
1516
|
+
"fluent",
|
|
1517
|
+
"fluent-syntax",
|
|
1518
|
+
"i18n-config",
|
|
1519
|
+
"i18n-embed",
|
|
1520
|
+
"proc-macro-error2",
|
|
1521
|
+
"proc-macro2",
|
|
1522
|
+
"quote",
|
|
1523
|
+
"strsim",
|
|
1524
|
+
"syn",
|
|
1525
|
+
"unic-langid",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "i18n-embed-impl"
|
|
1530
|
+
version = "0.8.4"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "0f2cc0e0523d1fe6fc2c6f66e5038624ea8091b3e7748b5e8e0c84b1698db6c2"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"find-crate",
|
|
1535
|
+
"i18n-config",
|
|
1536
|
+
"proc-macro2",
|
|
1537
|
+
"quote",
|
|
1538
|
+
"syn",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "id-arena"
|
|
1543
|
+
version = "2.3.0"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "ignore"
|
|
1549
|
+
version = "0.4.25"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"crossbeam-deque",
|
|
1554
|
+
"globset",
|
|
1555
|
+
"log",
|
|
1556
|
+
"memchr",
|
|
1557
|
+
"regex-automata",
|
|
1558
|
+
"same-file",
|
|
1559
|
+
"walkdir",
|
|
1560
|
+
"winapi-util",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "indexmap"
|
|
1565
|
+
version = "2.14.0"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"equivalent",
|
|
1570
|
+
"hashbrown 0.17.1",
|
|
1571
|
+
"serde",
|
|
1572
|
+
"serde_core",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "indoc"
|
|
1577
|
+
version = "2.0.7"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"rustversion",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "inout"
|
|
1586
|
+
version = "0.1.4"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"block-padding",
|
|
1591
|
+
"generic-array",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "intl-memoizer"
|
|
1596
|
+
version = "0.5.3"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "310da2e345f5eb861e7a07ee182262e94975051db9e4223e909ba90f392f163f"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"type-map",
|
|
1601
|
+
"unic-langid",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "intl_pluralrules"
|
|
1606
|
+
version = "7.0.2"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
|
|
1609
|
+
dependencies = [
|
|
1610
|
+
"unic-langid",
|
|
1611
|
+
]
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "io_tee"
|
|
1615
|
+
version = "0.1.1"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "4b3f7cef34251886990511df1c61443aa928499d598a9473929ab5a90a527304"
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "is_terminal_polyfill"
|
|
1621
|
+
version = "1.70.2"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "itoa"
|
|
1627
|
+
version = "1.0.18"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "keyring"
|
|
1633
|
+
version = "3.6.3"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "eebcc3aff044e5944a8fbaf69eb277d11986064cba30c468730e8b9909fb551c"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"byteorder",
|
|
1638
|
+
"dbus-secret-service",
|
|
1639
|
+
"log",
|
|
1640
|
+
"secret-service",
|
|
1641
|
+
"security-framework 2.11.1",
|
|
1642
|
+
"security-framework 3.7.0",
|
|
1643
|
+
"windows-sys 0.60.2",
|
|
1644
|
+
"zeroize",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "kovra"
|
|
1649
|
+
version = "0.8.0"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"anyhow",
|
|
1652
|
+
"clap",
|
|
1653
|
+
"comfy-table",
|
|
1654
|
+
"crossterm",
|
|
1655
|
+
"kovra-agent",
|
|
1656
|
+
"kovra-core",
|
|
1657
|
+
"kovra-native-macos",
|
|
1658
|
+
"kovra-providers-aws",
|
|
1659
|
+
"kovra-providers-azure",
|
|
1660
|
+
"kovra-webui",
|
|
1661
|
+
"kovra-wrapper",
|
|
1662
|
+
"rand 0.8.6",
|
|
1663
|
+
"rpassword",
|
|
1664
|
+
"serde_json",
|
|
1665
|
+
"tempfile",
|
|
1666
|
+
"tokio",
|
|
1667
|
+
"zeroize",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "kovra-agent"
|
|
1672
|
+
version = "0.8.0"
|
|
1673
|
+
dependencies = [
|
|
1674
|
+
"kovra-core",
|
|
1675
|
+
"kovra-wrapper",
|
|
1676
|
+
"libc",
|
|
1677
|
+
"serde_json",
|
|
1678
|
+
"ssh-encoding",
|
|
1679
|
+
"ssh-key",
|
|
1680
|
+
"tempfile",
|
|
1681
|
+
"thiserror 2.0.18",
|
|
1682
|
+
"zeroize",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "kovra-core"
|
|
1687
|
+
version = "0.8.0"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"age",
|
|
1690
|
+
"argon2",
|
|
1691
|
+
"blake3",
|
|
1692
|
+
"chacha20poly1305",
|
|
1693
|
+
"hmac",
|
|
1694
|
+
"ignore",
|
|
1695
|
+
"keyring",
|
|
1696
|
+
"proptest",
|
|
1697
|
+
"rand 0.8.6",
|
|
1698
|
+
"redb",
|
|
1699
|
+
"regex",
|
|
1700
|
+
"rsa",
|
|
1701
|
+
"secrecy",
|
|
1702
|
+
"serde",
|
|
1703
|
+
"serde_json",
|
|
1704
|
+
"sha1",
|
|
1705
|
+
"sha2",
|
|
1706
|
+
"ssh-encoding",
|
|
1707
|
+
"ssh-key",
|
|
1708
|
+
"tempfile",
|
|
1709
|
+
"thiserror 2.0.18",
|
|
1710
|
+
"zeroize",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "kovra-ffi"
|
|
1715
|
+
version = "0.8.0"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"kovra-core",
|
|
1718
|
+
"kovra-providers-aws",
|
|
1719
|
+
"kovra-providers-azure",
|
|
1720
|
+
"kovra-wrapper",
|
|
1721
|
+
"pyo3",
|
|
1722
|
+
"rand 0.8.6",
|
|
1723
|
+
"tempfile",
|
|
1724
|
+
"thiserror 2.0.18",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "kovra-native-macos"
|
|
1729
|
+
version = "0.8.0"
|
|
1730
|
+
dependencies = [
|
|
1731
|
+
"block2",
|
|
1732
|
+
"kovra-core",
|
|
1733
|
+
"objc2",
|
|
1734
|
+
"objc2-foundation",
|
|
1735
|
+
"objc2-local-authentication",
|
|
1736
|
+
"wait-timeout",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "kovra-providers-aws"
|
|
1741
|
+
version = "0.8.0"
|
|
1742
|
+
dependencies = [
|
|
1743
|
+
"kovra-core",
|
|
1744
|
+
"wait-timeout",
|
|
1745
|
+
"zeroize",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "kovra-providers-azure"
|
|
1750
|
+
version = "0.8.0"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"kovra-core",
|
|
1753
|
+
"wait-timeout",
|
|
1754
|
+
"zeroize",
|
|
1755
|
+
]
|
|
1756
|
+
|
|
1757
|
+
[[package]]
|
|
1758
|
+
name = "kovra-webui"
|
|
1759
|
+
version = "0.8.0"
|
|
1760
|
+
dependencies = [
|
|
1761
|
+
"axum",
|
|
1762
|
+
"kovra-core",
|
|
1763
|
+
"rand 0.8.6",
|
|
1764
|
+
"serde",
|
|
1765
|
+
"serde_json",
|
|
1766
|
+
"tempfile",
|
|
1767
|
+
"tokio",
|
|
1768
|
+
"tower",
|
|
1769
|
+
"zeroize",
|
|
1770
|
+
]
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "kovra-wrapper"
|
|
1774
|
+
version = "0.8.0"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"kovra-core",
|
|
1777
|
+
"libc",
|
|
1778
|
+
"tempfile",
|
|
1779
|
+
"thiserror 2.0.18",
|
|
1780
|
+
"zeroize",
|
|
1781
|
+
]
|
|
1782
|
+
|
|
1783
|
+
[[package]]
|
|
1784
|
+
name = "lazy_static"
|
|
1785
|
+
version = "1.5.0"
|
|
1786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1788
|
+
dependencies = [
|
|
1789
|
+
"spin",
|
|
1790
|
+
]
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "leb128fmt"
|
|
1794
|
+
version = "0.1.0"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "libc"
|
|
1800
|
+
version = "0.2.186"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "libdbus-sys"
|
|
1806
|
+
version = "0.2.7"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"pkg-config",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "libm"
|
|
1815
|
+
version = "0.2.16"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "linux-raw-sys"
|
|
1821
|
+
version = "0.12.1"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "litrs"
|
|
1827
|
+
version = "1.0.0"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "lock_api"
|
|
1833
|
+
version = "0.4.14"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1836
|
+
dependencies = [
|
|
1837
|
+
"scopeguard",
|
|
1838
|
+
]
|
|
1839
|
+
|
|
1840
|
+
[[package]]
|
|
1841
|
+
name = "log"
|
|
1842
|
+
version = "0.4.30"
|
|
1843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "matchit"
|
|
1848
|
+
version = "0.8.4"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1851
|
+
|
|
1852
|
+
[[package]]
|
|
1853
|
+
name = "memchr"
|
|
1854
|
+
version = "2.8.1"
|
|
1855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
1857
|
+
|
|
1858
|
+
[[package]]
|
|
1859
|
+
name = "memoffset"
|
|
1860
|
+
version = "0.9.1"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"autocfg",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "mime"
|
|
1869
|
+
version = "0.3.17"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1872
|
+
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "minimal-lexical"
|
|
1875
|
+
version = "0.2.1"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "mio"
|
|
1881
|
+
version = "1.2.1"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"libc",
|
|
1886
|
+
"log",
|
|
1887
|
+
"wasi",
|
|
1888
|
+
"windows-sys 0.61.2",
|
|
1889
|
+
]
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "nix"
|
|
1893
|
+
version = "0.29.0"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"bitflags",
|
|
1898
|
+
"cfg-if",
|
|
1899
|
+
"cfg_aliases",
|
|
1900
|
+
"libc",
|
|
1901
|
+
"memoffset",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "nom"
|
|
1906
|
+
version = "7.1.3"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"memchr",
|
|
1911
|
+
"minimal-lexical",
|
|
1912
|
+
]
|
|
1913
|
+
|
|
1914
|
+
[[package]]
|
|
1915
|
+
name = "num"
|
|
1916
|
+
version = "0.4.3"
|
|
1917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1918
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1919
|
+
dependencies = [
|
|
1920
|
+
"num-bigint",
|
|
1921
|
+
"num-complex",
|
|
1922
|
+
"num-integer",
|
|
1923
|
+
"num-iter",
|
|
1924
|
+
"num-rational",
|
|
1925
|
+
"num-traits",
|
|
1926
|
+
]
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "num-bigint"
|
|
1930
|
+
version = "0.4.6"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1933
|
+
dependencies = [
|
|
1934
|
+
"num-integer",
|
|
1935
|
+
"num-traits",
|
|
1936
|
+
]
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "num-bigint-dig"
|
|
1940
|
+
version = "0.8.6"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
1943
|
+
dependencies = [
|
|
1944
|
+
"lazy_static",
|
|
1945
|
+
"libm",
|
|
1946
|
+
"num-integer",
|
|
1947
|
+
"num-iter",
|
|
1948
|
+
"num-traits",
|
|
1949
|
+
"rand 0.8.6",
|
|
1950
|
+
"smallvec",
|
|
1951
|
+
"zeroize",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "num-complex"
|
|
1956
|
+
version = "0.4.6"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"num-traits",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "num-integer"
|
|
1965
|
+
version = "0.1.46"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"num-traits",
|
|
1970
|
+
]
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "num-iter"
|
|
1974
|
+
version = "0.1.45"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1977
|
+
dependencies = [
|
|
1978
|
+
"autocfg",
|
|
1979
|
+
"num-integer",
|
|
1980
|
+
"num-traits",
|
|
1981
|
+
]
|
|
1982
|
+
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "num-rational"
|
|
1985
|
+
version = "0.4.2"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1988
|
+
dependencies = [
|
|
1989
|
+
"num-bigint",
|
|
1990
|
+
"num-integer",
|
|
1991
|
+
"num-traits",
|
|
1992
|
+
]
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "num-traits"
|
|
1996
|
+
version = "0.2.19"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1999
|
+
dependencies = [
|
|
2000
|
+
"autocfg",
|
|
2001
|
+
"libm",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "objc2"
|
|
2006
|
+
version = "0.6.4"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
2009
|
+
dependencies = [
|
|
2010
|
+
"objc2-encode",
|
|
2011
|
+
]
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "objc2-encode"
|
|
2015
|
+
version = "4.1.0"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "objc2-foundation"
|
|
2021
|
+
version = "0.3.2"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
2024
|
+
dependencies = [
|
|
2025
|
+
"bitflags",
|
|
2026
|
+
"objc2",
|
|
2027
|
+
]
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "objc2-local-authentication"
|
|
2031
|
+
version = "0.3.2"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "e48e0b8b339e0d9d2ed4416b7f93f9d4daadff7d4dd797f89867cde11aeac607"
|
|
2034
|
+
dependencies = [
|
|
2035
|
+
"block2",
|
|
2036
|
+
"objc2",
|
|
2037
|
+
"objc2-foundation",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "once_cell"
|
|
2042
|
+
version = "1.21.4"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2045
|
+
|
|
2046
|
+
[[package]]
|
|
2047
|
+
name = "once_cell_polyfill"
|
|
2048
|
+
version = "1.70.2"
|
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2050
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2051
|
+
|
|
2052
|
+
[[package]]
|
|
2053
|
+
name = "opaque-debug"
|
|
2054
|
+
version = "0.3.1"
|
|
2055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2056
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "ordered-stream"
|
|
2060
|
+
version = "0.2.0"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
|
|
2063
|
+
dependencies = [
|
|
2064
|
+
"futures-core",
|
|
2065
|
+
"pin-project-lite",
|
|
2066
|
+
]
|
|
2067
|
+
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "p256"
|
|
2070
|
+
version = "0.13.2"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
|
|
2073
|
+
dependencies = [
|
|
2074
|
+
"ecdsa",
|
|
2075
|
+
"elliptic-curve",
|
|
2076
|
+
"primeorder",
|
|
2077
|
+
"sha2",
|
|
2078
|
+
]
|
|
2079
|
+
|
|
2080
|
+
[[package]]
|
|
2081
|
+
name = "p384"
|
|
2082
|
+
version = "0.13.1"
|
|
2083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2084
|
+
checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
|
|
2085
|
+
dependencies = [
|
|
2086
|
+
"ecdsa",
|
|
2087
|
+
"elliptic-curve",
|
|
2088
|
+
"primeorder",
|
|
2089
|
+
"sha2",
|
|
2090
|
+
]
|
|
2091
|
+
|
|
2092
|
+
[[package]]
|
|
2093
|
+
name = "p521"
|
|
2094
|
+
version = "0.13.3"
|
|
2095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2096
|
+
checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
|
|
2097
|
+
dependencies = [
|
|
2098
|
+
"base16ct",
|
|
2099
|
+
"ecdsa",
|
|
2100
|
+
"elliptic-curve",
|
|
2101
|
+
"primeorder",
|
|
2102
|
+
"rand_core 0.6.4",
|
|
2103
|
+
"sha2",
|
|
2104
|
+
]
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "parking"
|
|
2108
|
+
version = "2.2.1"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2111
|
+
|
|
2112
|
+
[[package]]
|
|
2113
|
+
name = "parking_lot"
|
|
2114
|
+
version = "0.12.5"
|
|
2115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2117
|
+
dependencies = [
|
|
2118
|
+
"lock_api",
|
|
2119
|
+
"parking_lot_core",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "parking_lot_core"
|
|
2124
|
+
version = "0.9.12"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"cfg-if",
|
|
2129
|
+
"libc",
|
|
2130
|
+
"redox_syscall",
|
|
2131
|
+
"smallvec",
|
|
2132
|
+
"windows-link",
|
|
2133
|
+
]
|
|
2134
|
+
|
|
2135
|
+
[[package]]
|
|
2136
|
+
name = "password-hash"
|
|
2137
|
+
version = "0.5.0"
|
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2139
|
+
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
|
|
2140
|
+
dependencies = [
|
|
2141
|
+
"base64ct",
|
|
2142
|
+
"rand_core 0.6.4",
|
|
2143
|
+
"subtle",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "pbkdf2"
|
|
2148
|
+
version = "0.12.2"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
2151
|
+
dependencies = [
|
|
2152
|
+
"digest",
|
|
2153
|
+
"hmac",
|
|
2154
|
+
]
|
|
2155
|
+
|
|
2156
|
+
[[package]]
|
|
2157
|
+
name = "pem-rfc7468"
|
|
2158
|
+
version = "0.7.0"
|
|
2159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2160
|
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
|
2161
|
+
dependencies = [
|
|
2162
|
+
"base64ct",
|
|
2163
|
+
]
|
|
2164
|
+
|
|
2165
|
+
[[package]]
|
|
2166
|
+
name = "percent-encoding"
|
|
2167
|
+
version = "2.3.2"
|
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "pin-project"
|
|
2173
|
+
version = "1.1.13"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"pin-project-internal",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "pin-project-internal"
|
|
2182
|
+
version = "1.1.13"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"proc-macro2",
|
|
2187
|
+
"quote",
|
|
2188
|
+
"syn",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "pin-project-lite"
|
|
2193
|
+
version = "0.2.17"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "piper"
|
|
2199
|
+
version = "0.2.5"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
|
|
2202
|
+
dependencies = [
|
|
2203
|
+
"atomic-waker",
|
|
2204
|
+
"fastrand",
|
|
2205
|
+
"futures-io",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "pkcs1"
|
|
2210
|
+
version = "0.7.5"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"der",
|
|
2215
|
+
"pkcs8",
|
|
2216
|
+
"spki",
|
|
2217
|
+
]
|
|
2218
|
+
|
|
2219
|
+
[[package]]
|
|
2220
|
+
name = "pkcs8"
|
|
2221
|
+
version = "0.10.2"
|
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
2224
|
+
dependencies = [
|
|
2225
|
+
"der",
|
|
2226
|
+
"spki",
|
|
2227
|
+
]
|
|
2228
|
+
|
|
2229
|
+
[[package]]
|
|
2230
|
+
name = "pkg-config"
|
|
2231
|
+
version = "0.3.33"
|
|
2232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2234
|
+
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "polling"
|
|
2237
|
+
version = "3.11.0"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"cfg-if",
|
|
2242
|
+
"concurrent-queue",
|
|
2243
|
+
"hermit-abi",
|
|
2244
|
+
"pin-project-lite",
|
|
2245
|
+
"rustix",
|
|
2246
|
+
"windows-sys 0.61.2",
|
|
2247
|
+
]
|
|
2248
|
+
|
|
2249
|
+
[[package]]
|
|
2250
|
+
name = "poly1305"
|
|
2251
|
+
version = "0.8.0"
|
|
2252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2253
|
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
|
2254
|
+
dependencies = [
|
|
2255
|
+
"cpufeatures 0.2.17",
|
|
2256
|
+
"opaque-debug",
|
|
2257
|
+
"universal-hash",
|
|
2258
|
+
]
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "polyval"
|
|
2262
|
+
version = "0.6.2"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
2265
|
+
dependencies = [
|
|
2266
|
+
"cfg-if",
|
|
2267
|
+
"cpufeatures 0.2.17",
|
|
2268
|
+
"opaque-debug",
|
|
2269
|
+
"universal-hash",
|
|
2270
|
+
]
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "portable-atomic"
|
|
2274
|
+
version = "1.13.1"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2277
|
+
|
|
2278
|
+
[[package]]
|
|
2279
|
+
name = "ppv-lite86"
|
|
2280
|
+
version = "0.2.21"
|
|
2281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2283
|
+
dependencies = [
|
|
2284
|
+
"zerocopy",
|
|
2285
|
+
]
|
|
2286
|
+
|
|
2287
|
+
[[package]]
|
|
2288
|
+
name = "prettyplease"
|
|
2289
|
+
version = "0.2.37"
|
|
2290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2291
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2292
|
+
dependencies = [
|
|
2293
|
+
"proc-macro2",
|
|
2294
|
+
"syn",
|
|
2295
|
+
]
|
|
2296
|
+
|
|
2297
|
+
[[package]]
|
|
2298
|
+
name = "primeorder"
|
|
2299
|
+
version = "0.13.6"
|
|
2300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
+
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
|
|
2302
|
+
dependencies = [
|
|
2303
|
+
"elliptic-curve",
|
|
2304
|
+
]
|
|
2305
|
+
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "proc-macro-crate"
|
|
2308
|
+
version = "3.5.0"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
2311
|
+
dependencies = [
|
|
2312
|
+
"toml_edit",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "proc-macro-error-attr2"
|
|
2317
|
+
version = "2.0.0"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"proc-macro2",
|
|
2322
|
+
"quote",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "proc-macro-error2"
|
|
2327
|
+
version = "2.0.1"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
2330
|
+
dependencies = [
|
|
2331
|
+
"proc-macro-error-attr2",
|
|
2332
|
+
"proc-macro2",
|
|
2333
|
+
"quote",
|
|
2334
|
+
"syn",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
2337
|
+
[[package]]
|
|
2338
|
+
name = "proc-macro2"
|
|
2339
|
+
version = "1.0.106"
|
|
2340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2341
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2342
|
+
dependencies = [
|
|
2343
|
+
"unicode-ident",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "proptest"
|
|
2348
|
+
version = "1.11.0"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"bit-set",
|
|
2353
|
+
"bit-vec",
|
|
2354
|
+
"bitflags",
|
|
2355
|
+
"num-traits",
|
|
2356
|
+
"rand 0.9.4",
|
|
2357
|
+
"rand_chacha 0.9.0",
|
|
2358
|
+
"rand_xorshift",
|
|
2359
|
+
"regex-syntax",
|
|
2360
|
+
"rusty-fork",
|
|
2361
|
+
"tempfile",
|
|
2362
|
+
"unarray",
|
|
2363
|
+
]
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "pyo3"
|
|
2367
|
+
version = "0.27.2"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"indoc",
|
|
2372
|
+
"libc",
|
|
2373
|
+
"memoffset",
|
|
2374
|
+
"once_cell",
|
|
2375
|
+
"portable-atomic",
|
|
2376
|
+
"pyo3-build-config",
|
|
2377
|
+
"pyo3-ffi",
|
|
2378
|
+
"pyo3-macros",
|
|
2379
|
+
"unindent",
|
|
2380
|
+
]
|
|
2381
|
+
|
|
2382
|
+
[[package]]
|
|
2383
|
+
name = "pyo3-build-config"
|
|
2384
|
+
version = "0.27.2"
|
|
2385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2386
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
2387
|
+
dependencies = [
|
|
2388
|
+
"target-lexicon",
|
|
2389
|
+
]
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "pyo3-ffi"
|
|
2393
|
+
version = "0.27.2"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"libc",
|
|
2398
|
+
"pyo3-build-config",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "pyo3-macros"
|
|
2403
|
+
version = "0.27.2"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
2406
|
+
dependencies = [
|
|
2407
|
+
"proc-macro2",
|
|
2408
|
+
"pyo3-macros-backend",
|
|
2409
|
+
"quote",
|
|
2410
|
+
"syn",
|
|
2411
|
+
]
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "pyo3-macros-backend"
|
|
2415
|
+
version = "0.27.2"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"heck",
|
|
2420
|
+
"proc-macro2",
|
|
2421
|
+
"pyo3-build-config",
|
|
2422
|
+
"quote",
|
|
2423
|
+
"syn",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
2426
|
+
[[package]]
|
|
2427
|
+
name = "quick-error"
|
|
2428
|
+
version = "1.2.3"
|
|
2429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2430
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2431
|
+
|
|
2432
|
+
[[package]]
|
|
2433
|
+
name = "quote"
|
|
2434
|
+
version = "1.0.45"
|
|
2435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2437
|
+
dependencies = [
|
|
2438
|
+
"proc-macro2",
|
|
2439
|
+
]
|
|
2440
|
+
|
|
2441
|
+
[[package]]
|
|
2442
|
+
name = "r-efi"
|
|
2443
|
+
version = "5.3.0"
|
|
2444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "r-efi"
|
|
2449
|
+
version = "6.0.0"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "rand"
|
|
2455
|
+
version = "0.8.6"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2458
|
+
dependencies = [
|
|
2459
|
+
"libc",
|
|
2460
|
+
"rand_chacha 0.3.1",
|
|
2461
|
+
"rand_core 0.6.4",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "rand"
|
|
2466
|
+
version = "0.9.4"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2469
|
+
dependencies = [
|
|
2470
|
+
"rand_chacha 0.9.0",
|
|
2471
|
+
"rand_core 0.9.5",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "rand_chacha"
|
|
2476
|
+
version = "0.3.1"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"ppv-lite86",
|
|
2481
|
+
"rand_core 0.6.4",
|
|
2482
|
+
]
|
|
2483
|
+
|
|
2484
|
+
[[package]]
|
|
2485
|
+
name = "rand_chacha"
|
|
2486
|
+
version = "0.9.0"
|
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2489
|
+
dependencies = [
|
|
2490
|
+
"ppv-lite86",
|
|
2491
|
+
"rand_core 0.9.5",
|
|
2492
|
+
]
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "rand_core"
|
|
2496
|
+
version = "0.6.4"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2499
|
+
dependencies = [
|
|
2500
|
+
"getrandom 0.2.17",
|
|
2501
|
+
]
|
|
2502
|
+
|
|
2503
|
+
[[package]]
|
|
2504
|
+
name = "rand_core"
|
|
2505
|
+
version = "0.9.5"
|
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2508
|
+
dependencies = [
|
|
2509
|
+
"getrandom 0.3.4",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "rand_xorshift"
|
|
2514
|
+
version = "0.4.0"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2517
|
+
dependencies = [
|
|
2518
|
+
"rand_core 0.9.5",
|
|
2519
|
+
]
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "redb"
|
|
2523
|
+
version = "4.1.0"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "8e925444704b5f17d32bf42f5b6e2df050bceebc3dcd6e71cc73dafe8092e839"
|
|
2526
|
+
dependencies = [
|
|
2527
|
+
"libc",
|
|
2528
|
+
]
|
|
2529
|
+
|
|
2530
|
+
[[package]]
|
|
2531
|
+
name = "redox_syscall"
|
|
2532
|
+
version = "0.5.18"
|
|
2533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2535
|
+
dependencies = [
|
|
2536
|
+
"bitflags",
|
|
2537
|
+
]
|
|
2538
|
+
|
|
2539
|
+
[[package]]
|
|
2540
|
+
name = "regex"
|
|
2541
|
+
version = "1.12.3"
|
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
2544
|
+
dependencies = [
|
|
2545
|
+
"aho-corasick",
|
|
2546
|
+
"memchr",
|
|
2547
|
+
"regex-automata",
|
|
2548
|
+
"regex-syntax",
|
|
2549
|
+
]
|
|
2550
|
+
|
|
2551
|
+
[[package]]
|
|
2552
|
+
name = "regex-automata"
|
|
2553
|
+
version = "0.4.14"
|
|
2554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2555
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2556
|
+
dependencies = [
|
|
2557
|
+
"aho-corasick",
|
|
2558
|
+
"memchr",
|
|
2559
|
+
"regex-syntax",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "regex-syntax"
|
|
2564
|
+
version = "0.8.10"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "rfc6979"
|
|
2570
|
+
version = "0.4.0"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"hmac",
|
|
2575
|
+
"subtle",
|
|
2576
|
+
]
|
|
2577
|
+
|
|
2578
|
+
[[package]]
|
|
2579
|
+
name = "rpassword"
|
|
2580
|
+
version = "7.5.4"
|
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2582
|
+
checksum = "2da316a15f47e3d053de9cb2c439650bd8fa4aaeb9365f2e5f27f492ff73c196"
|
|
2583
|
+
dependencies = [
|
|
2584
|
+
"libc",
|
|
2585
|
+
"rtoolbox",
|
|
2586
|
+
"windows-sys 0.61.2",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "rsa"
|
|
2591
|
+
version = "0.9.10"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"const-oid",
|
|
2596
|
+
"digest",
|
|
2597
|
+
"num-bigint-dig",
|
|
2598
|
+
"num-integer",
|
|
2599
|
+
"num-traits",
|
|
2600
|
+
"pkcs1",
|
|
2601
|
+
"pkcs8",
|
|
2602
|
+
"rand_core 0.6.4",
|
|
2603
|
+
"sha2",
|
|
2604
|
+
"signature",
|
|
2605
|
+
"spki",
|
|
2606
|
+
"subtle",
|
|
2607
|
+
"zeroize",
|
|
2608
|
+
]
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "rtoolbox"
|
|
2612
|
+
version = "0.0.5"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"libc",
|
|
2617
|
+
"windows-sys 0.59.0",
|
|
2618
|
+
]
|
|
2619
|
+
|
|
2620
|
+
[[package]]
|
|
2621
|
+
name = "rust-embed"
|
|
2622
|
+
version = "8.11.0"
|
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
+
checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
|
|
2625
|
+
dependencies = [
|
|
2626
|
+
"rust-embed-impl",
|
|
2627
|
+
"rust-embed-utils",
|
|
2628
|
+
"walkdir",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "rust-embed-impl"
|
|
2633
|
+
version = "8.11.0"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"proc-macro2",
|
|
2638
|
+
"quote",
|
|
2639
|
+
"rust-embed-utils",
|
|
2640
|
+
"syn",
|
|
2641
|
+
"walkdir",
|
|
2642
|
+
]
|
|
2643
|
+
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "rust-embed-utils"
|
|
2646
|
+
version = "8.11.0"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"sha2",
|
|
2651
|
+
"walkdir",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "rustc-hash"
|
|
2656
|
+
version = "1.1.0"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "rustc-hash"
|
|
2662
|
+
version = "2.1.2"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2665
|
+
|
|
2666
|
+
[[package]]
|
|
2667
|
+
name = "rustc_version"
|
|
2668
|
+
version = "0.4.1"
|
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2670
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2671
|
+
dependencies = [
|
|
2672
|
+
"semver",
|
|
2673
|
+
]
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "rustix"
|
|
2677
|
+
version = "1.1.4"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
2680
|
+
dependencies = [
|
|
2681
|
+
"bitflags",
|
|
2682
|
+
"errno",
|
|
2683
|
+
"libc",
|
|
2684
|
+
"linux-raw-sys",
|
|
2685
|
+
"windows-sys 0.61.2",
|
|
2686
|
+
]
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "rustversion"
|
|
2690
|
+
version = "1.0.22"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "rusty-fork"
|
|
2696
|
+
version = "0.3.1"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"fnv",
|
|
2701
|
+
"quick-error",
|
|
2702
|
+
"tempfile",
|
|
2703
|
+
"wait-timeout",
|
|
2704
|
+
]
|
|
2705
|
+
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "ryu"
|
|
2708
|
+
version = "1.0.23"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2711
|
+
|
|
2712
|
+
[[package]]
|
|
2713
|
+
name = "salsa20"
|
|
2714
|
+
version = "0.10.2"
|
|
2715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
+
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"cipher",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "same-file"
|
|
2723
|
+
version = "1.0.6"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2726
|
+
dependencies = [
|
|
2727
|
+
"winapi-util",
|
|
2728
|
+
]
|
|
2729
|
+
|
|
2730
|
+
[[package]]
|
|
2731
|
+
name = "scopeguard"
|
|
2732
|
+
version = "1.2.0"
|
|
2733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2734
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2735
|
+
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "scrypt"
|
|
2738
|
+
version = "0.11.0"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"pbkdf2",
|
|
2743
|
+
"salsa20",
|
|
2744
|
+
"sha2",
|
|
2745
|
+
]
|
|
2746
|
+
|
|
2747
|
+
[[package]]
|
|
2748
|
+
name = "sec1"
|
|
2749
|
+
version = "0.7.3"
|
|
2750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|
2752
|
+
dependencies = [
|
|
2753
|
+
"base16ct",
|
|
2754
|
+
"der",
|
|
2755
|
+
"generic-array",
|
|
2756
|
+
"pkcs8",
|
|
2757
|
+
"subtle",
|
|
2758
|
+
"zeroize",
|
|
2759
|
+
]
|
|
2760
|
+
|
|
2761
|
+
[[package]]
|
|
2762
|
+
name = "secrecy"
|
|
2763
|
+
version = "0.10.3"
|
|
2764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2765
|
+
checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
|
|
2766
|
+
dependencies = [
|
|
2767
|
+
"zeroize",
|
|
2768
|
+
]
|
|
2769
|
+
|
|
2770
|
+
[[package]]
|
|
2771
|
+
name = "secret-service"
|
|
2772
|
+
version = "4.0.0"
|
|
2773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
+
checksum = "e4d35ad99a181be0a60ffcbe85d680d98f87bdc4d7644ade319b87076b9dbfd4"
|
|
2775
|
+
dependencies = [
|
|
2776
|
+
"aes",
|
|
2777
|
+
"cbc",
|
|
2778
|
+
"futures-util",
|
|
2779
|
+
"generic-array",
|
|
2780
|
+
"hkdf",
|
|
2781
|
+
"num",
|
|
2782
|
+
"once_cell",
|
|
2783
|
+
"rand 0.8.6",
|
|
2784
|
+
"serde",
|
|
2785
|
+
"sha2",
|
|
2786
|
+
"zbus",
|
|
2787
|
+
]
|
|
2788
|
+
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "security-framework"
|
|
2791
|
+
version = "2.11.1"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2794
|
+
dependencies = [
|
|
2795
|
+
"bitflags",
|
|
2796
|
+
"core-foundation 0.9.4",
|
|
2797
|
+
"core-foundation-sys",
|
|
2798
|
+
"libc",
|
|
2799
|
+
"security-framework-sys",
|
|
2800
|
+
]
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "security-framework"
|
|
2804
|
+
version = "3.7.0"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
2807
|
+
dependencies = [
|
|
2808
|
+
"bitflags",
|
|
2809
|
+
"core-foundation 0.10.1",
|
|
2810
|
+
"core-foundation-sys",
|
|
2811
|
+
"libc",
|
|
2812
|
+
"security-framework-sys",
|
|
2813
|
+
]
|
|
2814
|
+
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "security-framework-sys"
|
|
2817
|
+
version = "2.17.0"
|
|
2818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2820
|
+
dependencies = [
|
|
2821
|
+
"core-foundation-sys",
|
|
2822
|
+
"libc",
|
|
2823
|
+
]
|
|
2824
|
+
|
|
2825
|
+
[[package]]
|
|
2826
|
+
name = "self_cell"
|
|
2827
|
+
version = "0.10.3"
|
|
2828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
+
checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d"
|
|
2830
|
+
dependencies = [
|
|
2831
|
+
"self_cell 1.2.2",
|
|
2832
|
+
]
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "self_cell"
|
|
2836
|
+
version = "1.2.2"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "semver"
|
|
2842
|
+
version = "1.0.28"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2845
|
+
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "serde"
|
|
2848
|
+
version = "1.0.228"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2851
|
+
dependencies = [
|
|
2852
|
+
"serde_core",
|
|
2853
|
+
"serde_derive",
|
|
2854
|
+
]
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "serde_core"
|
|
2858
|
+
version = "1.0.228"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2861
|
+
dependencies = [
|
|
2862
|
+
"serde_derive",
|
|
2863
|
+
]
|
|
2864
|
+
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "serde_derive"
|
|
2867
|
+
version = "1.0.228"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2870
|
+
dependencies = [
|
|
2871
|
+
"proc-macro2",
|
|
2872
|
+
"quote",
|
|
2873
|
+
"syn",
|
|
2874
|
+
]
|
|
2875
|
+
|
|
2876
|
+
[[package]]
|
|
2877
|
+
name = "serde_json"
|
|
2878
|
+
version = "1.0.150"
|
|
2879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2881
|
+
dependencies = [
|
|
2882
|
+
"itoa",
|
|
2883
|
+
"memchr",
|
|
2884
|
+
"serde",
|
|
2885
|
+
"serde_core",
|
|
2886
|
+
"zmij",
|
|
2887
|
+
]
|
|
2888
|
+
|
|
2889
|
+
[[package]]
|
|
2890
|
+
name = "serde_path_to_error"
|
|
2891
|
+
version = "0.1.20"
|
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
2894
|
+
dependencies = [
|
|
2895
|
+
"itoa",
|
|
2896
|
+
"serde",
|
|
2897
|
+
"serde_core",
|
|
2898
|
+
]
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "serde_repr"
|
|
2902
|
+
version = "0.1.20"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
2905
|
+
dependencies = [
|
|
2906
|
+
"proc-macro2",
|
|
2907
|
+
"quote",
|
|
2908
|
+
"syn",
|
|
2909
|
+
]
|
|
2910
|
+
|
|
2911
|
+
[[package]]
|
|
2912
|
+
name = "serde_urlencoded"
|
|
2913
|
+
version = "0.7.1"
|
|
2914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2916
|
+
dependencies = [
|
|
2917
|
+
"form_urlencoded",
|
|
2918
|
+
"itoa",
|
|
2919
|
+
"ryu",
|
|
2920
|
+
"serde",
|
|
2921
|
+
]
|
|
2922
|
+
|
|
2923
|
+
[[package]]
|
|
2924
|
+
name = "sha1"
|
|
2925
|
+
version = "0.10.6"
|
|
2926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2927
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2928
|
+
dependencies = [
|
|
2929
|
+
"cfg-if",
|
|
2930
|
+
"cpufeatures 0.2.17",
|
|
2931
|
+
"digest",
|
|
2932
|
+
]
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "sha2"
|
|
2936
|
+
version = "0.10.9"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2939
|
+
dependencies = [
|
|
2940
|
+
"cfg-if",
|
|
2941
|
+
"cpufeatures 0.2.17",
|
|
2942
|
+
"digest",
|
|
2943
|
+
]
|
|
2944
|
+
|
|
2945
|
+
[[package]]
|
|
2946
|
+
name = "shlex"
|
|
2947
|
+
version = "2.0.1"
|
|
2948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2949
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2950
|
+
|
|
2951
|
+
[[package]]
|
|
2952
|
+
name = "signal-hook"
|
|
2953
|
+
version = "0.3.18"
|
|
2954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
2956
|
+
dependencies = [
|
|
2957
|
+
"libc",
|
|
2958
|
+
"signal-hook-registry",
|
|
2959
|
+
]
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "signal-hook-mio"
|
|
2963
|
+
version = "0.2.5"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
2966
|
+
dependencies = [
|
|
2967
|
+
"libc",
|
|
2968
|
+
"mio",
|
|
2969
|
+
"signal-hook",
|
|
2970
|
+
]
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "signal-hook-registry"
|
|
2974
|
+
version = "1.4.8"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2977
|
+
dependencies = [
|
|
2978
|
+
"errno",
|
|
2979
|
+
"libc",
|
|
2980
|
+
]
|
|
2981
|
+
|
|
2982
|
+
[[package]]
|
|
2983
|
+
name = "signature"
|
|
2984
|
+
version = "2.2.0"
|
|
2985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
2987
|
+
dependencies = [
|
|
2988
|
+
"digest",
|
|
2989
|
+
"rand_core 0.6.4",
|
|
2990
|
+
]
|
|
2991
|
+
|
|
2992
|
+
[[package]]
|
|
2993
|
+
name = "slab"
|
|
2994
|
+
version = "0.4.12"
|
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "smallvec"
|
|
3000
|
+
version = "1.15.1"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3003
|
+
|
|
3004
|
+
[[package]]
|
|
3005
|
+
name = "socket2"
|
|
3006
|
+
version = "0.6.4"
|
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
3009
|
+
dependencies = [
|
|
3010
|
+
"libc",
|
|
3011
|
+
"windows-sys 0.61.2",
|
|
3012
|
+
]
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "spin"
|
|
3016
|
+
version = "0.9.8"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3019
|
+
|
|
3020
|
+
[[package]]
|
|
3021
|
+
name = "spki"
|
|
3022
|
+
version = "0.7.3"
|
|
3023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
3025
|
+
dependencies = [
|
|
3026
|
+
"base64ct",
|
|
3027
|
+
"der",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "ssh-cipher"
|
|
3032
|
+
version = "0.2.0"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"aes",
|
|
3037
|
+
"aes-gcm",
|
|
3038
|
+
"cbc",
|
|
3039
|
+
"chacha20",
|
|
3040
|
+
"cipher",
|
|
3041
|
+
"ctr",
|
|
3042
|
+
"poly1305",
|
|
3043
|
+
"ssh-encoding",
|
|
3044
|
+
"subtle",
|
|
3045
|
+
]
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "ssh-encoding"
|
|
3049
|
+
version = "0.2.0"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
|
|
3052
|
+
dependencies = [
|
|
3053
|
+
"base64ct",
|
|
3054
|
+
"pem-rfc7468",
|
|
3055
|
+
"sha2",
|
|
3056
|
+
]
|
|
3057
|
+
|
|
3058
|
+
[[package]]
|
|
3059
|
+
name = "ssh-key"
|
|
3060
|
+
version = "0.6.7"
|
|
3061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3062
|
+
checksum = "3b86f5297f0f04d08cabaa0f6bff7cb6aec4d9c3b49d87990d63da9d9156a8c3"
|
|
3063
|
+
dependencies = [
|
|
3064
|
+
"bcrypt-pbkdf",
|
|
3065
|
+
"ed25519-dalek",
|
|
3066
|
+
"num-bigint-dig",
|
|
3067
|
+
"p256",
|
|
3068
|
+
"p384",
|
|
3069
|
+
"p521",
|
|
3070
|
+
"rand_core 0.6.4",
|
|
3071
|
+
"rsa",
|
|
3072
|
+
"sec1",
|
|
3073
|
+
"sha2",
|
|
3074
|
+
"signature",
|
|
3075
|
+
"ssh-cipher",
|
|
3076
|
+
"ssh-encoding",
|
|
3077
|
+
"subtle",
|
|
3078
|
+
"zeroize",
|
|
3079
|
+
]
|
|
3080
|
+
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "static_assertions"
|
|
3083
|
+
version = "1.1.0"
|
|
3084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3086
|
+
|
|
3087
|
+
[[package]]
|
|
3088
|
+
name = "strsim"
|
|
3089
|
+
version = "0.11.1"
|
|
3090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3092
|
+
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "subtle"
|
|
3095
|
+
version = "2.6.1"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3098
|
+
|
|
3099
|
+
[[package]]
|
|
3100
|
+
name = "syn"
|
|
3101
|
+
version = "2.0.117"
|
|
3102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3103
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3104
|
+
dependencies = [
|
|
3105
|
+
"proc-macro2",
|
|
3106
|
+
"quote",
|
|
3107
|
+
"unicode-ident",
|
|
3108
|
+
]
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "sync_wrapper"
|
|
3112
|
+
version = "1.0.2"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3115
|
+
|
|
3116
|
+
[[package]]
|
|
3117
|
+
name = "target-lexicon"
|
|
3118
|
+
version = "0.13.5"
|
|
3119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3120
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3121
|
+
|
|
3122
|
+
[[package]]
|
|
3123
|
+
name = "tempfile"
|
|
3124
|
+
version = "3.27.0"
|
|
3125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3127
|
+
dependencies = [
|
|
3128
|
+
"fastrand",
|
|
3129
|
+
"getrandom 0.4.2",
|
|
3130
|
+
"once_cell",
|
|
3131
|
+
"rustix",
|
|
3132
|
+
"windows-sys 0.61.2",
|
|
3133
|
+
]
|
|
3134
|
+
|
|
3135
|
+
[[package]]
|
|
3136
|
+
name = "thiserror"
|
|
3137
|
+
version = "1.0.69"
|
|
3138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3139
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3140
|
+
dependencies = [
|
|
3141
|
+
"thiserror-impl 1.0.69",
|
|
3142
|
+
]
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "thiserror"
|
|
3146
|
+
version = "2.0.18"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3149
|
+
dependencies = [
|
|
3150
|
+
"thiserror-impl 2.0.18",
|
|
3151
|
+
]
|
|
3152
|
+
|
|
3153
|
+
[[package]]
|
|
3154
|
+
name = "thiserror-impl"
|
|
3155
|
+
version = "1.0.69"
|
|
3156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3157
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3158
|
+
dependencies = [
|
|
3159
|
+
"proc-macro2",
|
|
3160
|
+
"quote",
|
|
3161
|
+
"syn",
|
|
3162
|
+
]
|
|
3163
|
+
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "thiserror-impl"
|
|
3166
|
+
version = "2.0.18"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3169
|
+
dependencies = [
|
|
3170
|
+
"proc-macro2",
|
|
3171
|
+
"quote",
|
|
3172
|
+
"syn",
|
|
3173
|
+
]
|
|
3174
|
+
|
|
3175
|
+
[[package]]
|
|
3176
|
+
name = "tinystr"
|
|
3177
|
+
version = "0.8.3"
|
|
3178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3179
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3180
|
+
dependencies = [
|
|
3181
|
+
"displaydoc",
|
|
3182
|
+
"serde_core",
|
|
3183
|
+
"zerovec",
|
|
3184
|
+
]
|
|
3185
|
+
|
|
3186
|
+
[[package]]
|
|
3187
|
+
name = "tokio"
|
|
3188
|
+
version = "1.52.3"
|
|
3189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3190
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3191
|
+
dependencies = [
|
|
3192
|
+
"libc",
|
|
3193
|
+
"mio",
|
|
3194
|
+
"pin-project-lite",
|
|
3195
|
+
"signal-hook-registry",
|
|
3196
|
+
"socket2",
|
|
3197
|
+
"tokio-macros",
|
|
3198
|
+
"windows-sys 0.61.2",
|
|
3199
|
+
]
|
|
3200
|
+
|
|
3201
|
+
[[package]]
|
|
3202
|
+
name = "tokio-macros"
|
|
3203
|
+
version = "2.7.0"
|
|
3204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3205
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3206
|
+
dependencies = [
|
|
3207
|
+
"proc-macro2",
|
|
3208
|
+
"quote",
|
|
3209
|
+
"syn",
|
|
3210
|
+
]
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "toml"
|
|
3214
|
+
version = "0.5.11"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
3217
|
+
dependencies = [
|
|
3218
|
+
"serde",
|
|
3219
|
+
]
|
|
3220
|
+
|
|
3221
|
+
[[package]]
|
|
3222
|
+
name = "toml_datetime"
|
|
3223
|
+
version = "1.1.1+spec-1.1.0"
|
|
3224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3225
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
3226
|
+
dependencies = [
|
|
3227
|
+
"serde_core",
|
|
3228
|
+
]
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "toml_edit"
|
|
3232
|
+
version = "0.25.12+spec-1.1.0"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"indexmap",
|
|
3237
|
+
"toml_datetime",
|
|
3238
|
+
"toml_parser",
|
|
3239
|
+
"winnow",
|
|
3240
|
+
]
|
|
3241
|
+
|
|
3242
|
+
[[package]]
|
|
3243
|
+
name = "toml_parser"
|
|
3244
|
+
version = "1.1.2+spec-1.1.0"
|
|
3245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
3247
|
+
dependencies = [
|
|
3248
|
+
"winnow",
|
|
3249
|
+
]
|
|
3250
|
+
|
|
3251
|
+
[[package]]
|
|
3252
|
+
name = "tower"
|
|
3253
|
+
version = "0.5.3"
|
|
3254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3256
|
+
dependencies = [
|
|
3257
|
+
"futures-core",
|
|
3258
|
+
"futures-util",
|
|
3259
|
+
"pin-project-lite",
|
|
3260
|
+
"sync_wrapper",
|
|
3261
|
+
"tokio",
|
|
3262
|
+
"tower-layer",
|
|
3263
|
+
"tower-service",
|
|
3264
|
+
"tracing",
|
|
3265
|
+
]
|
|
3266
|
+
|
|
3267
|
+
[[package]]
|
|
3268
|
+
name = "tower-layer"
|
|
3269
|
+
version = "0.3.3"
|
|
3270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3272
|
+
|
|
3273
|
+
[[package]]
|
|
3274
|
+
name = "tower-service"
|
|
3275
|
+
version = "0.3.3"
|
|
3276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3278
|
+
|
|
3279
|
+
[[package]]
|
|
3280
|
+
name = "tracing"
|
|
3281
|
+
version = "0.1.44"
|
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3284
|
+
dependencies = [
|
|
3285
|
+
"log",
|
|
3286
|
+
"pin-project-lite",
|
|
3287
|
+
"tracing-attributes",
|
|
3288
|
+
"tracing-core",
|
|
3289
|
+
]
|
|
3290
|
+
|
|
3291
|
+
[[package]]
|
|
3292
|
+
name = "tracing-attributes"
|
|
3293
|
+
version = "0.1.31"
|
|
3294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3295
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3296
|
+
dependencies = [
|
|
3297
|
+
"proc-macro2",
|
|
3298
|
+
"quote",
|
|
3299
|
+
"syn",
|
|
3300
|
+
]
|
|
3301
|
+
|
|
3302
|
+
[[package]]
|
|
3303
|
+
name = "tracing-core"
|
|
3304
|
+
version = "0.1.36"
|
|
3305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3306
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3307
|
+
dependencies = [
|
|
3308
|
+
"once_cell",
|
|
3309
|
+
]
|
|
3310
|
+
|
|
3311
|
+
[[package]]
|
|
3312
|
+
name = "type-map"
|
|
3313
|
+
version = "0.5.1"
|
|
3314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
+
checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
|
|
3316
|
+
dependencies = [
|
|
3317
|
+
"rustc-hash 2.1.2",
|
|
3318
|
+
]
|
|
3319
|
+
|
|
3320
|
+
[[package]]
|
|
3321
|
+
name = "typenum"
|
|
3322
|
+
version = "1.20.1"
|
|
3323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3324
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
3325
|
+
|
|
3326
|
+
[[package]]
|
|
3327
|
+
name = "uds_windows"
|
|
3328
|
+
version = "1.2.1"
|
|
3329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3330
|
+
checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
|
|
3331
|
+
dependencies = [
|
|
3332
|
+
"memoffset",
|
|
3333
|
+
"tempfile",
|
|
3334
|
+
"windows-sys 0.61.2",
|
|
3335
|
+
]
|
|
3336
|
+
|
|
3337
|
+
[[package]]
|
|
3338
|
+
name = "unarray"
|
|
3339
|
+
version = "0.1.4"
|
|
3340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3341
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3342
|
+
|
|
3343
|
+
[[package]]
|
|
3344
|
+
name = "unic-langid"
|
|
3345
|
+
version = "0.9.6"
|
|
3346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
+
checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05"
|
|
3348
|
+
dependencies = [
|
|
3349
|
+
"unic-langid-impl",
|
|
3350
|
+
]
|
|
3351
|
+
|
|
3352
|
+
[[package]]
|
|
3353
|
+
name = "unic-langid-impl"
|
|
3354
|
+
version = "0.9.6"
|
|
3355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3356
|
+
checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658"
|
|
3357
|
+
dependencies = [
|
|
3358
|
+
"serde",
|
|
3359
|
+
"tinystr",
|
|
3360
|
+
]
|
|
3361
|
+
|
|
3362
|
+
[[package]]
|
|
3363
|
+
name = "unicode-ident"
|
|
3364
|
+
version = "1.0.24"
|
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3367
|
+
|
|
3368
|
+
[[package]]
|
|
3369
|
+
name = "unicode-segmentation"
|
|
3370
|
+
version = "1.13.3"
|
|
3371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "unicode-width"
|
|
3376
|
+
version = "0.2.2"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "unicode-xid"
|
|
3382
|
+
version = "0.2.6"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "unindent"
|
|
3388
|
+
version = "0.2.4"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3391
|
+
|
|
3392
|
+
[[package]]
|
|
3393
|
+
name = "universal-hash"
|
|
3394
|
+
version = "0.5.1"
|
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
3397
|
+
dependencies = [
|
|
3398
|
+
"crypto-common",
|
|
3399
|
+
"subtle",
|
|
3400
|
+
]
|
|
3401
|
+
|
|
3402
|
+
[[package]]
|
|
3403
|
+
name = "utf8parse"
|
|
3404
|
+
version = "0.2.2"
|
|
3405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3407
|
+
|
|
3408
|
+
[[package]]
|
|
3409
|
+
name = "version_check"
|
|
3410
|
+
version = "0.9.5"
|
|
3411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3412
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3413
|
+
|
|
3414
|
+
[[package]]
|
|
3415
|
+
name = "wait-timeout"
|
|
3416
|
+
version = "0.2.1"
|
|
3417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3418
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3419
|
+
dependencies = [
|
|
3420
|
+
"libc",
|
|
3421
|
+
]
|
|
3422
|
+
|
|
3423
|
+
[[package]]
|
|
3424
|
+
name = "walkdir"
|
|
3425
|
+
version = "2.5.0"
|
|
3426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3428
|
+
dependencies = [
|
|
3429
|
+
"same-file",
|
|
3430
|
+
"winapi-util",
|
|
3431
|
+
]
|
|
3432
|
+
|
|
3433
|
+
[[package]]
|
|
3434
|
+
name = "wasi"
|
|
3435
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3437
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3438
|
+
|
|
3439
|
+
[[package]]
|
|
3440
|
+
name = "wasip2"
|
|
3441
|
+
version = "1.0.3+wasi-0.2.9"
|
|
3442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
3444
|
+
dependencies = [
|
|
3445
|
+
"wit-bindgen 0.57.1",
|
|
3446
|
+
]
|
|
3447
|
+
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "wasip3"
|
|
3450
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"wit-bindgen 0.51.0",
|
|
3455
|
+
]
|
|
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 = "wasmparser"
|
|
3481
|
+
version = "0.244.0"
|
|
3482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3483
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
3484
|
+
dependencies = [
|
|
3485
|
+
"bitflags",
|
|
3486
|
+
"hashbrown 0.15.5",
|
|
3487
|
+
"indexmap",
|
|
3488
|
+
"semver",
|
|
3489
|
+
]
|
|
3490
|
+
|
|
3491
|
+
[[package]]
|
|
3492
|
+
name = "winapi"
|
|
3493
|
+
version = "0.3.9"
|
|
3494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3495
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3496
|
+
dependencies = [
|
|
3497
|
+
"winapi-i686-pc-windows-gnu",
|
|
3498
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3499
|
+
]
|
|
3500
|
+
|
|
3501
|
+
[[package]]
|
|
3502
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3503
|
+
version = "0.4.0"
|
|
3504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3505
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3506
|
+
|
|
3507
|
+
[[package]]
|
|
3508
|
+
name = "winapi-util"
|
|
3509
|
+
version = "0.1.11"
|
|
3510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3511
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3512
|
+
dependencies = [
|
|
3513
|
+
"windows-sys 0.61.2",
|
|
3514
|
+
]
|
|
3515
|
+
|
|
3516
|
+
[[package]]
|
|
3517
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3518
|
+
version = "0.4.0"
|
|
3519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3520
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3521
|
+
|
|
3522
|
+
[[package]]
|
|
3523
|
+
name = "windows-link"
|
|
3524
|
+
version = "0.2.1"
|
|
3525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3526
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3527
|
+
|
|
3528
|
+
[[package]]
|
|
3529
|
+
name = "windows-sys"
|
|
3530
|
+
version = "0.52.0"
|
|
3531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3532
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3533
|
+
dependencies = [
|
|
3534
|
+
"windows-targets 0.52.6",
|
|
3535
|
+
]
|
|
3536
|
+
|
|
3537
|
+
[[package]]
|
|
3538
|
+
name = "windows-sys"
|
|
3539
|
+
version = "0.59.0"
|
|
3540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3541
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3542
|
+
dependencies = [
|
|
3543
|
+
"windows-targets 0.52.6",
|
|
3544
|
+
]
|
|
3545
|
+
|
|
3546
|
+
[[package]]
|
|
3547
|
+
name = "windows-sys"
|
|
3548
|
+
version = "0.60.2"
|
|
3549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3550
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3551
|
+
dependencies = [
|
|
3552
|
+
"windows-targets 0.53.5",
|
|
3553
|
+
]
|
|
3554
|
+
|
|
3555
|
+
[[package]]
|
|
3556
|
+
name = "windows-sys"
|
|
3557
|
+
version = "0.61.2"
|
|
3558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3559
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3560
|
+
dependencies = [
|
|
3561
|
+
"windows-link",
|
|
3562
|
+
]
|
|
3563
|
+
|
|
3564
|
+
[[package]]
|
|
3565
|
+
name = "windows-targets"
|
|
3566
|
+
version = "0.52.6"
|
|
3567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3568
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3569
|
+
dependencies = [
|
|
3570
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3571
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3572
|
+
"windows_i686_gnu 0.52.6",
|
|
3573
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3574
|
+
"windows_i686_msvc 0.52.6",
|
|
3575
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3576
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3577
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3578
|
+
]
|
|
3579
|
+
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "windows-targets"
|
|
3582
|
+
version = "0.53.5"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3585
|
+
dependencies = [
|
|
3586
|
+
"windows-link",
|
|
3587
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3588
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3589
|
+
"windows_i686_gnu 0.53.1",
|
|
3590
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3591
|
+
"windows_i686_msvc 0.53.1",
|
|
3592
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3593
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3594
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3595
|
+
]
|
|
3596
|
+
|
|
3597
|
+
[[package]]
|
|
3598
|
+
name = "windows_aarch64_gnullvm"
|
|
3599
|
+
version = "0.52.6"
|
|
3600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3601
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3602
|
+
|
|
3603
|
+
[[package]]
|
|
3604
|
+
name = "windows_aarch64_gnullvm"
|
|
3605
|
+
version = "0.53.1"
|
|
3606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3607
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3608
|
+
|
|
3609
|
+
[[package]]
|
|
3610
|
+
name = "windows_aarch64_msvc"
|
|
3611
|
+
version = "0.52.6"
|
|
3612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3613
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3614
|
+
|
|
3615
|
+
[[package]]
|
|
3616
|
+
name = "windows_aarch64_msvc"
|
|
3617
|
+
version = "0.53.1"
|
|
3618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3619
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3620
|
+
|
|
3621
|
+
[[package]]
|
|
3622
|
+
name = "windows_i686_gnu"
|
|
3623
|
+
version = "0.52.6"
|
|
3624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3625
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3626
|
+
|
|
3627
|
+
[[package]]
|
|
3628
|
+
name = "windows_i686_gnu"
|
|
3629
|
+
version = "0.53.1"
|
|
3630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3631
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3632
|
+
|
|
3633
|
+
[[package]]
|
|
3634
|
+
name = "windows_i686_gnullvm"
|
|
3635
|
+
version = "0.52.6"
|
|
3636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3637
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3638
|
+
|
|
3639
|
+
[[package]]
|
|
3640
|
+
name = "windows_i686_gnullvm"
|
|
3641
|
+
version = "0.53.1"
|
|
3642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3643
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3644
|
+
|
|
3645
|
+
[[package]]
|
|
3646
|
+
name = "windows_i686_msvc"
|
|
3647
|
+
version = "0.52.6"
|
|
3648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3649
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3650
|
+
|
|
3651
|
+
[[package]]
|
|
3652
|
+
name = "windows_i686_msvc"
|
|
3653
|
+
version = "0.53.1"
|
|
3654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3655
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "windows_x86_64_gnu"
|
|
3659
|
+
version = "0.52.6"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3662
|
+
|
|
3663
|
+
[[package]]
|
|
3664
|
+
name = "windows_x86_64_gnu"
|
|
3665
|
+
version = "0.53.1"
|
|
3666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3667
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3668
|
+
|
|
3669
|
+
[[package]]
|
|
3670
|
+
name = "windows_x86_64_gnullvm"
|
|
3671
|
+
version = "0.52.6"
|
|
3672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3673
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3674
|
+
|
|
3675
|
+
[[package]]
|
|
3676
|
+
name = "windows_x86_64_gnullvm"
|
|
3677
|
+
version = "0.53.1"
|
|
3678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3680
|
+
|
|
3681
|
+
[[package]]
|
|
3682
|
+
name = "windows_x86_64_msvc"
|
|
3683
|
+
version = "0.52.6"
|
|
3684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3685
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3686
|
+
|
|
3687
|
+
[[package]]
|
|
3688
|
+
name = "windows_x86_64_msvc"
|
|
3689
|
+
version = "0.53.1"
|
|
3690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3691
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3692
|
+
|
|
3693
|
+
[[package]]
|
|
3694
|
+
name = "winnow"
|
|
3695
|
+
version = "1.0.3"
|
|
3696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3697
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
3698
|
+
dependencies = [
|
|
3699
|
+
"memchr",
|
|
3700
|
+
]
|
|
3701
|
+
|
|
3702
|
+
[[package]]
|
|
3703
|
+
name = "wit-bindgen"
|
|
3704
|
+
version = "0.51.0"
|
|
3705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
3707
|
+
dependencies = [
|
|
3708
|
+
"wit-bindgen-rust-macro",
|
|
3709
|
+
]
|
|
3710
|
+
|
|
3711
|
+
[[package]]
|
|
3712
|
+
name = "wit-bindgen"
|
|
3713
|
+
version = "0.57.1"
|
|
3714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3715
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3716
|
+
|
|
3717
|
+
[[package]]
|
|
3718
|
+
name = "wit-bindgen-core"
|
|
3719
|
+
version = "0.51.0"
|
|
3720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3721
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
3722
|
+
dependencies = [
|
|
3723
|
+
"anyhow",
|
|
3724
|
+
"heck",
|
|
3725
|
+
"wit-parser",
|
|
3726
|
+
]
|
|
3727
|
+
|
|
3728
|
+
[[package]]
|
|
3729
|
+
name = "wit-bindgen-rust"
|
|
3730
|
+
version = "0.51.0"
|
|
3731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3732
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
3733
|
+
dependencies = [
|
|
3734
|
+
"anyhow",
|
|
3735
|
+
"heck",
|
|
3736
|
+
"indexmap",
|
|
3737
|
+
"prettyplease",
|
|
3738
|
+
"syn",
|
|
3739
|
+
"wasm-metadata",
|
|
3740
|
+
"wit-bindgen-core",
|
|
3741
|
+
"wit-component",
|
|
3742
|
+
]
|
|
3743
|
+
|
|
3744
|
+
[[package]]
|
|
3745
|
+
name = "wit-bindgen-rust-macro"
|
|
3746
|
+
version = "0.51.0"
|
|
3747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3748
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
3749
|
+
dependencies = [
|
|
3750
|
+
"anyhow",
|
|
3751
|
+
"prettyplease",
|
|
3752
|
+
"proc-macro2",
|
|
3753
|
+
"quote",
|
|
3754
|
+
"syn",
|
|
3755
|
+
"wit-bindgen-core",
|
|
3756
|
+
"wit-bindgen-rust",
|
|
3757
|
+
]
|
|
3758
|
+
|
|
3759
|
+
[[package]]
|
|
3760
|
+
name = "wit-component"
|
|
3761
|
+
version = "0.244.0"
|
|
3762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3763
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3764
|
+
dependencies = [
|
|
3765
|
+
"anyhow",
|
|
3766
|
+
"bitflags",
|
|
3767
|
+
"indexmap",
|
|
3768
|
+
"log",
|
|
3769
|
+
"serde",
|
|
3770
|
+
"serde_derive",
|
|
3771
|
+
"serde_json",
|
|
3772
|
+
"wasm-encoder",
|
|
3773
|
+
"wasm-metadata",
|
|
3774
|
+
"wasmparser",
|
|
3775
|
+
"wit-parser",
|
|
3776
|
+
]
|
|
3777
|
+
|
|
3778
|
+
[[package]]
|
|
3779
|
+
name = "wit-parser"
|
|
3780
|
+
version = "0.244.0"
|
|
3781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3782
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3783
|
+
dependencies = [
|
|
3784
|
+
"anyhow",
|
|
3785
|
+
"id-arena",
|
|
3786
|
+
"indexmap",
|
|
3787
|
+
"log",
|
|
3788
|
+
"semver",
|
|
3789
|
+
"serde",
|
|
3790
|
+
"serde_derive",
|
|
3791
|
+
"serde_json",
|
|
3792
|
+
"unicode-xid",
|
|
3793
|
+
"wasmparser",
|
|
3794
|
+
]
|
|
3795
|
+
|
|
3796
|
+
[[package]]
|
|
3797
|
+
name = "x25519-dalek"
|
|
3798
|
+
version = "2.0.1"
|
|
3799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
+
checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
|
|
3801
|
+
dependencies = [
|
|
3802
|
+
"curve25519-dalek",
|
|
3803
|
+
"rand_core 0.6.4",
|
|
3804
|
+
"serde",
|
|
3805
|
+
"zeroize",
|
|
3806
|
+
]
|
|
3807
|
+
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "xdg-home"
|
|
3810
|
+
version = "1.3.0"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
|
|
3813
|
+
dependencies = [
|
|
3814
|
+
"libc",
|
|
3815
|
+
"windows-sys 0.59.0",
|
|
3816
|
+
]
|
|
3817
|
+
|
|
3818
|
+
[[package]]
|
|
3819
|
+
name = "zbus"
|
|
3820
|
+
version = "4.4.0"
|
|
3821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3822
|
+
checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
|
|
3823
|
+
dependencies = [
|
|
3824
|
+
"async-broadcast",
|
|
3825
|
+
"async-process",
|
|
3826
|
+
"async-recursion",
|
|
3827
|
+
"async-trait",
|
|
3828
|
+
"enumflags2",
|
|
3829
|
+
"event-listener",
|
|
3830
|
+
"futures-core",
|
|
3831
|
+
"futures-sink",
|
|
3832
|
+
"futures-util",
|
|
3833
|
+
"hex",
|
|
3834
|
+
"nix",
|
|
3835
|
+
"ordered-stream",
|
|
3836
|
+
"rand 0.8.6",
|
|
3837
|
+
"serde",
|
|
3838
|
+
"serde_repr",
|
|
3839
|
+
"sha1",
|
|
3840
|
+
"static_assertions",
|
|
3841
|
+
"tracing",
|
|
3842
|
+
"uds_windows",
|
|
3843
|
+
"windows-sys 0.52.0",
|
|
3844
|
+
"xdg-home",
|
|
3845
|
+
"zbus_macros",
|
|
3846
|
+
"zbus_names",
|
|
3847
|
+
"zvariant",
|
|
3848
|
+
]
|
|
3849
|
+
|
|
3850
|
+
[[package]]
|
|
3851
|
+
name = "zbus_macros"
|
|
3852
|
+
version = "4.4.0"
|
|
3853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3854
|
+
checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e"
|
|
3855
|
+
dependencies = [
|
|
3856
|
+
"proc-macro-crate",
|
|
3857
|
+
"proc-macro2",
|
|
3858
|
+
"quote",
|
|
3859
|
+
"syn",
|
|
3860
|
+
"zvariant_utils",
|
|
3861
|
+
]
|
|
3862
|
+
|
|
3863
|
+
[[package]]
|
|
3864
|
+
name = "zbus_names"
|
|
3865
|
+
version = "3.0.0"
|
|
3866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3867
|
+
checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
|
|
3868
|
+
dependencies = [
|
|
3869
|
+
"serde",
|
|
3870
|
+
"static_assertions",
|
|
3871
|
+
"zvariant",
|
|
3872
|
+
]
|
|
3873
|
+
|
|
3874
|
+
[[package]]
|
|
3875
|
+
name = "zerocopy"
|
|
3876
|
+
version = "0.8.50"
|
|
3877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3878
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
3879
|
+
dependencies = [
|
|
3880
|
+
"zerocopy-derive",
|
|
3881
|
+
]
|
|
3882
|
+
|
|
3883
|
+
[[package]]
|
|
3884
|
+
name = "zerocopy-derive"
|
|
3885
|
+
version = "0.8.50"
|
|
3886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3887
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
3888
|
+
dependencies = [
|
|
3889
|
+
"proc-macro2",
|
|
3890
|
+
"quote",
|
|
3891
|
+
"syn",
|
|
3892
|
+
]
|
|
3893
|
+
|
|
3894
|
+
[[package]]
|
|
3895
|
+
name = "zerofrom"
|
|
3896
|
+
version = "0.1.8"
|
|
3897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3898
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3899
|
+
|
|
3900
|
+
[[package]]
|
|
3901
|
+
name = "zeroize"
|
|
3902
|
+
version = "1.8.2"
|
|
3903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3905
|
+
dependencies = [
|
|
3906
|
+
"zeroize_derive",
|
|
3907
|
+
]
|
|
3908
|
+
|
|
3909
|
+
[[package]]
|
|
3910
|
+
name = "zeroize_derive"
|
|
3911
|
+
version = "1.4.3"
|
|
3912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3913
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
3914
|
+
dependencies = [
|
|
3915
|
+
"proc-macro2",
|
|
3916
|
+
"quote",
|
|
3917
|
+
"syn",
|
|
3918
|
+
]
|
|
3919
|
+
|
|
3920
|
+
[[package]]
|
|
3921
|
+
name = "zerovec"
|
|
3922
|
+
version = "0.11.6"
|
|
3923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3924
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3925
|
+
dependencies = [
|
|
3926
|
+
"serde",
|
|
3927
|
+
"zerofrom",
|
|
3928
|
+
]
|
|
3929
|
+
|
|
3930
|
+
[[package]]
|
|
3931
|
+
name = "zmij"
|
|
3932
|
+
version = "1.0.21"
|
|
3933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3934
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
3935
|
+
|
|
3936
|
+
[[package]]
|
|
3937
|
+
name = "zvariant"
|
|
3938
|
+
version = "4.2.0"
|
|
3939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3940
|
+
checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe"
|
|
3941
|
+
dependencies = [
|
|
3942
|
+
"endi",
|
|
3943
|
+
"enumflags2",
|
|
3944
|
+
"serde",
|
|
3945
|
+
"static_assertions",
|
|
3946
|
+
"zvariant_derive",
|
|
3947
|
+
]
|
|
3948
|
+
|
|
3949
|
+
[[package]]
|
|
3950
|
+
name = "zvariant_derive"
|
|
3951
|
+
version = "4.2.0"
|
|
3952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
+
checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449"
|
|
3954
|
+
dependencies = [
|
|
3955
|
+
"proc-macro-crate",
|
|
3956
|
+
"proc-macro2",
|
|
3957
|
+
"quote",
|
|
3958
|
+
"syn",
|
|
3959
|
+
"zvariant_utils",
|
|
3960
|
+
]
|
|
3961
|
+
|
|
3962
|
+
[[package]]
|
|
3963
|
+
name = "zvariant_utils"
|
|
3964
|
+
version = "2.1.0"
|
|
3965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3966
|
+
checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
|
|
3967
|
+
dependencies = [
|
|
3968
|
+
"proc-macro2",
|
|
3969
|
+
"quote",
|
|
3970
|
+
"syn",
|
|
3971
|
+
]
|