diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 3549 |
1 files changed, 3549 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..6fb8ee4 --- /dev/null +++ b/Cargo.lock | |||
| @@ -0,0 +1,3549 @@ | |||
| 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 = "aho-corasick" | ||
| 17 | version = "1.1.4" | ||
| 18 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 19 | checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" | ||
| 20 | dependencies = [ | ||
| 21 | "memchr", | ||
| 22 | ] | ||
| 23 | |||
| 24 | [[package]] | ||
| 25 | name = "allocator-api2" | ||
| 26 | version = "0.2.21" | ||
| 27 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 28 | checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" | ||
| 29 | |||
| 30 | [[package]] | ||
| 31 | name = "anstream" | ||
| 32 | version = "1.0.0" | ||
| 33 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 34 | checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" | ||
| 35 | dependencies = [ | ||
| 36 | "anstyle", | ||
| 37 | "anstyle-parse", | ||
| 38 | "anstyle-query", | ||
| 39 | "anstyle-wincon", | ||
| 40 | "colorchoice", | ||
| 41 | "is_terminal_polyfill", | ||
| 42 | "utf8parse", | ||
| 43 | ] | ||
| 44 | |||
| 45 | [[package]] | ||
| 46 | name = "anstyle" | ||
| 47 | version = "1.0.14" | ||
| 48 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 49 | checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" | ||
| 50 | |||
| 51 | [[package]] | ||
| 52 | name = "anstyle-parse" | ||
| 53 | version = "1.0.0" | ||
| 54 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 55 | checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" | ||
| 56 | dependencies = [ | ||
| 57 | "utf8parse", | ||
| 58 | ] | ||
| 59 | |||
| 60 | [[package]] | ||
| 61 | name = "anstyle-query" | ||
| 62 | version = "1.1.5" | ||
| 63 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 64 | checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" | ||
| 65 | dependencies = [ | ||
| 66 | "windows-sys 0.61.2", | ||
| 67 | ] | ||
| 68 | |||
| 69 | [[package]] | ||
| 70 | name = "anstyle-wincon" | ||
| 71 | version = "3.0.11" | ||
| 72 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 73 | checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" | ||
| 74 | dependencies = [ | ||
| 75 | "anstyle", | ||
| 76 | "once_cell_polyfill", | ||
| 77 | "windows-sys 0.61.2", | ||
| 78 | ] | ||
| 79 | |||
| 80 | [[package]] | ||
| 81 | name = "anyhow" | ||
| 82 | version = "1.0.102" | ||
| 83 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 84 | checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" | ||
| 85 | |||
| 86 | [[package]] | ||
| 87 | name = "arrayvec" | ||
| 88 | version = "0.7.6" | ||
| 89 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 90 | checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" | ||
| 91 | |||
| 92 | [[package]] | ||
| 93 | name = "async-utility" | ||
| 94 | version = "0.3.1" | ||
| 95 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 96 | checksum = "a34a3b57207a7a1007832416c3e4862378c8451b4e8e093e436f48c2d3d2c151" | ||
| 97 | dependencies = [ | ||
| 98 | "futures-util", | ||
| 99 | "gloo-timers", | ||
| 100 | "tokio", | ||
| 101 | "wasm-bindgen-futures", | ||
| 102 | ] | ||
| 103 | |||
| 104 | [[package]] | ||
| 105 | name = "async-wsocket" | ||
| 106 | version = "0.13.2" | ||
| 107 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 108 | checksum = "1c92385c7c8b3eb2de1b78aeca225212e4c9a69a78b802832759b108681a5069" | ||
| 109 | dependencies = [ | ||
| 110 | "async-utility", | ||
| 111 | "futures", | ||
| 112 | "futures-util", | ||
| 113 | "js-sys", | ||
| 114 | "tokio", | ||
| 115 | "tokio-rustls", | ||
| 116 | "tokio-socks", | ||
| 117 | "tokio-tungstenite", | ||
| 118 | "url", | ||
| 119 | "wasm-bindgen", | ||
| 120 | "web-sys", | ||
| 121 | ] | ||
| 122 | |||
| 123 | [[package]] | ||
| 124 | name = "atoi" | ||
| 125 | version = "2.0.0" | ||
| 126 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 127 | checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" | ||
| 128 | dependencies = [ | ||
| 129 | "num-traits", | ||
| 130 | ] | ||
| 131 | |||
| 132 | [[package]] | ||
| 133 | name = "atomic-destructor" | ||
| 134 | version = "0.3.0" | ||
| 135 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 136 | checksum = "ef49f5882e4b6afaac09ad239a4f8c70a24b8f2b0897edb1f706008efd109cf4" | ||
| 137 | |||
| 138 | [[package]] | ||
| 139 | name = "atomic-waker" | ||
| 140 | version = "1.1.2" | ||
| 141 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 142 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" | ||
| 143 | |||
| 144 | [[package]] | ||
| 145 | name = "autocfg" | ||
| 146 | version = "1.5.1" | ||
| 147 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 148 | checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" | ||
| 149 | |||
| 150 | [[package]] | ||
| 151 | name = "base64" | ||
| 152 | version = "0.22.1" | ||
| 153 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 154 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" | ||
| 155 | |||
| 156 | [[package]] | ||
| 157 | name = "base64ct" | ||
| 158 | version = "1.8.3" | ||
| 159 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 160 | checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" | ||
| 161 | |||
| 162 | [[package]] | ||
| 163 | name = "bech32" | ||
| 164 | version = "0.11.1" | ||
| 165 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 166 | checksum = "32637268377fc7b10a8c6d51de3e7fba1ce5dd371a96e342b34e6078db558e7f" | ||
| 167 | |||
| 168 | [[package]] | ||
| 169 | name = "bip39" | ||
| 170 | version = "2.2.2" | ||
| 171 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 172 | checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc" | ||
| 173 | dependencies = [ | ||
| 174 | "bitcoin_hashes", | ||
| 175 | "serde", | ||
| 176 | "unicode-normalization", | ||
| 177 | ] | ||
| 178 | |||
| 179 | [[package]] | ||
| 180 | name = "bitcoin-io" | ||
| 181 | version = "0.1.4" | ||
| 182 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 183 | checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953" | ||
| 184 | |||
| 185 | [[package]] | ||
| 186 | name = "bitcoin_hashes" | ||
| 187 | version = "0.14.1" | ||
| 188 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 189 | checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b" | ||
| 190 | dependencies = [ | ||
| 191 | "bitcoin-io", | ||
| 192 | "hex-conservative", | ||
| 193 | "serde", | ||
| 194 | ] | ||
| 195 | |||
| 196 | [[package]] | ||
| 197 | name = "bitflags" | ||
| 198 | version = "2.11.1" | ||
| 199 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 200 | checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" | ||
| 201 | dependencies = [ | ||
| 202 | "serde_core", | ||
| 203 | ] | ||
| 204 | |||
| 205 | [[package]] | ||
| 206 | name = "block-buffer" | ||
| 207 | version = "0.10.4" | ||
| 208 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 209 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" | ||
| 210 | dependencies = [ | ||
| 211 | "generic-array", | ||
| 212 | ] | ||
| 213 | |||
| 214 | [[package]] | ||
| 215 | name = "block-padding" | ||
| 216 | version = "0.3.3" | ||
| 217 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 218 | checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" | ||
| 219 | dependencies = [ | ||
| 220 | "generic-array", | ||
| 221 | ] | ||
| 222 | |||
| 223 | [[package]] | ||
| 224 | name = "bumpalo" | ||
| 225 | version = "3.20.3" | ||
| 226 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 227 | checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" | ||
| 228 | |||
| 229 | [[package]] | ||
| 230 | name = "byteorder" | ||
| 231 | version = "1.5.0" | ||
| 232 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 233 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" | ||
| 234 | |||
| 235 | [[package]] | ||
| 236 | name = "bytes" | ||
| 237 | version = "1.11.1" | ||
| 238 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 239 | checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" | ||
| 240 | |||
| 241 | [[package]] | ||
| 242 | name = "cbc" | ||
| 243 | version = "0.1.2" | ||
| 244 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 245 | checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" | ||
| 246 | dependencies = [ | ||
| 247 | "cipher", | ||
| 248 | ] | ||
| 249 | |||
| 250 | [[package]] | ||
| 251 | name = "cc" | ||
| 252 | version = "1.2.62" | ||
| 253 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 254 | checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98" | ||
| 255 | dependencies = [ | ||
| 256 | "find-msvc-tools", | ||
| 257 | "jobserver", | ||
| 258 | "libc", | ||
| 259 | "shlex", | ||
| 260 | ] | ||
| 261 | |||
| 262 | [[package]] | ||
| 263 | name = "cfg-if" | ||
| 264 | version = "1.0.4" | ||
| 265 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 266 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" | ||
| 267 | |||
| 268 | [[package]] | ||
| 269 | name = "chacha20" | ||
| 270 | version = "0.9.1" | ||
| 271 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 272 | checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" | ||
| 273 | dependencies = [ | ||
| 274 | "cfg-if", | ||
| 275 | "cipher", | ||
| 276 | "cpufeatures", | ||
| 277 | ] | ||
| 278 | |||
| 279 | [[package]] | ||
| 280 | name = "chacha20poly1305" | ||
| 281 | version = "0.10.1" | ||
| 282 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 283 | checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" | ||
| 284 | dependencies = [ | ||
| 285 | "aead", | ||
| 286 | "chacha20", | ||
| 287 | "cipher", | ||
| 288 | "poly1305", | ||
| 289 | "zeroize", | ||
| 290 | ] | ||
| 291 | |||
| 292 | [[package]] | ||
| 293 | name = "cipher" | ||
| 294 | version = "0.4.4" | ||
| 295 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 296 | checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" | ||
| 297 | dependencies = [ | ||
| 298 | "crypto-common", | ||
| 299 | "inout", | ||
| 300 | "zeroize", | ||
| 301 | ] | ||
| 302 | |||
| 303 | [[package]] | ||
| 304 | name = "clap" | ||
| 305 | version = "4.6.1" | ||
| 306 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 307 | checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" | ||
| 308 | dependencies = [ | ||
| 309 | "clap_builder", | ||
| 310 | "clap_derive", | ||
| 311 | ] | ||
| 312 | |||
| 313 | [[package]] | ||
| 314 | name = "clap_builder" | ||
| 315 | version = "4.6.0" | ||
| 316 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 317 | checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" | ||
| 318 | dependencies = [ | ||
| 319 | "anstream", | ||
| 320 | "anstyle", | ||
| 321 | "clap_lex", | ||
| 322 | "strsim", | ||
| 323 | ] | ||
| 324 | |||
| 325 | [[package]] | ||
| 326 | name = "clap_derive" | ||
| 327 | version = "4.6.1" | ||
| 328 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 329 | checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" | ||
| 330 | dependencies = [ | ||
| 331 | "heck", | ||
| 332 | "proc-macro2", | ||
| 333 | "quote", | ||
| 334 | "syn", | ||
| 335 | ] | ||
| 336 | |||
| 337 | [[package]] | ||
| 338 | name = "clap_lex" | ||
| 339 | version = "1.1.0" | ||
| 340 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 341 | checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" | ||
| 342 | |||
| 343 | [[package]] | ||
| 344 | name = "colorchoice" | ||
| 345 | version = "1.0.5" | ||
| 346 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 347 | checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" | ||
| 348 | |||
| 349 | [[package]] | ||
| 350 | name = "concurrent-queue" | ||
| 351 | version = "2.5.0" | ||
| 352 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 353 | checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" | ||
| 354 | dependencies = [ | ||
| 355 | "crossbeam-utils", | ||
| 356 | ] | ||
| 357 | |||
| 358 | [[package]] | ||
| 359 | name = "const-oid" | ||
| 360 | version = "0.9.6" | ||
| 361 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 362 | checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" | ||
| 363 | |||
| 364 | [[package]] | ||
| 365 | name = "core-foundation" | ||
| 366 | version = "0.9.4" | ||
| 367 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 368 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" | ||
| 369 | dependencies = [ | ||
| 370 | "core-foundation-sys", | ||
| 371 | "libc", | ||
| 372 | ] | ||
| 373 | |||
| 374 | [[package]] | ||
| 375 | name = "core-foundation" | ||
| 376 | version = "0.10.1" | ||
| 377 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 378 | checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" | ||
| 379 | dependencies = [ | ||
| 380 | "core-foundation-sys", | ||
| 381 | "libc", | ||
| 382 | ] | ||
| 383 | |||
| 384 | [[package]] | ||
| 385 | name = "core-foundation-sys" | ||
| 386 | version = "0.8.7" | ||
| 387 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 388 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" | ||
| 389 | |||
| 390 | [[package]] | ||
| 391 | name = "cpufeatures" | ||
| 392 | version = "0.2.17" | ||
| 393 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 394 | checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" | ||
| 395 | dependencies = [ | ||
| 396 | "libc", | ||
| 397 | ] | ||
| 398 | |||
| 399 | [[package]] | ||
| 400 | name = "crc" | ||
| 401 | version = "3.4.0" | ||
| 402 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 403 | checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" | ||
| 404 | dependencies = [ | ||
| 405 | "crc-catalog", | ||
| 406 | ] | ||
| 407 | |||
| 408 | [[package]] | ||
| 409 | name = "crc-catalog" | ||
| 410 | version = "2.5.0" | ||
| 411 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 412 | checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853" | ||
| 413 | |||
| 414 | [[package]] | ||
| 415 | name = "crossbeam-queue" | ||
| 416 | version = "0.3.12" | ||
| 417 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 418 | checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" | ||
| 419 | dependencies = [ | ||
| 420 | "crossbeam-utils", | ||
| 421 | ] | ||
| 422 | |||
| 423 | [[package]] | ||
| 424 | name = "crossbeam-utils" | ||
| 425 | version = "0.8.21" | ||
| 426 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 427 | checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" | ||
| 428 | |||
| 429 | [[package]] | ||
| 430 | name = "crypto-common" | ||
| 431 | version = "0.1.7" | ||
| 432 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 433 | checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" | ||
| 434 | dependencies = [ | ||
| 435 | "generic-array", | ||
| 436 | "rand_core 0.6.4", | ||
| 437 | "typenum", | ||
| 438 | ] | ||
| 439 | |||
| 440 | [[package]] | ||
| 441 | name = "data-encoding" | ||
| 442 | version = "2.11.0" | ||
| 443 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 444 | checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" | ||
| 445 | |||
| 446 | [[package]] | ||
| 447 | name = "der" | ||
| 448 | version = "0.7.10" | ||
| 449 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 450 | checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" | ||
| 451 | dependencies = [ | ||
| 452 | "const-oid", | ||
| 453 | "pem-rfc7468", | ||
| 454 | "zeroize", | ||
| 455 | ] | ||
| 456 | |||
| 457 | [[package]] | ||
| 458 | name = "digest" | ||
| 459 | version = "0.10.7" | ||
| 460 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 461 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" | ||
| 462 | dependencies = [ | ||
| 463 | "block-buffer", | ||
| 464 | "const-oid", | ||
| 465 | "crypto-common", | ||
| 466 | "subtle", | ||
| 467 | ] | ||
| 468 | |||
| 469 | [[package]] | ||
| 470 | name = "dirs" | ||
| 471 | version = "6.0.0" | ||
| 472 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 473 | checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" | ||
| 474 | dependencies = [ | ||
| 475 | "dirs-sys", | ||
| 476 | ] | ||
| 477 | |||
| 478 | [[package]] | ||
| 479 | name = "dirs-sys" | ||
| 480 | version = "0.5.0" | ||
| 481 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 482 | checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" | ||
| 483 | dependencies = [ | ||
| 484 | "libc", | ||
| 485 | "option-ext", | ||
| 486 | "redox_users", | ||
| 487 | "windows-sys 0.61.2", | ||
| 488 | ] | ||
| 489 | |||
| 490 | [[package]] | ||
| 491 | name = "displaydoc" | ||
| 492 | version = "0.2.5" | ||
| 493 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 494 | checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" | ||
| 495 | dependencies = [ | ||
| 496 | "proc-macro2", | ||
| 497 | "quote", | ||
| 498 | "syn", | ||
| 499 | ] | ||
| 500 | |||
| 501 | [[package]] | ||
| 502 | name = "dotenvy" | ||
| 503 | version = "0.15.7" | ||
| 504 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 505 | checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" | ||
| 506 | |||
| 507 | [[package]] | ||
| 508 | name = "either" | ||
| 509 | version = "1.16.0" | ||
| 510 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 511 | checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" | ||
| 512 | dependencies = [ | ||
| 513 | "serde", | ||
| 514 | ] | ||
| 515 | |||
| 516 | [[package]] | ||
| 517 | name = "encoding_rs" | ||
| 518 | version = "0.8.35" | ||
| 519 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 520 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" | ||
| 521 | dependencies = [ | ||
| 522 | "cfg-if", | ||
| 523 | ] | ||
| 524 | |||
| 525 | [[package]] | ||
| 526 | name = "equivalent" | ||
| 527 | version = "1.0.2" | ||
| 528 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 529 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" | ||
| 530 | |||
| 531 | [[package]] | ||
| 532 | name = "errno" | ||
| 533 | version = "0.3.14" | ||
| 534 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 535 | checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" | ||
| 536 | dependencies = [ | ||
| 537 | "libc", | ||
| 538 | "windows-sys 0.61.2", | ||
| 539 | ] | ||
| 540 | |||
| 541 | [[package]] | ||
| 542 | name = "etcetera" | ||
| 543 | version = "0.8.0" | ||
| 544 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 545 | checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" | ||
| 546 | dependencies = [ | ||
| 547 | "cfg-if", | ||
| 548 | "home", | ||
| 549 | "windows-sys 0.48.0", | ||
| 550 | ] | ||
| 551 | |||
| 552 | [[package]] | ||
| 553 | name = "event-listener" | ||
| 554 | version = "5.4.1" | ||
| 555 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 556 | checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" | ||
| 557 | dependencies = [ | ||
| 558 | "concurrent-queue", | ||
| 559 | "parking", | ||
| 560 | "pin-project-lite", | ||
| 561 | ] | ||
| 562 | |||
| 563 | [[package]] | ||
| 564 | name = "fastrand" | ||
| 565 | version = "2.4.1" | ||
| 566 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 567 | checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" | ||
| 568 | |||
| 569 | [[package]] | ||
| 570 | name = "find-msvc-tools" | ||
| 571 | version = "0.1.9" | ||
| 572 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 573 | checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" | ||
| 574 | |||
| 575 | [[package]] | ||
| 576 | name = "flume" | ||
| 577 | version = "0.11.1" | ||
| 578 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 579 | checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" | ||
| 580 | dependencies = [ | ||
| 581 | "futures-core", | ||
| 582 | "futures-sink", | ||
| 583 | "spin", | ||
| 584 | ] | ||
| 585 | |||
| 586 | [[package]] | ||
| 587 | name = "fnv" | ||
| 588 | version = "1.0.7" | ||
| 589 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 590 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | ||
| 591 | |||
| 592 | [[package]] | ||
| 593 | name = "foldhash" | ||
| 594 | version = "0.1.5" | ||
| 595 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 596 | checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" | ||
| 597 | |||
| 598 | [[package]] | ||
| 599 | name = "foreign-types" | ||
| 600 | version = "0.3.2" | ||
| 601 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 602 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" | ||
| 603 | dependencies = [ | ||
| 604 | "foreign-types-shared", | ||
| 605 | ] | ||
| 606 | |||
| 607 | [[package]] | ||
| 608 | name = "foreign-types-shared" | ||
| 609 | version = "0.1.1" | ||
| 610 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 611 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" | ||
| 612 | |||
| 613 | [[package]] | ||
| 614 | name = "form_urlencoded" | ||
| 615 | version = "1.2.2" | ||
| 616 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 617 | checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" | ||
| 618 | dependencies = [ | ||
| 619 | "percent-encoding", | ||
| 620 | ] | ||
| 621 | |||
| 622 | [[package]] | ||
| 623 | name = "futures" | ||
| 624 | version = "0.3.32" | ||
| 625 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 626 | checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" | ||
| 627 | dependencies = [ | ||
| 628 | "futures-channel", | ||
| 629 | "futures-core", | ||
| 630 | "futures-io", | ||
| 631 | "futures-sink", | ||
| 632 | "futures-task", | ||
| 633 | "futures-util", | ||
| 634 | ] | ||
| 635 | |||
| 636 | [[package]] | ||
| 637 | name = "futures-channel" | ||
| 638 | version = "0.3.32" | ||
| 639 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 640 | checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" | ||
| 641 | dependencies = [ | ||
| 642 | "futures-core", | ||
| 643 | "futures-sink", | ||
| 644 | ] | ||
| 645 | |||
| 646 | [[package]] | ||
| 647 | name = "futures-core" | ||
| 648 | version = "0.3.32" | ||
| 649 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 650 | checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" | ||
| 651 | |||
| 652 | [[package]] | ||
| 653 | name = "futures-executor" | ||
| 654 | version = "0.3.32" | ||
| 655 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 656 | checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" | ||
| 657 | dependencies = [ | ||
| 658 | "futures-core", | ||
| 659 | "futures-task", | ||
| 660 | "futures-util", | ||
| 661 | ] | ||
| 662 | |||
| 663 | [[package]] | ||
| 664 | name = "futures-intrusive" | ||
| 665 | version = "0.5.0" | ||
| 666 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 667 | checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" | ||
| 668 | dependencies = [ | ||
| 669 | "futures-core", | ||
| 670 | "lock_api", | ||
| 671 | "parking_lot", | ||
| 672 | ] | ||
| 673 | |||
| 674 | [[package]] | ||
| 675 | name = "futures-io" | ||
| 676 | version = "0.3.32" | ||
| 677 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 678 | checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" | ||
| 679 | |||
| 680 | [[package]] | ||
| 681 | name = "futures-sink" | ||
| 682 | version = "0.3.32" | ||
| 683 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 684 | checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" | ||
| 685 | |||
| 686 | [[package]] | ||
| 687 | name = "futures-task" | ||
| 688 | version = "0.3.32" | ||
| 689 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 690 | checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" | ||
| 691 | |||
| 692 | [[package]] | ||
| 693 | name = "futures-util" | ||
| 694 | version = "0.3.32" | ||
| 695 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 696 | checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" | ||
| 697 | dependencies = [ | ||
| 698 | "futures-channel", | ||
| 699 | "futures-core", | ||
| 700 | "futures-io", | ||
| 701 | "futures-sink", | ||
| 702 | "futures-task", | ||
| 703 | "memchr", | ||
| 704 | "pin-project-lite", | ||
| 705 | "slab", | ||
| 706 | ] | ||
| 707 | |||
| 708 | [[package]] | ||
| 709 | name = "generic-array" | ||
| 710 | version = "0.14.7" | ||
| 711 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 712 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" | ||
| 713 | dependencies = [ | ||
| 714 | "typenum", | ||
| 715 | "version_check", | ||
| 716 | ] | ||
| 717 | |||
| 718 | [[package]] | ||
| 719 | name = "getrandom" | ||
| 720 | version = "0.2.17" | ||
| 721 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 722 | checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" | ||
| 723 | dependencies = [ | ||
| 724 | "cfg-if", | ||
| 725 | "js-sys", | ||
| 726 | "libc", | ||
| 727 | "wasi", | ||
| 728 | "wasm-bindgen", | ||
| 729 | ] | ||
| 730 | |||
| 731 | [[package]] | ||
| 732 | name = "getrandom" | ||
| 733 | version = "0.3.4" | ||
| 734 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 735 | checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" | ||
| 736 | dependencies = [ | ||
| 737 | "cfg-if", | ||
| 738 | "libc", | ||
| 739 | "r-efi 5.3.0", | ||
| 740 | "wasip2", | ||
| 741 | ] | ||
| 742 | |||
| 743 | [[package]] | ||
| 744 | name = "getrandom" | ||
| 745 | version = "0.4.2" | ||
| 746 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 747 | checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" | ||
| 748 | dependencies = [ | ||
| 749 | "cfg-if", | ||
| 750 | "libc", | ||
| 751 | "r-efi 6.0.0", | ||
| 752 | "wasip2", | ||
| 753 | "wasip3", | ||
| 754 | ] | ||
| 755 | |||
| 756 | [[package]] | ||
| 757 | name = "git2" | ||
| 758 | version = "0.20.4" | ||
| 759 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 760 | checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b" | ||
| 761 | dependencies = [ | ||
| 762 | "bitflags", | ||
| 763 | "libc", | ||
| 764 | "libgit2-sys", | ||
| 765 | "log", | ||
| 766 | "openssl-probe 0.1.6", | ||
| 767 | "openssl-sys", | ||
| 768 | "url", | ||
| 769 | ] | ||
| 770 | |||
| 771 | [[package]] | ||
| 772 | name = "gloo-timers" | ||
| 773 | version = "0.3.0" | ||
| 774 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 775 | checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" | ||
| 776 | dependencies = [ | ||
| 777 | "futures-channel", | ||
| 778 | "futures-core", | ||
| 779 | "js-sys", | ||
| 780 | "wasm-bindgen", | ||
| 781 | ] | ||
| 782 | |||
| 783 | [[package]] | ||
| 784 | name = "grasp-mirror" | ||
| 785 | version = "0.1.0" | ||
| 786 | dependencies = [ | ||
| 787 | "anyhow", | ||
| 788 | "clap", | ||
| 789 | "dirs", | ||
| 790 | "dotenvy", | ||
| 791 | "git2", | ||
| 792 | "hex", | ||
| 793 | "nostr", | ||
| 794 | "nostr-sdk", | ||
| 795 | "reqwest", | ||
| 796 | "serde", | ||
| 797 | "serde_json", | ||
| 798 | "sqlx", | ||
| 799 | "tokio", | ||
| 800 | "toml", | ||
| 801 | "tracing", | ||
| 802 | "tracing-subscriber", | ||
| 803 | ] | ||
| 804 | |||
| 805 | [[package]] | ||
| 806 | name = "h2" | ||
| 807 | version = "0.4.14" | ||
| 808 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 809 | checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733" | ||
| 810 | dependencies = [ | ||
| 811 | "atomic-waker", | ||
| 812 | "bytes", | ||
| 813 | "fnv", | ||
| 814 | "futures-core", | ||
| 815 | "futures-sink", | ||
| 816 | "http", | ||
| 817 | "indexmap", | ||
| 818 | "slab", | ||
| 819 | "tokio", | ||
| 820 | "tokio-util", | ||
| 821 | "tracing", | ||
| 822 | ] | ||
| 823 | |||
| 824 | [[package]] | ||
| 825 | name = "hashbrown" | ||
| 826 | version = "0.15.5" | ||
| 827 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 828 | checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" | ||
| 829 | dependencies = [ | ||
| 830 | "allocator-api2", | ||
| 831 | "equivalent", | ||
| 832 | "foldhash", | ||
| 833 | ] | ||
| 834 | |||
| 835 | [[package]] | ||
| 836 | name = "hashbrown" | ||
| 837 | version = "0.17.1" | ||
| 838 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 839 | checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" | ||
| 840 | |||
| 841 | [[package]] | ||
| 842 | name = "hashlink" | ||
| 843 | version = "0.10.0" | ||
| 844 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 845 | checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" | ||
| 846 | dependencies = [ | ||
| 847 | "hashbrown 0.15.5", | ||
| 848 | ] | ||
| 849 | |||
| 850 | [[package]] | ||
| 851 | name = "heck" | ||
| 852 | version = "0.5.0" | ||
| 853 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 854 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" | ||
| 855 | |||
| 856 | [[package]] | ||
| 857 | name = "hex" | ||
| 858 | version = "0.4.3" | ||
| 859 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 860 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" | ||
| 861 | |||
| 862 | [[package]] | ||
| 863 | name = "hex-conservative" | ||
| 864 | version = "0.2.2" | ||
| 865 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 866 | checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f" | ||
| 867 | dependencies = [ | ||
| 868 | "arrayvec", | ||
| 869 | ] | ||
| 870 | |||
| 871 | [[package]] | ||
| 872 | name = "hkdf" | ||
| 873 | version = "0.12.4" | ||
| 874 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 875 | checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" | ||
| 876 | dependencies = [ | ||
| 877 | "hmac", | ||
| 878 | ] | ||
| 879 | |||
| 880 | [[package]] | ||
| 881 | name = "hmac" | ||
| 882 | version = "0.12.1" | ||
| 883 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 884 | checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" | ||
| 885 | dependencies = [ | ||
| 886 | "digest", | ||
| 887 | ] | ||
| 888 | |||
| 889 | [[package]] | ||
| 890 | name = "home" | ||
| 891 | version = "0.5.12" | ||
| 892 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 893 | checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" | ||
| 894 | dependencies = [ | ||
| 895 | "windows-sys 0.61.2", | ||
| 896 | ] | ||
| 897 | |||
| 898 | [[package]] | ||
| 899 | name = "http" | ||
| 900 | version = "1.4.1" | ||
| 901 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 902 | checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0" | ||
| 903 | dependencies = [ | ||
| 904 | "bytes", | ||
| 905 | "itoa", | ||
| 906 | ] | ||
| 907 | |||
| 908 | [[package]] | ||
| 909 | name = "http-body" | ||
| 910 | version = "1.0.1" | ||
| 911 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 912 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" | ||
| 913 | dependencies = [ | ||
| 914 | "bytes", | ||
| 915 | "http", | ||
| 916 | ] | ||
| 917 | |||
| 918 | [[package]] | ||
| 919 | name = "http-body-util" | ||
| 920 | version = "0.1.3" | ||
| 921 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 922 | checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" | ||
| 923 | dependencies = [ | ||
| 924 | "bytes", | ||
| 925 | "futures-core", | ||
| 926 | "http", | ||
| 927 | "http-body", | ||
| 928 | "pin-project-lite", | ||
| 929 | ] | ||
| 930 | |||
| 931 | [[package]] | ||
| 932 | name = "httparse" | ||
| 933 | version = "1.10.1" | ||
| 934 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 935 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" | ||
| 936 | |||
| 937 | [[package]] | ||
| 938 | name = "hyper" | ||
| 939 | version = "1.9.0" | ||
| 940 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 941 | checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" | ||
| 942 | dependencies = [ | ||
| 943 | "atomic-waker", | ||
| 944 | "bytes", | ||
| 945 | "futures-channel", | ||
| 946 | "futures-core", | ||
| 947 | "h2", | ||
| 948 | "http", | ||
| 949 | "http-body", | ||
| 950 | "httparse", | ||
| 951 | "itoa", | ||
| 952 | "pin-project-lite", | ||
| 953 | "smallvec", | ||
| 954 | "tokio", | ||
| 955 | "want", | ||
| 956 | ] | ||
| 957 | |||
| 958 | [[package]] | ||
| 959 | name = "hyper-rustls" | ||
| 960 | version = "0.27.9" | ||
| 961 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 962 | checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" | ||
| 963 | dependencies = [ | ||
| 964 | "http", | ||
| 965 | "hyper", | ||
| 966 | "hyper-util", | ||
| 967 | "rustls", | ||
| 968 | "tokio", | ||
| 969 | "tokio-rustls", | ||
| 970 | "tower-service", | ||
| 971 | ] | ||
| 972 | |||
| 973 | [[package]] | ||
| 974 | name = "hyper-tls" | ||
| 975 | version = "0.6.0" | ||
| 976 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 977 | checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" | ||
| 978 | dependencies = [ | ||
| 979 | "bytes", | ||
| 980 | "http-body-util", | ||
| 981 | "hyper", | ||
| 982 | "hyper-util", | ||
| 983 | "native-tls", | ||
| 984 | "tokio", | ||
| 985 | "tokio-native-tls", | ||
| 986 | "tower-service", | ||
| 987 | ] | ||
| 988 | |||
| 989 | [[package]] | ||
| 990 | name = "hyper-util" | ||
| 991 | version = "0.1.20" | ||
| 992 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 993 | checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" | ||
| 994 | dependencies = [ | ||
| 995 | "base64", | ||
| 996 | "bytes", | ||
| 997 | "futures-channel", | ||
| 998 | "futures-util", | ||
| 999 | "http", | ||
| 1000 | "http-body", | ||
| 1001 | "hyper", | ||
| 1002 | "ipnet", | ||
| 1003 | "libc", | ||
| 1004 | "percent-encoding", | ||
| 1005 | "pin-project-lite", | ||
| 1006 | "socket2", | ||
| 1007 | "system-configuration", | ||
| 1008 | "tokio", | ||
| 1009 | "tower-service", | ||
| 1010 | "tracing", | ||
| 1011 | "windows-registry", | ||
| 1012 | ] | ||
| 1013 | |||
| 1014 | [[package]] | ||
| 1015 | name = "icu_collections" | ||
| 1016 | version = "2.2.0" | ||
| 1017 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1018 | checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" | ||
| 1019 | dependencies = [ | ||
| 1020 | "displaydoc", | ||
| 1021 | "potential_utf", | ||
| 1022 | "utf8_iter", | ||
| 1023 | "yoke", | ||
| 1024 | "zerofrom", | ||
| 1025 | "zerovec", | ||
| 1026 | ] | ||
| 1027 | |||
| 1028 | [[package]] | ||
| 1029 | name = "icu_locale_core" | ||
| 1030 | version = "2.2.0" | ||
| 1031 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1032 | checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" | ||
| 1033 | dependencies = [ | ||
| 1034 | "displaydoc", | ||
| 1035 | "litemap", | ||
| 1036 | "tinystr", | ||
| 1037 | "writeable", | ||
| 1038 | "zerovec", | ||
| 1039 | ] | ||
| 1040 | |||
| 1041 | [[package]] | ||
| 1042 | name = "icu_normalizer" | ||
| 1043 | version = "2.2.0" | ||
| 1044 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1045 | checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" | ||
| 1046 | dependencies = [ | ||
| 1047 | "icu_collections", | ||
| 1048 | "icu_normalizer_data", | ||
| 1049 | "icu_properties", | ||
| 1050 | "icu_provider", | ||
| 1051 | "smallvec", | ||
| 1052 | "zerovec", | ||
| 1053 | ] | ||
| 1054 | |||
| 1055 | [[package]] | ||
| 1056 | name = "icu_normalizer_data" | ||
| 1057 | version = "2.2.0" | ||
| 1058 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1059 | checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" | ||
| 1060 | |||
| 1061 | [[package]] | ||
| 1062 | name = "icu_properties" | ||
| 1063 | version = "2.2.0" | ||
| 1064 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1065 | checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" | ||
| 1066 | dependencies = [ | ||
| 1067 | "icu_collections", | ||
| 1068 | "icu_locale_core", | ||
| 1069 | "icu_properties_data", | ||
| 1070 | "icu_provider", | ||
| 1071 | "zerotrie", | ||
| 1072 | "zerovec", | ||
| 1073 | ] | ||
| 1074 | |||
| 1075 | [[package]] | ||
| 1076 | name = "icu_properties_data" | ||
| 1077 | version = "2.2.0" | ||
| 1078 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1079 | checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" | ||
| 1080 | |||
| 1081 | [[package]] | ||
| 1082 | name = "icu_provider" | ||
| 1083 | version = "2.2.0" | ||
| 1084 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1085 | checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" | ||
| 1086 | dependencies = [ | ||
| 1087 | "displaydoc", | ||
| 1088 | "icu_locale_core", | ||
| 1089 | "writeable", | ||
| 1090 | "yoke", | ||
| 1091 | "zerofrom", | ||
| 1092 | "zerotrie", | ||
| 1093 | "zerovec", | ||
| 1094 | ] | ||
| 1095 | |||
| 1096 | [[package]] | ||
| 1097 | name = "id-arena" | ||
| 1098 | version = "2.3.0" | ||
| 1099 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1100 | checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" | ||
| 1101 | |||
| 1102 | [[package]] | ||
| 1103 | name = "idna" | ||
| 1104 | version = "1.1.0" | ||
| 1105 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1106 | checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" | ||
| 1107 | dependencies = [ | ||
| 1108 | "idna_adapter", | ||
| 1109 | "smallvec", | ||
| 1110 | "utf8_iter", | ||
| 1111 | ] | ||
| 1112 | |||
| 1113 | [[package]] | ||
| 1114 | name = "idna_adapter" | ||
| 1115 | version = "1.2.2" | ||
| 1116 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1117 | checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" | ||
| 1118 | dependencies = [ | ||
| 1119 | "icu_normalizer", | ||
| 1120 | "icu_properties", | ||
| 1121 | ] | ||
| 1122 | |||
| 1123 | [[package]] | ||
| 1124 | name = "indexmap" | ||
| 1125 | version = "2.14.0" | ||
| 1126 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1127 | checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" | ||
| 1128 | dependencies = [ | ||
| 1129 | "equivalent", | ||
| 1130 | "hashbrown 0.17.1", | ||
| 1131 | "serde", | ||
| 1132 | "serde_core", | ||
| 1133 | ] | ||
| 1134 | |||
| 1135 | [[package]] | ||
| 1136 | name = "inout" | ||
| 1137 | version = "0.1.4" | ||
| 1138 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1139 | checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" | ||
| 1140 | dependencies = [ | ||
| 1141 | "block-padding", | ||
| 1142 | "generic-array", | ||
| 1143 | ] | ||
| 1144 | |||
| 1145 | [[package]] | ||
| 1146 | name = "instant" | ||
| 1147 | version = "0.1.13" | ||
| 1148 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1149 | checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" | ||
| 1150 | dependencies = [ | ||
| 1151 | "cfg-if", | ||
| 1152 | "js-sys", | ||
| 1153 | "wasm-bindgen", | ||
| 1154 | "web-sys", | ||
| 1155 | ] | ||
| 1156 | |||
| 1157 | [[package]] | ||
| 1158 | name = "ipnet" | ||
| 1159 | version = "2.12.0" | ||
| 1160 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1161 | checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" | ||
| 1162 | |||
| 1163 | [[package]] | ||
| 1164 | name = "is_terminal_polyfill" | ||
| 1165 | version = "1.70.2" | ||
| 1166 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1167 | checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" | ||
| 1168 | |||
| 1169 | [[package]] | ||
| 1170 | name = "itoa" | ||
| 1171 | version = "1.0.18" | ||
| 1172 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1173 | checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" | ||
| 1174 | |||
| 1175 | [[package]] | ||
| 1176 | name = "jobserver" | ||
| 1177 | version = "0.1.34" | ||
| 1178 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1179 | checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" | ||
| 1180 | dependencies = [ | ||
| 1181 | "getrandom 0.3.4", | ||
| 1182 | "libc", | ||
| 1183 | ] | ||
| 1184 | |||
| 1185 | [[package]] | ||
| 1186 | name = "js-sys" | ||
| 1187 | version = "0.3.99" | ||
| 1188 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1189 | checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11" | ||
| 1190 | dependencies = [ | ||
| 1191 | "cfg-if", | ||
| 1192 | "futures-util", | ||
| 1193 | "once_cell", | ||
| 1194 | "wasm-bindgen", | ||
| 1195 | ] | ||
| 1196 | |||
| 1197 | [[package]] | ||
| 1198 | name = "lazy_static" | ||
| 1199 | version = "1.5.0" | ||
| 1200 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1201 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" | ||
| 1202 | dependencies = [ | ||
| 1203 | "spin", | ||
| 1204 | ] | ||
| 1205 | |||
| 1206 | [[package]] | ||
| 1207 | name = "leb128fmt" | ||
| 1208 | version = "0.1.0" | ||
| 1209 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1210 | checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" | ||
| 1211 | |||
| 1212 | [[package]] | ||
| 1213 | name = "libc" | ||
| 1214 | version = "0.2.186" | ||
| 1215 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1216 | checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" | ||
| 1217 | |||
| 1218 | [[package]] | ||
| 1219 | name = "libgit2-sys" | ||
| 1220 | version = "0.18.4+1.9.3" | ||
| 1221 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1222 | checksum = "9b26f66f35e1871b22efcf7191564123d2a446ca0538cde63c23adfefa9b15b7" | ||
| 1223 | dependencies = [ | ||
| 1224 | "cc", | ||
| 1225 | "libc", | ||
| 1226 | "libssh2-sys", | ||
| 1227 | "libz-sys", | ||
| 1228 | "openssl-sys", | ||
| 1229 | "pkg-config", | ||
| 1230 | ] | ||
| 1231 | |||
| 1232 | [[package]] | ||
| 1233 | name = "libm" | ||
| 1234 | version = "0.2.16" | ||
| 1235 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1236 | checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" | ||
| 1237 | |||
| 1238 | [[package]] | ||
| 1239 | name = "libredox" | ||
| 1240 | version = "0.1.16" | ||
| 1241 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1242 | checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c" | ||
| 1243 | dependencies = [ | ||
| 1244 | "bitflags", | ||
| 1245 | "libc", | ||
| 1246 | "plain", | ||
| 1247 | "redox_syscall 0.7.5", | ||
| 1248 | ] | ||
| 1249 | |||
| 1250 | [[package]] | ||
| 1251 | name = "libsqlite3-sys" | ||
| 1252 | version = "0.30.1" | ||
| 1253 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1254 | checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" | ||
| 1255 | dependencies = [ | ||
| 1256 | "cc", | ||
| 1257 | "pkg-config", | ||
| 1258 | "vcpkg", | ||
| 1259 | ] | ||
| 1260 | |||
| 1261 | [[package]] | ||
| 1262 | name = "libssh2-sys" | ||
| 1263 | version = "0.3.1" | ||
| 1264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1265 | checksum = "220e4f05ad4a218192533b300327f5150e809b54c4ec83b5a1d91833601811b9" | ||
| 1266 | dependencies = [ | ||
| 1267 | "cc", | ||
| 1268 | "libc", | ||
| 1269 | "libz-sys", | ||
| 1270 | "openssl-sys", | ||
| 1271 | "pkg-config", | ||
| 1272 | "vcpkg", | ||
| 1273 | ] | ||
| 1274 | |||
| 1275 | [[package]] | ||
| 1276 | name = "libz-sys" | ||
| 1277 | version = "1.1.28" | ||
| 1278 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1279 | checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22" | ||
| 1280 | dependencies = [ | ||
| 1281 | "cc", | ||
| 1282 | "libc", | ||
| 1283 | "pkg-config", | ||
| 1284 | "vcpkg", | ||
| 1285 | ] | ||
| 1286 | |||
| 1287 | [[package]] | ||
| 1288 | name = "linux-raw-sys" | ||
| 1289 | version = "0.12.1" | ||
| 1290 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1291 | checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" | ||
| 1292 | |||
| 1293 | [[package]] | ||
| 1294 | name = "litemap" | ||
| 1295 | version = "0.8.2" | ||
| 1296 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1297 | checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" | ||
| 1298 | |||
| 1299 | [[package]] | ||
| 1300 | name = "lock_api" | ||
| 1301 | version = "0.4.14" | ||
| 1302 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1303 | checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" | ||
| 1304 | dependencies = [ | ||
| 1305 | "scopeguard", | ||
| 1306 | ] | ||
| 1307 | |||
| 1308 | [[package]] | ||
| 1309 | name = "log" | ||
| 1310 | version = "0.4.30" | ||
| 1311 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1312 | checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5" | ||
| 1313 | |||
| 1314 | [[package]] | ||
| 1315 | name = "matchers" | ||
| 1316 | version = "0.2.0" | ||
| 1317 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1318 | checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" | ||
| 1319 | dependencies = [ | ||
| 1320 | "regex-automata", | ||
| 1321 | ] | ||
| 1322 | |||
| 1323 | [[package]] | ||
| 1324 | name = "md-5" | ||
| 1325 | version = "0.10.6" | ||
| 1326 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1327 | checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" | ||
| 1328 | dependencies = [ | ||
| 1329 | "cfg-if", | ||
| 1330 | "digest", | ||
| 1331 | ] | ||
| 1332 | |||
| 1333 | [[package]] | ||
| 1334 | name = "memchr" | ||
| 1335 | version = "2.8.0" | ||
| 1336 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1337 | checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" | ||
| 1338 | |||
| 1339 | [[package]] | ||
| 1340 | name = "mime" | ||
| 1341 | version = "0.3.17" | ||
| 1342 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1343 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" | ||
| 1344 | |||
| 1345 | [[package]] | ||
| 1346 | name = "mio" | ||
| 1347 | version = "1.2.0" | ||
| 1348 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1349 | checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" | ||
| 1350 | dependencies = [ | ||
| 1351 | "libc", | ||
| 1352 | "wasi", | ||
| 1353 | "windows-sys 0.61.2", | ||
| 1354 | ] | ||
| 1355 | |||
| 1356 | [[package]] | ||
| 1357 | name = "native-tls" | ||
| 1358 | version = "0.2.18" | ||
| 1359 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1360 | checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" | ||
| 1361 | dependencies = [ | ||
| 1362 | "libc", | ||
| 1363 | "log", | ||
| 1364 | "openssl", | ||
| 1365 | "openssl-probe 0.2.1", | ||
| 1366 | "openssl-sys", | ||
| 1367 | "schannel", | ||
| 1368 | "security-framework", | ||
| 1369 | "security-framework-sys", | ||
| 1370 | "tempfile", | ||
| 1371 | ] | ||
| 1372 | |||
| 1373 | [[package]] | ||
| 1374 | name = "negentropy" | ||
| 1375 | version = "0.3.1" | ||
| 1376 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1377 | checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe" | ||
| 1378 | |||
| 1379 | [[package]] | ||
| 1380 | name = "negentropy" | ||
| 1381 | version = "0.5.0" | ||
| 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1383 | checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d" | ||
| 1384 | |||
| 1385 | [[package]] | ||
| 1386 | name = "nostr" | ||
| 1387 | version = "0.39.0" | ||
| 1388 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1389 | checksum = "d90b55eff1f0747d9e423972179672e1aacac3d3ccee4c1281147eaa90d6491e" | ||
| 1390 | dependencies = [ | ||
| 1391 | "base64", | ||
| 1392 | "bech32", | ||
| 1393 | "bip39", | ||
| 1394 | "bitcoin_hashes", | ||
| 1395 | "cbc", | ||
| 1396 | "chacha20", | ||
| 1397 | "chacha20poly1305", | ||
| 1398 | "getrandom 0.2.17", | ||
| 1399 | "instant", | ||
| 1400 | "scrypt", | ||
| 1401 | "secp256k1", | ||
| 1402 | "serde", | ||
| 1403 | "serde_json", | ||
| 1404 | "unicode-normalization", | ||
| 1405 | "url", | ||
| 1406 | ] | ||
| 1407 | |||
| 1408 | [[package]] | ||
| 1409 | name = "nostr-database" | ||
| 1410 | version = "0.39.0" | ||
| 1411 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1412 | checksum = "ce07b47c77b8e5a856727885fe0ae47b9aa53d8d853a2190dd479b5a0d6e4f52" | ||
| 1413 | dependencies = [ | ||
| 1414 | "nostr", | ||
| 1415 | "tokio", | ||
| 1416 | ] | ||
| 1417 | |||
| 1418 | [[package]] | ||
| 1419 | name = "nostr-relay-pool" | ||
| 1420 | version = "0.39.0" | ||
| 1421 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1422 | checksum = "211ac5bbdda1a8eec0c21814a838da832038767a5d354fe2fcc1ca438cae56fd" | ||
| 1423 | dependencies = [ | ||
| 1424 | "async-utility", | ||
| 1425 | "async-wsocket", | ||
| 1426 | "atomic-destructor", | ||
| 1427 | "negentropy 0.3.1", | ||
| 1428 | "negentropy 0.5.0", | ||
| 1429 | "nostr", | ||
| 1430 | "nostr-database", | ||
| 1431 | "tokio", | ||
| 1432 | "tracing", | ||
| 1433 | ] | ||
| 1434 | |||
| 1435 | [[package]] | ||
| 1436 | name = "nostr-sdk" | ||
| 1437 | version = "0.39.0" | ||
| 1438 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1439 | checksum = "5baca581deb810a88bb51c54d1d7980f4506a64a3e9a19270829b406e47adf31" | ||
| 1440 | dependencies = [ | ||
| 1441 | "async-utility", | ||
| 1442 | "nostr", | ||
| 1443 | "nostr-database", | ||
| 1444 | "nostr-relay-pool", | ||
| 1445 | "tokio", | ||
| 1446 | "tracing", | ||
| 1447 | ] | ||
| 1448 | |||
| 1449 | [[package]] | ||
| 1450 | name = "nu-ansi-term" | ||
| 1451 | version = "0.50.3" | ||
| 1452 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1453 | checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" | ||
| 1454 | dependencies = [ | ||
| 1455 | "windows-sys 0.61.2", | ||
| 1456 | ] | ||
| 1457 | |||
| 1458 | [[package]] | ||
| 1459 | name = "num-bigint-dig" | ||
| 1460 | version = "0.8.6" | ||
| 1461 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1462 | checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" | ||
| 1463 | dependencies = [ | ||
| 1464 | "lazy_static", | ||
| 1465 | "libm", | ||
| 1466 | "num-integer", | ||
| 1467 | "num-iter", | ||
| 1468 | "num-traits", | ||
| 1469 | "rand 0.8.6", | ||
| 1470 | "smallvec", | ||
| 1471 | "zeroize", | ||
| 1472 | ] | ||
| 1473 | |||
| 1474 | [[package]] | ||
| 1475 | name = "num-integer" | ||
| 1476 | version = "0.1.46" | ||
| 1477 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1478 | checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" | ||
| 1479 | dependencies = [ | ||
| 1480 | "num-traits", | ||
| 1481 | ] | ||
| 1482 | |||
| 1483 | [[package]] | ||
| 1484 | name = "num-iter" | ||
| 1485 | version = "0.1.45" | ||
| 1486 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1487 | checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" | ||
| 1488 | dependencies = [ | ||
| 1489 | "autocfg", | ||
| 1490 | "num-integer", | ||
| 1491 | "num-traits", | ||
| 1492 | ] | ||
| 1493 | |||
| 1494 | [[package]] | ||
| 1495 | name = "num-traits" | ||
| 1496 | version = "0.2.19" | ||
| 1497 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1498 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" | ||
| 1499 | dependencies = [ | ||
| 1500 | "autocfg", | ||
| 1501 | "libm", | ||
| 1502 | ] | ||
| 1503 | |||
| 1504 | [[package]] | ||
| 1505 | name = "once_cell" | ||
| 1506 | version = "1.21.4" | ||
| 1507 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1508 | checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" | ||
| 1509 | |||
| 1510 | [[package]] | ||
| 1511 | name = "once_cell_polyfill" | ||
| 1512 | version = "1.70.2" | ||
| 1513 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1514 | checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" | ||
| 1515 | |||
| 1516 | [[package]] | ||
| 1517 | name = "opaque-debug" | ||
| 1518 | version = "0.3.1" | ||
| 1519 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1520 | checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" | ||
| 1521 | |||
| 1522 | [[package]] | ||
| 1523 | name = "openssl" | ||
| 1524 | version = "0.10.80" | ||
| 1525 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1526 | checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967" | ||
| 1527 | dependencies = [ | ||
| 1528 | "bitflags", | ||
| 1529 | "cfg-if", | ||
| 1530 | "foreign-types", | ||
| 1531 | "libc", | ||
| 1532 | "openssl-macros", | ||
| 1533 | "openssl-sys", | ||
| 1534 | ] | ||
| 1535 | |||
| 1536 | [[package]] | ||
| 1537 | name = "openssl-macros" | ||
| 1538 | version = "0.1.1" | ||
| 1539 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1540 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" | ||
| 1541 | dependencies = [ | ||
| 1542 | "proc-macro2", | ||
| 1543 | "quote", | ||
| 1544 | "syn", | ||
| 1545 | ] | ||
| 1546 | |||
| 1547 | [[package]] | ||
| 1548 | name = "openssl-probe" | ||
| 1549 | version = "0.1.6" | ||
| 1550 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1551 | checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" | ||
| 1552 | |||
| 1553 | [[package]] | ||
| 1554 | name = "openssl-probe" | ||
| 1555 | version = "0.2.1" | ||
| 1556 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1557 | checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" | ||
| 1558 | |||
| 1559 | [[package]] | ||
| 1560 | name = "openssl-sys" | ||
| 1561 | version = "0.9.116" | ||
| 1562 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1563 | checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4" | ||
| 1564 | dependencies = [ | ||
| 1565 | "cc", | ||
| 1566 | "libc", | ||
| 1567 | "pkg-config", | ||
| 1568 | "vcpkg", | ||
| 1569 | ] | ||
| 1570 | |||
| 1571 | [[package]] | ||
| 1572 | name = "option-ext" | ||
| 1573 | version = "0.2.0" | ||
| 1574 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1575 | checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" | ||
| 1576 | |||
| 1577 | [[package]] | ||
| 1578 | name = "parking" | ||
| 1579 | version = "2.2.1" | ||
| 1580 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1581 | checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" | ||
| 1582 | |||
| 1583 | [[package]] | ||
| 1584 | name = "parking_lot" | ||
| 1585 | version = "0.12.5" | ||
| 1586 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1587 | checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" | ||
| 1588 | dependencies = [ | ||
| 1589 | "lock_api", | ||
| 1590 | "parking_lot_core", | ||
| 1591 | ] | ||
| 1592 | |||
| 1593 | [[package]] | ||
| 1594 | name = "parking_lot_core" | ||
| 1595 | version = "0.9.12" | ||
| 1596 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1597 | checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" | ||
| 1598 | dependencies = [ | ||
| 1599 | "cfg-if", | ||
| 1600 | "libc", | ||
| 1601 | "redox_syscall 0.5.18", | ||
| 1602 | "smallvec", | ||
| 1603 | "windows-link", | ||
| 1604 | ] | ||
| 1605 | |||
| 1606 | [[package]] | ||
| 1607 | name = "password-hash" | ||
| 1608 | version = "0.5.0" | ||
| 1609 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1610 | checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" | ||
| 1611 | dependencies = [ | ||
| 1612 | "base64ct", | ||
| 1613 | "rand_core 0.6.4", | ||
| 1614 | "subtle", | ||
| 1615 | ] | ||
| 1616 | |||
| 1617 | [[package]] | ||
| 1618 | name = "pbkdf2" | ||
| 1619 | version = "0.12.2" | ||
| 1620 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1621 | checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" | ||
| 1622 | dependencies = [ | ||
| 1623 | "digest", | ||
| 1624 | "hmac", | ||
| 1625 | ] | ||
| 1626 | |||
| 1627 | [[package]] | ||
| 1628 | name = "pem-rfc7468" | ||
| 1629 | version = "0.7.0" | ||
| 1630 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1631 | checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" | ||
| 1632 | dependencies = [ | ||
| 1633 | "base64ct", | ||
| 1634 | ] | ||
| 1635 | |||
| 1636 | [[package]] | ||
| 1637 | name = "percent-encoding" | ||
| 1638 | version = "2.3.2" | ||
| 1639 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1640 | checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" | ||
| 1641 | |||
| 1642 | [[package]] | ||
| 1643 | name = "pin-project-lite" | ||
| 1644 | version = "0.2.17" | ||
| 1645 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1646 | checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" | ||
| 1647 | |||
| 1648 | [[package]] | ||
| 1649 | name = "pkcs1" | ||
| 1650 | version = "0.7.5" | ||
| 1651 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1652 | checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" | ||
| 1653 | dependencies = [ | ||
| 1654 | "der", | ||
| 1655 | "pkcs8", | ||
| 1656 | "spki", | ||
| 1657 | ] | ||
| 1658 | |||
| 1659 | [[package]] | ||
| 1660 | name = "pkcs8" | ||
| 1661 | version = "0.10.2" | ||
| 1662 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1663 | checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" | ||
| 1664 | dependencies = [ | ||
| 1665 | "der", | ||
| 1666 | "spki", | ||
| 1667 | ] | ||
| 1668 | |||
| 1669 | [[package]] | ||
| 1670 | name = "pkg-config" | ||
| 1671 | version = "0.3.33" | ||
| 1672 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1673 | checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" | ||
| 1674 | |||
| 1675 | [[package]] | ||
| 1676 | name = "plain" | ||
| 1677 | version = "0.2.3" | ||
| 1678 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1679 | checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" | ||
| 1680 | |||
| 1681 | [[package]] | ||
| 1682 | name = "poly1305" | ||
| 1683 | version = "0.8.0" | ||
| 1684 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1685 | checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" | ||
| 1686 | dependencies = [ | ||
| 1687 | "cpufeatures", | ||
| 1688 | "opaque-debug", | ||
| 1689 | "universal-hash", | ||
| 1690 | ] | ||
| 1691 | |||
| 1692 | [[package]] | ||
| 1693 | name = "potential_utf" | ||
| 1694 | version = "0.1.5" | ||
| 1695 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1696 | checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" | ||
| 1697 | dependencies = [ | ||
| 1698 | "zerovec", | ||
| 1699 | ] | ||
| 1700 | |||
| 1701 | [[package]] | ||
| 1702 | name = "ppv-lite86" | ||
| 1703 | version = "0.2.21" | ||
| 1704 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1705 | checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" | ||
| 1706 | dependencies = [ | ||
| 1707 | "zerocopy", | ||
| 1708 | ] | ||
| 1709 | |||
| 1710 | [[package]] | ||
| 1711 | name = "prettyplease" | ||
| 1712 | version = "0.2.37" | ||
| 1713 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1714 | checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" | ||
| 1715 | dependencies = [ | ||
| 1716 | "proc-macro2", | ||
| 1717 | "syn", | ||
| 1718 | ] | ||
| 1719 | |||
| 1720 | [[package]] | ||
| 1721 | name = "proc-macro2" | ||
| 1722 | version = "1.0.106" | ||
| 1723 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1724 | checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" | ||
| 1725 | dependencies = [ | ||
| 1726 | "unicode-ident", | ||
| 1727 | ] | ||
| 1728 | |||
| 1729 | [[package]] | ||
| 1730 | name = "quote" | ||
| 1731 | version = "1.0.45" | ||
| 1732 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1733 | checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" | ||
| 1734 | dependencies = [ | ||
| 1735 | "proc-macro2", | ||
| 1736 | ] | ||
| 1737 | |||
| 1738 | [[package]] | ||
| 1739 | name = "r-efi" | ||
| 1740 | version = "5.3.0" | ||
| 1741 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1742 | checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" | ||
| 1743 | |||
| 1744 | [[package]] | ||
| 1745 | name = "r-efi" | ||
| 1746 | version = "6.0.0" | ||
| 1747 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1748 | checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" | ||
| 1749 | |||
| 1750 | [[package]] | ||
| 1751 | name = "rand" | ||
| 1752 | version = "0.8.6" | ||
| 1753 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1754 | checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" | ||
| 1755 | dependencies = [ | ||
| 1756 | "libc", | ||
| 1757 | "rand_chacha 0.3.1", | ||
| 1758 | "rand_core 0.6.4", | ||
| 1759 | ] | ||
| 1760 | |||
| 1761 | [[package]] | ||
| 1762 | name = "rand" | ||
| 1763 | version = "0.9.4" | ||
| 1764 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1765 | checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" | ||
| 1766 | dependencies = [ | ||
| 1767 | "rand_chacha 0.9.0", | ||
| 1768 | "rand_core 0.9.5", | ||
| 1769 | ] | ||
| 1770 | |||
| 1771 | [[package]] | ||
| 1772 | name = "rand_chacha" | ||
| 1773 | version = "0.3.1" | ||
| 1774 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1775 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" | ||
| 1776 | dependencies = [ | ||
| 1777 | "ppv-lite86", | ||
| 1778 | "rand_core 0.6.4", | ||
| 1779 | ] | ||
| 1780 | |||
| 1781 | [[package]] | ||
| 1782 | name = "rand_chacha" | ||
| 1783 | version = "0.9.0" | ||
| 1784 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1785 | checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" | ||
| 1786 | dependencies = [ | ||
| 1787 | "ppv-lite86", | ||
| 1788 | "rand_core 0.9.5", | ||
| 1789 | ] | ||
| 1790 | |||
| 1791 | [[package]] | ||
| 1792 | name = "rand_core" | ||
| 1793 | version = "0.6.4" | ||
| 1794 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1795 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" | ||
| 1796 | dependencies = [ | ||
| 1797 | "getrandom 0.2.17", | ||
| 1798 | ] | ||
| 1799 | |||
| 1800 | [[package]] | ||
| 1801 | name = "rand_core" | ||
| 1802 | version = "0.9.5" | ||
| 1803 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1804 | checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" | ||
| 1805 | dependencies = [ | ||
| 1806 | "getrandom 0.3.4", | ||
| 1807 | ] | ||
| 1808 | |||
| 1809 | [[package]] | ||
| 1810 | name = "redox_syscall" | ||
| 1811 | version = "0.5.18" | ||
| 1812 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1813 | checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" | ||
| 1814 | dependencies = [ | ||
| 1815 | "bitflags", | ||
| 1816 | ] | ||
| 1817 | |||
| 1818 | [[package]] | ||
| 1819 | name = "redox_syscall" | ||
| 1820 | version = "0.7.5" | ||
| 1821 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1822 | checksum = "4666a1a60d8412eab19d94f6d13dcc9cea0a5ef4fdf6a5db306537413c661b1b" | ||
| 1823 | dependencies = [ | ||
| 1824 | "bitflags", | ||
| 1825 | ] | ||
| 1826 | |||
| 1827 | [[package]] | ||
| 1828 | name = "redox_users" | ||
| 1829 | version = "0.5.2" | ||
| 1830 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1831 | checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" | ||
| 1832 | dependencies = [ | ||
| 1833 | "getrandom 0.2.17", | ||
| 1834 | "libredox", | ||
| 1835 | "thiserror 2.0.18", | ||
| 1836 | ] | ||
| 1837 | |||
| 1838 | [[package]] | ||
| 1839 | name = "regex-automata" | ||
| 1840 | version = "0.4.14" | ||
| 1841 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1842 | checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" | ||
| 1843 | dependencies = [ | ||
| 1844 | "aho-corasick", | ||
| 1845 | "memchr", | ||
| 1846 | "regex-syntax", | ||
| 1847 | ] | ||
| 1848 | |||
| 1849 | [[package]] | ||
| 1850 | name = "regex-syntax" | ||
| 1851 | version = "0.8.10" | ||
| 1852 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1853 | checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" | ||
| 1854 | |||
| 1855 | [[package]] | ||
| 1856 | name = "reqwest" | ||
| 1857 | version = "0.12.28" | ||
| 1858 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1859 | checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" | ||
| 1860 | dependencies = [ | ||
| 1861 | "base64", | ||
| 1862 | "bytes", | ||
| 1863 | "encoding_rs", | ||
| 1864 | "futures-core", | ||
| 1865 | "h2", | ||
| 1866 | "http", | ||
| 1867 | "http-body", | ||
| 1868 | "http-body-util", | ||
| 1869 | "hyper", | ||
| 1870 | "hyper-rustls", | ||
| 1871 | "hyper-tls", | ||
| 1872 | "hyper-util", | ||
| 1873 | "js-sys", | ||
| 1874 | "log", | ||
| 1875 | "mime", | ||
| 1876 | "native-tls", | ||
| 1877 | "percent-encoding", | ||
| 1878 | "pin-project-lite", | ||
| 1879 | "rustls-pki-types", | ||
| 1880 | "serde", | ||
| 1881 | "serde_json", | ||
| 1882 | "serde_urlencoded", | ||
| 1883 | "sync_wrapper", | ||
| 1884 | "tokio", | ||
| 1885 | "tokio-native-tls", | ||
| 1886 | "tower", | ||
| 1887 | "tower-http", | ||
| 1888 | "tower-service", | ||
| 1889 | "url", | ||
| 1890 | "wasm-bindgen", | ||
| 1891 | "wasm-bindgen-futures", | ||
| 1892 | "web-sys", | ||
| 1893 | ] | ||
| 1894 | |||
| 1895 | [[package]] | ||
| 1896 | name = "ring" | ||
| 1897 | version = "0.17.14" | ||
| 1898 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1899 | checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" | ||
| 1900 | dependencies = [ | ||
| 1901 | "cc", | ||
| 1902 | "cfg-if", | ||
| 1903 | "getrandom 0.2.17", | ||
| 1904 | "libc", | ||
| 1905 | "untrusted", | ||
| 1906 | "windows-sys 0.52.0", | ||
| 1907 | ] | ||
| 1908 | |||
| 1909 | [[package]] | ||
| 1910 | name = "rsa" | ||
| 1911 | version = "0.9.10" | ||
| 1912 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1913 | checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" | ||
| 1914 | dependencies = [ | ||
| 1915 | "const-oid", | ||
| 1916 | "digest", | ||
| 1917 | "num-bigint-dig", | ||
| 1918 | "num-integer", | ||
| 1919 | "num-traits", | ||
| 1920 | "pkcs1", | ||
| 1921 | "pkcs8", | ||
| 1922 | "rand_core 0.6.4", | ||
| 1923 | "signature", | ||
| 1924 | "spki", | ||
| 1925 | "subtle", | ||
| 1926 | "zeroize", | ||
| 1927 | ] | ||
| 1928 | |||
| 1929 | [[package]] | ||
| 1930 | name = "rustix" | ||
| 1931 | version = "1.1.4" | ||
| 1932 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1933 | checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" | ||
| 1934 | dependencies = [ | ||
| 1935 | "bitflags", | ||
| 1936 | "errno", | ||
| 1937 | "libc", | ||
| 1938 | "linux-raw-sys", | ||
| 1939 | "windows-sys 0.61.2", | ||
| 1940 | ] | ||
| 1941 | |||
| 1942 | [[package]] | ||
| 1943 | name = "rustls" | ||
| 1944 | version = "0.23.40" | ||
| 1945 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1946 | checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b" | ||
| 1947 | dependencies = [ | ||
| 1948 | "once_cell", | ||
| 1949 | "ring", | ||
| 1950 | "rustls-pki-types", | ||
| 1951 | "rustls-webpki", | ||
| 1952 | "subtle", | ||
| 1953 | "zeroize", | ||
| 1954 | ] | ||
| 1955 | |||
| 1956 | [[package]] | ||
| 1957 | name = "rustls-pki-types" | ||
| 1958 | version = "1.14.1" | ||
| 1959 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1960 | checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9" | ||
| 1961 | dependencies = [ | ||
| 1962 | "zeroize", | ||
| 1963 | ] | ||
| 1964 | |||
| 1965 | [[package]] | ||
| 1966 | name = "rustls-webpki" | ||
| 1967 | version = "0.103.13" | ||
| 1968 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1969 | checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" | ||
| 1970 | dependencies = [ | ||
| 1971 | "ring", | ||
| 1972 | "rustls-pki-types", | ||
| 1973 | "untrusted", | ||
| 1974 | ] | ||
| 1975 | |||
| 1976 | [[package]] | ||
| 1977 | name = "rustversion" | ||
| 1978 | version = "1.0.22" | ||
| 1979 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1980 | checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" | ||
| 1981 | |||
| 1982 | [[package]] | ||
| 1983 | name = "ryu" | ||
| 1984 | version = "1.0.23" | ||
| 1985 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1986 | checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" | ||
| 1987 | |||
| 1988 | [[package]] | ||
| 1989 | name = "salsa20" | ||
| 1990 | version = "0.10.2" | ||
| 1991 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1992 | checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" | ||
| 1993 | dependencies = [ | ||
| 1994 | "cipher", | ||
| 1995 | ] | ||
| 1996 | |||
| 1997 | [[package]] | ||
| 1998 | name = "schannel" | ||
| 1999 | version = "0.1.29" | ||
| 2000 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2001 | checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" | ||
| 2002 | dependencies = [ | ||
| 2003 | "windows-sys 0.61.2", | ||
| 2004 | ] | ||
| 2005 | |||
| 2006 | [[package]] | ||
| 2007 | name = "scopeguard" | ||
| 2008 | version = "1.2.0" | ||
| 2009 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2010 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" | ||
| 2011 | |||
| 2012 | [[package]] | ||
| 2013 | name = "scrypt" | ||
| 2014 | version = "0.11.0" | ||
| 2015 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2016 | checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" | ||
| 2017 | dependencies = [ | ||
| 2018 | "password-hash", | ||
| 2019 | "pbkdf2", | ||
| 2020 | "salsa20", | ||
| 2021 | "sha2", | ||
| 2022 | ] | ||
| 2023 | |||
| 2024 | [[package]] | ||
| 2025 | name = "secp256k1" | ||
| 2026 | version = "0.29.1" | ||
| 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2028 | checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113" | ||
| 2029 | dependencies = [ | ||
| 2030 | "rand 0.8.6", | ||
| 2031 | "secp256k1-sys", | ||
| 2032 | "serde", | ||
| 2033 | ] | ||
| 2034 | |||
| 2035 | [[package]] | ||
| 2036 | name = "secp256k1-sys" | ||
| 2037 | version = "0.10.1" | ||
| 2038 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2039 | checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9" | ||
| 2040 | dependencies = [ | ||
| 2041 | "cc", | ||
| 2042 | ] | ||
| 2043 | |||
| 2044 | [[package]] | ||
| 2045 | name = "security-framework" | ||
| 2046 | version = "3.7.0" | ||
| 2047 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2048 | checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" | ||
| 2049 | dependencies = [ | ||
| 2050 | "bitflags", | ||
| 2051 | "core-foundation 0.10.1", | ||
| 2052 | "core-foundation-sys", | ||
| 2053 | "libc", | ||
| 2054 | "security-framework-sys", | ||
| 2055 | ] | ||
| 2056 | |||
| 2057 | [[package]] | ||
| 2058 | name = "security-framework-sys" | ||
| 2059 | version = "2.17.0" | ||
| 2060 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2061 | checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" | ||
| 2062 | dependencies = [ | ||
| 2063 | "core-foundation-sys", | ||
| 2064 | "libc", | ||
| 2065 | ] | ||
| 2066 | |||
| 2067 | [[package]] | ||
| 2068 | name = "semver" | ||
| 2069 | version = "1.0.28" | ||
| 2070 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2071 | checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" | ||
| 2072 | |||
| 2073 | [[package]] | ||
| 2074 | name = "serde" | ||
| 2075 | version = "1.0.228" | ||
| 2076 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2077 | checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" | ||
| 2078 | dependencies = [ | ||
| 2079 | "serde_core", | ||
| 2080 | "serde_derive", | ||
| 2081 | ] | ||
| 2082 | |||
| 2083 | [[package]] | ||
| 2084 | name = "serde_core" | ||
| 2085 | version = "1.0.228" | ||
| 2086 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2087 | checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" | ||
| 2088 | dependencies = [ | ||
| 2089 | "serde_derive", | ||
| 2090 | ] | ||
| 2091 | |||
| 2092 | [[package]] | ||
| 2093 | name = "serde_derive" | ||
| 2094 | version = "1.0.228" | ||
| 2095 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2096 | checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" | ||
| 2097 | dependencies = [ | ||
| 2098 | "proc-macro2", | ||
| 2099 | "quote", | ||
| 2100 | "syn", | ||
| 2101 | ] | ||
| 2102 | |||
| 2103 | [[package]] | ||
| 2104 | name = "serde_json" | ||
| 2105 | version = "1.0.150" | ||
| 2106 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2107 | checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" | ||
| 2108 | dependencies = [ | ||
| 2109 | "itoa", | ||
| 2110 | "memchr", | ||
| 2111 | "serde", | ||
| 2112 | "serde_core", | ||
| 2113 | "zmij", | ||
| 2114 | ] | ||
| 2115 | |||
| 2116 | [[package]] | ||
| 2117 | name = "serde_spanned" | ||
| 2118 | version = "0.6.9" | ||
| 2119 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2120 | checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" | ||
| 2121 | dependencies = [ | ||
| 2122 | "serde", | ||
| 2123 | ] | ||
| 2124 | |||
| 2125 | [[package]] | ||
| 2126 | name = "serde_urlencoded" | ||
| 2127 | version = "0.7.1" | ||
| 2128 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2129 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" | ||
| 2130 | dependencies = [ | ||
| 2131 | "form_urlencoded", | ||
| 2132 | "itoa", | ||
| 2133 | "ryu", | ||
| 2134 | "serde", | ||
| 2135 | ] | ||
| 2136 | |||
| 2137 | [[package]] | ||
| 2138 | name = "sha1" | ||
| 2139 | version = "0.10.6" | ||
| 2140 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2141 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" | ||
| 2142 | dependencies = [ | ||
| 2143 | "cfg-if", | ||
| 2144 | "cpufeatures", | ||
| 2145 | "digest", | ||
| 2146 | ] | ||
| 2147 | |||
| 2148 | [[package]] | ||
| 2149 | name = "sha2" | ||
| 2150 | version = "0.10.9" | ||
| 2151 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2152 | checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" | ||
| 2153 | dependencies = [ | ||
| 2154 | "cfg-if", | ||
| 2155 | "cpufeatures", | ||
| 2156 | "digest", | ||
| 2157 | ] | ||
| 2158 | |||
| 2159 | [[package]] | ||
| 2160 | name = "sharded-slab" | ||
| 2161 | version = "0.1.7" | ||
| 2162 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2163 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" | ||
| 2164 | dependencies = [ | ||
| 2165 | "lazy_static", | ||
| 2166 | ] | ||
| 2167 | |||
| 2168 | [[package]] | ||
| 2169 | name = "shlex" | ||
| 2170 | version = "1.3.0" | ||
| 2171 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2172 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" | ||
| 2173 | |||
| 2174 | [[package]] | ||
| 2175 | name = "signal-hook-registry" | ||
| 2176 | version = "1.4.8" | ||
| 2177 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2178 | checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" | ||
| 2179 | dependencies = [ | ||
| 2180 | "errno", | ||
| 2181 | "libc", | ||
| 2182 | ] | ||
| 2183 | |||
| 2184 | [[package]] | ||
| 2185 | name = "signature" | ||
| 2186 | version = "2.2.0" | ||
| 2187 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2188 | checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" | ||
| 2189 | dependencies = [ | ||
| 2190 | "digest", | ||
| 2191 | "rand_core 0.6.4", | ||
| 2192 | ] | ||
| 2193 | |||
| 2194 | [[package]] | ||
| 2195 | name = "slab" | ||
| 2196 | version = "0.4.12" | ||
| 2197 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2198 | checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" | ||
| 2199 | |||
| 2200 | [[package]] | ||
| 2201 | name = "smallvec" | ||
| 2202 | version = "1.15.1" | ||
| 2203 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2204 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" | ||
| 2205 | dependencies = [ | ||
| 2206 | "serde", | ||
| 2207 | ] | ||
| 2208 | |||
| 2209 | [[package]] | ||
| 2210 | name = "socket2" | ||
| 2211 | version = "0.6.3" | ||
| 2212 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2213 | checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" | ||
| 2214 | dependencies = [ | ||
| 2215 | "libc", | ||
| 2216 | "windows-sys 0.61.2", | ||
| 2217 | ] | ||
| 2218 | |||
| 2219 | [[package]] | ||
| 2220 | name = "spin" | ||
| 2221 | version = "0.9.8" | ||
| 2222 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2223 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" | ||
| 2224 | dependencies = [ | ||
| 2225 | "lock_api", | ||
| 2226 | ] | ||
| 2227 | |||
| 2228 | [[package]] | ||
| 2229 | name = "spki" | ||
| 2230 | version = "0.7.3" | ||
| 2231 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2232 | checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" | ||
| 2233 | dependencies = [ | ||
| 2234 | "base64ct", | ||
| 2235 | "der", | ||
| 2236 | ] | ||
| 2237 | |||
| 2238 | [[package]] | ||
| 2239 | name = "sqlx" | ||
| 2240 | version = "0.8.6" | ||
| 2241 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2242 | checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc" | ||
| 2243 | dependencies = [ | ||
| 2244 | "sqlx-core", | ||
| 2245 | "sqlx-macros", | ||
| 2246 | "sqlx-mysql", | ||
| 2247 | "sqlx-postgres", | ||
| 2248 | "sqlx-sqlite", | ||
| 2249 | ] | ||
| 2250 | |||
| 2251 | [[package]] | ||
| 2252 | name = "sqlx-core" | ||
| 2253 | version = "0.8.6" | ||
| 2254 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2255 | checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" | ||
| 2256 | dependencies = [ | ||
| 2257 | "base64", | ||
| 2258 | "bytes", | ||
| 2259 | "crc", | ||
| 2260 | "crossbeam-queue", | ||
| 2261 | "either", | ||
| 2262 | "event-listener", | ||
| 2263 | "futures-core", | ||
| 2264 | "futures-intrusive", | ||
| 2265 | "futures-io", | ||
| 2266 | "futures-util", | ||
| 2267 | "hashbrown 0.15.5", | ||
| 2268 | "hashlink", | ||
| 2269 | "indexmap", | ||
| 2270 | "log", | ||
| 2271 | "memchr", | ||
| 2272 | "once_cell", | ||
| 2273 | "percent-encoding", | ||
| 2274 | "serde", | ||
| 2275 | "serde_json", | ||
| 2276 | "sha2", | ||
| 2277 | "smallvec", | ||
| 2278 | "thiserror 2.0.18", | ||
| 2279 | "tokio", | ||
| 2280 | "tokio-stream", | ||
| 2281 | "tracing", | ||
| 2282 | "url", | ||
| 2283 | ] | ||
| 2284 | |||
| 2285 | [[package]] | ||
| 2286 | name = "sqlx-macros" | ||
| 2287 | version = "0.8.6" | ||
| 2288 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2289 | checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d" | ||
| 2290 | dependencies = [ | ||
| 2291 | "proc-macro2", | ||
| 2292 | "quote", | ||
| 2293 | "sqlx-core", | ||
| 2294 | "sqlx-macros-core", | ||
| 2295 | "syn", | ||
| 2296 | ] | ||
| 2297 | |||
| 2298 | [[package]] | ||
| 2299 | name = "sqlx-macros-core" | ||
| 2300 | version = "0.8.6" | ||
| 2301 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2302 | checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b" | ||
| 2303 | dependencies = [ | ||
| 2304 | "dotenvy", | ||
| 2305 | "either", | ||
| 2306 | "heck", | ||
| 2307 | "hex", | ||
| 2308 | "once_cell", | ||
| 2309 | "proc-macro2", | ||
| 2310 | "quote", | ||
| 2311 | "serde", | ||
| 2312 | "serde_json", | ||
| 2313 | "sha2", | ||
| 2314 | "sqlx-core", | ||
| 2315 | "sqlx-mysql", | ||
| 2316 | "sqlx-postgres", | ||
| 2317 | "sqlx-sqlite", | ||
| 2318 | "syn", | ||
| 2319 | "tokio", | ||
| 2320 | "url", | ||
| 2321 | ] | ||
| 2322 | |||
| 2323 | [[package]] | ||
| 2324 | name = "sqlx-mysql" | ||
| 2325 | version = "0.8.6" | ||
| 2326 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2327 | checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526" | ||
| 2328 | dependencies = [ | ||
| 2329 | "atoi", | ||
| 2330 | "base64", | ||
| 2331 | "bitflags", | ||
| 2332 | "byteorder", | ||
| 2333 | "bytes", | ||
| 2334 | "crc", | ||
| 2335 | "digest", | ||
| 2336 | "dotenvy", | ||
| 2337 | "either", | ||
| 2338 | "futures-channel", | ||
| 2339 | "futures-core", | ||
| 2340 | "futures-io", | ||
| 2341 | "futures-util", | ||
| 2342 | "generic-array", | ||
| 2343 | "hex", | ||
| 2344 | "hkdf", | ||
| 2345 | "hmac", | ||
| 2346 | "itoa", | ||
| 2347 | "log", | ||
| 2348 | "md-5", | ||
| 2349 | "memchr", | ||
| 2350 | "once_cell", | ||
| 2351 | "percent-encoding", | ||
| 2352 | "rand 0.8.6", | ||
| 2353 | "rsa", | ||
| 2354 | "serde", | ||
| 2355 | "sha1", | ||
| 2356 | "sha2", | ||
| 2357 | "smallvec", | ||
| 2358 | "sqlx-core", | ||
| 2359 | "stringprep", | ||
| 2360 | "thiserror 2.0.18", | ||
| 2361 | "tracing", | ||
| 2362 | "whoami", | ||
| 2363 | ] | ||
| 2364 | |||
| 2365 | [[package]] | ||
| 2366 | name = "sqlx-postgres" | ||
| 2367 | version = "0.8.6" | ||
| 2368 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2369 | checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46" | ||
| 2370 | dependencies = [ | ||
| 2371 | "atoi", | ||
| 2372 | "base64", | ||
| 2373 | "bitflags", | ||
| 2374 | "byteorder", | ||
| 2375 | "crc", | ||
| 2376 | "dotenvy", | ||
| 2377 | "etcetera", | ||
| 2378 | "futures-channel", | ||
| 2379 | "futures-core", | ||
| 2380 | "futures-util", | ||
| 2381 | "hex", | ||
| 2382 | "hkdf", | ||
| 2383 | "hmac", | ||
| 2384 | "home", | ||
| 2385 | "itoa", | ||
| 2386 | "log", | ||
| 2387 | "md-5", | ||
| 2388 | "memchr", | ||
| 2389 | "once_cell", | ||
| 2390 | "rand 0.8.6", | ||
| 2391 | "serde", | ||
| 2392 | "serde_json", | ||
| 2393 | "sha2", | ||
| 2394 | "smallvec", | ||
| 2395 | "sqlx-core", | ||
| 2396 | "stringprep", | ||
| 2397 | "thiserror 2.0.18", | ||
| 2398 | "tracing", | ||
| 2399 | "whoami", | ||
| 2400 | ] | ||
| 2401 | |||
| 2402 | [[package]] | ||
| 2403 | name = "sqlx-sqlite" | ||
| 2404 | version = "0.8.6" | ||
| 2405 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2406 | checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea" | ||
| 2407 | dependencies = [ | ||
| 2408 | "atoi", | ||
| 2409 | "flume", | ||
| 2410 | "futures-channel", | ||
| 2411 | "futures-core", | ||
| 2412 | "futures-executor", | ||
| 2413 | "futures-intrusive", | ||
| 2414 | "futures-util", | ||
| 2415 | "libsqlite3-sys", | ||
| 2416 | "log", | ||
| 2417 | "percent-encoding", | ||
| 2418 | "serde", | ||
| 2419 | "serde_urlencoded", | ||
| 2420 | "sqlx-core", | ||
| 2421 | "thiserror 2.0.18", | ||
| 2422 | "tracing", | ||
| 2423 | "url", | ||
| 2424 | ] | ||
| 2425 | |||
| 2426 | [[package]] | ||
| 2427 | name = "stable_deref_trait" | ||
| 2428 | version = "1.2.1" | ||
| 2429 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2430 | checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" | ||
| 2431 | |||
| 2432 | [[package]] | ||
| 2433 | name = "stringprep" | ||
| 2434 | version = "0.1.5" | ||
| 2435 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2436 | checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" | ||
| 2437 | dependencies = [ | ||
| 2438 | "unicode-bidi", | ||
| 2439 | "unicode-normalization", | ||
| 2440 | "unicode-properties", | ||
| 2441 | ] | ||
| 2442 | |||
| 2443 | [[package]] | ||
| 2444 | name = "strsim" | ||
| 2445 | version = "0.11.1" | ||
| 2446 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2447 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" | ||
| 2448 | |||
| 2449 | [[package]] | ||
| 2450 | name = "subtle" | ||
| 2451 | version = "2.6.1" | ||
| 2452 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2453 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" | ||
| 2454 | |||
| 2455 | [[package]] | ||
| 2456 | name = "syn" | ||
| 2457 | version = "2.0.117" | ||
| 2458 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2459 | checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" | ||
| 2460 | dependencies = [ | ||
| 2461 | "proc-macro2", | ||
| 2462 | "quote", | ||
| 2463 | "unicode-ident", | ||
| 2464 | ] | ||
| 2465 | |||
| 2466 | [[package]] | ||
| 2467 | name = "sync_wrapper" | ||
| 2468 | version = "1.0.2" | ||
| 2469 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2470 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" | ||
| 2471 | dependencies = [ | ||
| 2472 | "futures-core", | ||
| 2473 | ] | ||
| 2474 | |||
| 2475 | [[package]] | ||
| 2476 | name = "synstructure" | ||
| 2477 | version = "0.13.2" | ||
| 2478 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2479 | checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" | ||
| 2480 | dependencies = [ | ||
| 2481 | "proc-macro2", | ||
| 2482 | "quote", | ||
| 2483 | "syn", | ||
| 2484 | ] | ||
| 2485 | |||
| 2486 | [[package]] | ||
| 2487 | name = "system-configuration" | ||
| 2488 | version = "0.7.0" | ||
| 2489 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2490 | checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" | ||
| 2491 | dependencies = [ | ||
| 2492 | "bitflags", | ||
| 2493 | "core-foundation 0.9.4", | ||
| 2494 | "system-configuration-sys", | ||
| 2495 | ] | ||
| 2496 | |||
| 2497 | [[package]] | ||
| 2498 | name = "system-configuration-sys" | ||
| 2499 | version = "0.6.0" | ||
| 2500 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2501 | checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" | ||
| 2502 | dependencies = [ | ||
| 2503 | "core-foundation-sys", | ||
| 2504 | "libc", | ||
| 2505 | ] | ||
| 2506 | |||
| 2507 | [[package]] | ||
| 2508 | name = "tempfile" | ||
| 2509 | version = "3.27.0" | ||
| 2510 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2511 | checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" | ||
| 2512 | dependencies = [ | ||
| 2513 | "fastrand", | ||
| 2514 | "getrandom 0.4.2", | ||
| 2515 | "once_cell", | ||
| 2516 | "rustix", | ||
| 2517 | "windows-sys 0.61.2", | ||
| 2518 | ] | ||
| 2519 | |||
| 2520 | [[package]] | ||
| 2521 | name = "thiserror" | ||
| 2522 | version = "1.0.69" | ||
| 2523 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2524 | checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" | ||
| 2525 | dependencies = [ | ||
| 2526 | "thiserror-impl 1.0.69", | ||
| 2527 | ] | ||
| 2528 | |||
| 2529 | [[package]] | ||
| 2530 | name = "thiserror" | ||
| 2531 | version = "2.0.18" | ||
| 2532 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2533 | checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" | ||
| 2534 | dependencies = [ | ||
| 2535 | "thiserror-impl 2.0.18", | ||
| 2536 | ] | ||
| 2537 | |||
| 2538 | [[package]] | ||
| 2539 | name = "thiserror-impl" | ||
| 2540 | version = "1.0.69" | ||
| 2541 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2542 | checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" | ||
| 2543 | dependencies = [ | ||
| 2544 | "proc-macro2", | ||
| 2545 | "quote", | ||
| 2546 | "syn", | ||
| 2547 | ] | ||
| 2548 | |||
| 2549 | [[package]] | ||
| 2550 | name = "thiserror-impl" | ||
| 2551 | version = "2.0.18" | ||
| 2552 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2553 | checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" | ||
| 2554 | dependencies = [ | ||
| 2555 | "proc-macro2", | ||
| 2556 | "quote", | ||
| 2557 | "syn", | ||
| 2558 | ] | ||
| 2559 | |||
| 2560 | [[package]] | ||
| 2561 | name = "thread_local" | ||
| 2562 | version = "1.1.9" | ||
| 2563 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2564 | checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" | ||
| 2565 | dependencies = [ | ||
| 2566 | "cfg-if", | ||
| 2567 | ] | ||
| 2568 | |||
| 2569 | [[package]] | ||
| 2570 | name = "tinystr" | ||
| 2571 | version = "0.8.3" | ||
| 2572 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2573 | checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" | ||
| 2574 | dependencies = [ | ||
| 2575 | "displaydoc", | ||
| 2576 | "zerovec", | ||
| 2577 | ] | ||
| 2578 | |||
| 2579 | [[package]] | ||
| 2580 | name = "tinyvec" | ||
| 2581 | version = "1.11.0" | ||
| 2582 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2583 | checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" | ||
| 2584 | dependencies = [ | ||
| 2585 | "tinyvec_macros", | ||
| 2586 | ] | ||
| 2587 | |||
| 2588 | [[package]] | ||
| 2589 | name = "tinyvec_macros" | ||
| 2590 | version = "0.1.1" | ||
| 2591 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2592 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | ||
| 2593 | |||
| 2594 | [[package]] | ||
| 2595 | name = "tokio" | ||
| 2596 | version = "1.52.3" | ||
| 2597 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2598 | checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" | ||
| 2599 | dependencies = [ | ||
| 2600 | "bytes", | ||
| 2601 | "libc", | ||
| 2602 | "mio", | ||
| 2603 | "parking_lot", | ||
| 2604 | "pin-project-lite", | ||
| 2605 | "signal-hook-registry", | ||
| 2606 | "socket2", | ||
| 2607 | "tokio-macros", | ||
| 2608 | "windows-sys 0.61.2", | ||
| 2609 | ] | ||
| 2610 | |||
| 2611 | [[package]] | ||
| 2612 | name = "tokio-macros" | ||
| 2613 | version = "2.7.0" | ||
| 2614 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2615 | checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" | ||
| 2616 | dependencies = [ | ||
| 2617 | "proc-macro2", | ||
| 2618 | "quote", | ||
| 2619 | "syn", | ||
| 2620 | ] | ||
| 2621 | |||
| 2622 | [[package]] | ||
| 2623 | name = "tokio-native-tls" | ||
| 2624 | version = "0.3.1" | ||
| 2625 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2626 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" | ||
| 2627 | dependencies = [ | ||
| 2628 | "native-tls", | ||
| 2629 | "tokio", | ||
| 2630 | ] | ||
| 2631 | |||
| 2632 | [[package]] | ||
| 2633 | name = "tokio-rustls" | ||
| 2634 | version = "0.26.4" | ||
| 2635 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2636 | checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" | ||
| 2637 | dependencies = [ | ||
| 2638 | "rustls", | ||
| 2639 | "tokio", | ||
| 2640 | ] | ||
| 2641 | |||
| 2642 | [[package]] | ||
| 2643 | name = "tokio-socks" | ||
| 2644 | version = "0.5.2" | ||
| 2645 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2646 | checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f" | ||
| 2647 | dependencies = [ | ||
| 2648 | "either", | ||
| 2649 | "futures-util", | ||
| 2650 | "thiserror 1.0.69", | ||
| 2651 | "tokio", | ||
| 2652 | ] | ||
| 2653 | |||
| 2654 | [[package]] | ||
| 2655 | name = "tokio-stream" | ||
| 2656 | version = "0.1.18" | ||
| 2657 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2658 | checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" | ||
| 2659 | dependencies = [ | ||
| 2660 | "futures-core", | ||
| 2661 | "pin-project-lite", | ||
| 2662 | "tokio", | ||
| 2663 | ] | ||
| 2664 | |||
| 2665 | [[package]] | ||
| 2666 | name = "tokio-tungstenite" | ||
| 2667 | version = "0.26.2" | ||
| 2668 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2669 | checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" | ||
| 2670 | dependencies = [ | ||
| 2671 | "futures-util", | ||
| 2672 | "log", | ||
| 2673 | "rustls", | ||
| 2674 | "rustls-pki-types", | ||
| 2675 | "tokio", | ||
| 2676 | "tokio-rustls", | ||
| 2677 | "tungstenite", | ||
| 2678 | "webpki-roots 0.26.11", | ||
| 2679 | ] | ||
| 2680 | |||
| 2681 | [[package]] | ||
| 2682 | name = "tokio-util" | ||
| 2683 | version = "0.7.18" | ||
| 2684 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2685 | checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" | ||
| 2686 | dependencies = [ | ||
| 2687 | "bytes", | ||
| 2688 | "futures-core", | ||
| 2689 | "futures-sink", | ||
| 2690 | "pin-project-lite", | ||
| 2691 | "tokio", | ||
| 2692 | ] | ||
| 2693 | |||
| 2694 | [[package]] | ||
| 2695 | name = "toml" | ||
| 2696 | version = "0.8.23" | ||
| 2697 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2698 | checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" | ||
| 2699 | dependencies = [ | ||
| 2700 | "serde", | ||
| 2701 | "serde_spanned", | ||
| 2702 | "toml_datetime", | ||
| 2703 | "toml_edit", | ||
| 2704 | ] | ||
| 2705 | |||
| 2706 | [[package]] | ||
| 2707 | name = "toml_datetime" | ||
| 2708 | version = "0.6.11" | ||
| 2709 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2710 | checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" | ||
| 2711 | dependencies = [ | ||
| 2712 | "serde", | ||
| 2713 | ] | ||
| 2714 | |||
| 2715 | [[package]] | ||
| 2716 | name = "toml_edit" | ||
| 2717 | version = "0.22.27" | ||
| 2718 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2719 | checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" | ||
| 2720 | dependencies = [ | ||
| 2721 | "indexmap", | ||
| 2722 | "serde", | ||
| 2723 | "serde_spanned", | ||
| 2724 | "toml_datetime", | ||
| 2725 | "toml_write", | ||
| 2726 | "winnow", | ||
| 2727 | ] | ||
| 2728 | |||
| 2729 | [[package]] | ||
| 2730 | name = "toml_write" | ||
| 2731 | version = "0.1.2" | ||
| 2732 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2733 | checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" | ||
| 2734 | |||
| 2735 | [[package]] | ||
| 2736 | name = "tower" | ||
| 2737 | version = "0.5.3" | ||
| 2738 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2739 | checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" | ||
| 2740 | dependencies = [ | ||
| 2741 | "futures-core", | ||
| 2742 | "futures-util", | ||
| 2743 | "pin-project-lite", | ||
| 2744 | "sync_wrapper", | ||
| 2745 | "tokio", | ||
| 2746 | "tower-layer", | ||
| 2747 | "tower-service", | ||
| 2748 | ] | ||
| 2749 | |||
| 2750 | [[package]] | ||
| 2751 | name = "tower-http" | ||
| 2752 | version = "0.6.11" | ||
| 2753 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2754 | checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" | ||
| 2755 | dependencies = [ | ||
| 2756 | "bitflags", | ||
| 2757 | "bytes", | ||
| 2758 | "futures-util", | ||
| 2759 | "http", | ||
| 2760 | "http-body", | ||
| 2761 | "pin-project-lite", | ||
| 2762 | "tower", | ||
| 2763 | "tower-layer", | ||
| 2764 | "tower-service", | ||
| 2765 | "url", | ||
| 2766 | ] | ||
| 2767 | |||
| 2768 | [[package]] | ||
| 2769 | name = "tower-layer" | ||
| 2770 | version = "0.3.3" | ||
| 2771 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2772 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" | ||
| 2773 | |||
| 2774 | [[package]] | ||
| 2775 | name = "tower-service" | ||
| 2776 | version = "0.3.3" | ||
| 2777 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2778 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" | ||
| 2779 | |||
| 2780 | [[package]] | ||
| 2781 | name = "tracing" | ||
| 2782 | version = "0.1.44" | ||
| 2783 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2784 | checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" | ||
| 2785 | dependencies = [ | ||
| 2786 | "log", | ||
| 2787 | "pin-project-lite", | ||
| 2788 | "tracing-attributes", | ||
| 2789 | "tracing-core", | ||
| 2790 | ] | ||
| 2791 | |||
| 2792 | [[package]] | ||
| 2793 | name = "tracing-attributes" | ||
| 2794 | version = "0.1.31" | ||
| 2795 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2796 | checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" | ||
| 2797 | dependencies = [ | ||
| 2798 | "proc-macro2", | ||
| 2799 | "quote", | ||
| 2800 | "syn", | ||
| 2801 | ] | ||
| 2802 | |||
| 2803 | [[package]] | ||
| 2804 | name = "tracing-core" | ||
| 2805 | version = "0.1.36" | ||
| 2806 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2807 | checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" | ||
| 2808 | dependencies = [ | ||
| 2809 | "once_cell", | ||
| 2810 | "valuable", | ||
| 2811 | ] | ||
| 2812 | |||
| 2813 | [[package]] | ||
| 2814 | name = "tracing-log" | ||
| 2815 | version = "0.2.0" | ||
| 2816 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2817 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" | ||
| 2818 | dependencies = [ | ||
| 2819 | "log", | ||
| 2820 | "once_cell", | ||
| 2821 | "tracing-core", | ||
| 2822 | ] | ||
| 2823 | |||
| 2824 | [[package]] | ||
| 2825 | name = "tracing-serde" | ||
| 2826 | version = "0.2.0" | ||
| 2827 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2828 | checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" | ||
| 2829 | dependencies = [ | ||
| 2830 | "serde", | ||
| 2831 | "tracing-core", | ||
| 2832 | ] | ||
| 2833 | |||
| 2834 | [[package]] | ||
| 2835 | name = "tracing-subscriber" | ||
| 2836 | version = "0.3.23" | ||
| 2837 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2838 | checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" | ||
| 2839 | dependencies = [ | ||
| 2840 | "matchers", | ||
| 2841 | "nu-ansi-term", | ||
| 2842 | "once_cell", | ||
| 2843 | "regex-automata", | ||
| 2844 | "serde", | ||
| 2845 | "serde_json", | ||
| 2846 | "sharded-slab", | ||
| 2847 | "smallvec", | ||
| 2848 | "thread_local", | ||
| 2849 | "tracing", | ||
| 2850 | "tracing-core", | ||
| 2851 | "tracing-log", | ||
| 2852 | "tracing-serde", | ||
| 2853 | ] | ||
| 2854 | |||
| 2855 | [[package]] | ||
| 2856 | name = "try-lock" | ||
| 2857 | version = "0.2.5" | ||
| 2858 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2859 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" | ||
| 2860 | |||
| 2861 | [[package]] | ||
| 2862 | name = "tungstenite" | ||
| 2863 | version = "0.26.2" | ||
| 2864 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2865 | checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" | ||
| 2866 | dependencies = [ | ||
| 2867 | "bytes", | ||
| 2868 | "data-encoding", | ||
| 2869 | "http", | ||
| 2870 | "httparse", | ||
| 2871 | "log", | ||
| 2872 | "rand 0.9.4", | ||
| 2873 | "rustls", | ||
| 2874 | "rustls-pki-types", | ||
| 2875 | "sha1", | ||
| 2876 | "thiserror 2.0.18", | ||
| 2877 | "utf-8", | ||
| 2878 | ] | ||
| 2879 | |||
| 2880 | [[package]] | ||
| 2881 | name = "typenum" | ||
| 2882 | version = "1.20.0" | ||
| 2883 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2884 | checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de" | ||
| 2885 | |||
| 2886 | [[package]] | ||
| 2887 | name = "unicode-bidi" | ||
| 2888 | version = "0.3.18" | ||
| 2889 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2890 | checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" | ||
| 2891 | |||
| 2892 | [[package]] | ||
| 2893 | name = "unicode-ident" | ||
| 2894 | version = "1.0.24" | ||
| 2895 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2896 | checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" | ||
| 2897 | |||
| 2898 | [[package]] | ||
| 2899 | name = "unicode-normalization" | ||
| 2900 | version = "0.1.25" | ||
| 2901 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2902 | checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" | ||
| 2903 | dependencies = [ | ||
| 2904 | "tinyvec", | ||
| 2905 | ] | ||
| 2906 | |||
| 2907 | [[package]] | ||
| 2908 | name = "unicode-properties" | ||
| 2909 | version = "0.1.4" | ||
| 2910 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2911 | checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" | ||
| 2912 | |||
| 2913 | [[package]] | ||
| 2914 | name = "unicode-xid" | ||
| 2915 | version = "0.2.6" | ||
| 2916 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2917 | checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" | ||
| 2918 | |||
| 2919 | [[package]] | ||
| 2920 | name = "universal-hash" | ||
| 2921 | version = "0.5.1" | ||
| 2922 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2923 | checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" | ||
| 2924 | dependencies = [ | ||
| 2925 | "crypto-common", | ||
| 2926 | "subtle", | ||
| 2927 | ] | ||
| 2928 | |||
| 2929 | [[package]] | ||
| 2930 | name = "untrusted" | ||
| 2931 | version = "0.9.0" | ||
| 2932 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2933 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" | ||
| 2934 | |||
| 2935 | [[package]] | ||
| 2936 | name = "url" | ||
| 2937 | version = "2.5.8" | ||
| 2938 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2939 | checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" | ||
| 2940 | dependencies = [ | ||
| 2941 | "form_urlencoded", | ||
| 2942 | "idna", | ||
| 2943 | "percent-encoding", | ||
| 2944 | "serde", | ||
| 2945 | "serde_derive", | ||
| 2946 | ] | ||
| 2947 | |||
| 2948 | [[package]] | ||
| 2949 | name = "utf-8" | ||
| 2950 | version = "0.7.6" | ||
| 2951 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2952 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" | ||
| 2953 | |||
| 2954 | [[package]] | ||
| 2955 | name = "utf8_iter" | ||
| 2956 | version = "1.0.4" | ||
| 2957 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2958 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" | ||
| 2959 | |||
| 2960 | [[package]] | ||
| 2961 | name = "utf8parse" | ||
| 2962 | version = "0.2.2" | ||
| 2963 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2964 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" | ||
| 2965 | |||
| 2966 | [[package]] | ||
| 2967 | name = "valuable" | ||
| 2968 | version = "0.1.1" | ||
| 2969 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2970 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" | ||
| 2971 | |||
| 2972 | [[package]] | ||
| 2973 | name = "vcpkg" | ||
| 2974 | version = "0.2.15" | ||
| 2975 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2976 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" | ||
| 2977 | |||
| 2978 | [[package]] | ||
| 2979 | name = "version_check" | ||
| 2980 | version = "0.9.5" | ||
| 2981 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2982 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" | ||
| 2983 | |||
| 2984 | [[package]] | ||
| 2985 | name = "want" | ||
| 2986 | version = "0.3.1" | ||
| 2987 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2988 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" | ||
| 2989 | dependencies = [ | ||
| 2990 | "try-lock", | ||
| 2991 | ] | ||
| 2992 | |||
| 2993 | [[package]] | ||
| 2994 | name = "wasi" | ||
| 2995 | version = "0.11.1+wasi-snapshot-preview1" | ||
| 2996 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2997 | checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" | ||
| 2998 | |||
| 2999 | [[package]] | ||
| 3000 | name = "wasip2" | ||
| 3001 | version = "1.0.3+wasi-0.2.9" | ||
| 3002 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3003 | checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6" | ||
| 3004 | dependencies = [ | ||
| 3005 | "wit-bindgen 0.57.1", | ||
| 3006 | ] | ||
| 3007 | |||
| 3008 | [[package]] | ||
| 3009 | name = "wasip3" | ||
| 3010 | version = "0.4.0+wasi-0.3.0-rc-2026-01-06" | ||
| 3011 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3012 | checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" | ||
| 3013 | dependencies = [ | ||
| 3014 | "wit-bindgen 0.51.0", | ||
| 3015 | ] | ||
| 3016 | |||
| 3017 | [[package]] | ||
| 3018 | name = "wasite" | ||
| 3019 | version = "0.1.0" | ||
| 3020 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3021 | checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" | ||
| 3022 | |||
| 3023 | [[package]] | ||
| 3024 | name = "wasm-bindgen" | ||
| 3025 | version = "0.2.122" | ||
| 3026 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3027 | checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409" | ||
| 3028 | dependencies = [ | ||
| 3029 | "cfg-if", | ||
| 3030 | "once_cell", | ||
| 3031 | "rustversion", | ||
| 3032 | "wasm-bindgen-macro", | ||
| 3033 | "wasm-bindgen-shared", | ||
| 3034 | ] | ||
| 3035 | |||
| 3036 | [[package]] | ||
| 3037 | name = "wasm-bindgen-futures" | ||
| 3038 | version = "0.4.72" | ||
| 3039 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3040 | checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f" | ||
| 3041 | dependencies = [ | ||
| 3042 | "js-sys", | ||
| 3043 | "wasm-bindgen", | ||
| 3044 | ] | ||
| 3045 | |||
| 3046 | [[package]] | ||
| 3047 | name = "wasm-bindgen-macro" | ||
| 3048 | version = "0.2.122" | ||
| 3049 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3050 | checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6" | ||
| 3051 | dependencies = [ | ||
| 3052 | "quote", | ||
| 3053 | "wasm-bindgen-macro-support", | ||
| 3054 | ] | ||
| 3055 | |||
| 3056 | [[package]] | ||
| 3057 | name = "wasm-bindgen-macro-support" | ||
| 3058 | version = "0.2.122" | ||
| 3059 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3060 | checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e" | ||
| 3061 | dependencies = [ | ||
| 3062 | "bumpalo", | ||
| 3063 | "proc-macro2", | ||
| 3064 | "quote", | ||
| 3065 | "syn", | ||
| 3066 | "wasm-bindgen-shared", | ||
| 3067 | ] | ||
| 3068 | |||
| 3069 | [[package]] | ||
| 3070 | name = "wasm-bindgen-shared" | ||
| 3071 | version = "0.2.122" | ||
| 3072 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3073 | checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437" | ||
| 3074 | dependencies = [ | ||
| 3075 | "unicode-ident", | ||
| 3076 | ] | ||
| 3077 | |||
| 3078 | [[package]] | ||
| 3079 | name = "wasm-encoder" | ||
| 3080 | version = "0.244.0" | ||
| 3081 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3082 | checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" | ||
| 3083 | dependencies = [ | ||
| 3084 | "leb128fmt", | ||
| 3085 | "wasmparser", | ||
| 3086 | ] | ||
| 3087 | |||
| 3088 | [[package]] | ||
| 3089 | name = "wasm-metadata" | ||
| 3090 | version = "0.244.0" | ||
| 3091 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3092 | checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" | ||
| 3093 | dependencies = [ | ||
| 3094 | "anyhow", | ||
| 3095 | "indexmap", | ||
| 3096 | "wasm-encoder", | ||
| 3097 | "wasmparser", | ||
| 3098 | ] | ||
| 3099 | |||
| 3100 | [[package]] | ||
| 3101 | name = "wasmparser" | ||
| 3102 | version = "0.244.0" | ||
| 3103 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3104 | checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" | ||
| 3105 | dependencies = [ | ||
| 3106 | "bitflags", | ||
| 3107 | "hashbrown 0.15.5", | ||
| 3108 | "indexmap", | ||
| 3109 | "semver", | ||
| 3110 | ] | ||
| 3111 | |||
| 3112 | [[package]] | ||
| 3113 | name = "web-sys" | ||
| 3114 | version = "0.3.99" | ||
| 3115 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3116 | checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436" | ||
| 3117 | dependencies = [ | ||
| 3118 | "js-sys", | ||
| 3119 | "wasm-bindgen", | ||
| 3120 | ] | ||
| 3121 | |||
| 3122 | [[package]] | ||
| 3123 | name = "webpki-roots" | ||
| 3124 | version = "0.26.11" | ||
| 3125 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3126 | checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" | ||
| 3127 | dependencies = [ | ||
| 3128 | "webpki-roots 1.0.7", | ||
| 3129 | ] | ||
| 3130 | |||
| 3131 | [[package]] | ||
| 3132 | name = "webpki-roots" | ||
| 3133 | version = "1.0.7" | ||
| 3134 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3135 | checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d" | ||
| 3136 | dependencies = [ | ||
| 3137 | "rustls-pki-types", | ||
| 3138 | ] | ||
| 3139 | |||
| 3140 | [[package]] | ||
| 3141 | name = "whoami" | ||
| 3142 | version = "1.6.1" | ||
| 3143 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3144 | checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" | ||
| 3145 | dependencies = [ | ||
| 3146 | "libredox", | ||
| 3147 | "wasite", | ||
| 3148 | ] | ||
| 3149 | |||
| 3150 | [[package]] | ||
| 3151 | name = "windows-link" | ||
| 3152 | version = "0.2.1" | ||
| 3153 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3154 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" | ||
| 3155 | |||
| 3156 | [[package]] | ||
| 3157 | name = "windows-registry" | ||
| 3158 | version = "0.6.1" | ||
| 3159 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3160 | checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" | ||
| 3161 | dependencies = [ | ||
| 3162 | "windows-link", | ||
| 3163 | "windows-result", | ||
| 3164 | "windows-strings", | ||
| 3165 | ] | ||
| 3166 | |||
| 3167 | [[package]] | ||
| 3168 | name = "windows-result" | ||
| 3169 | version = "0.4.1" | ||
| 3170 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3171 | checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" | ||
| 3172 | dependencies = [ | ||
| 3173 | "windows-link", | ||
| 3174 | ] | ||
| 3175 | |||
| 3176 | [[package]] | ||
| 3177 | name = "windows-strings" | ||
| 3178 | version = "0.5.1" | ||
| 3179 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3180 | checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" | ||
| 3181 | dependencies = [ | ||
| 3182 | "windows-link", | ||
| 3183 | ] | ||
| 3184 | |||
| 3185 | [[package]] | ||
| 3186 | name = "windows-sys" | ||
| 3187 | version = "0.48.0" | ||
| 3188 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3189 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" | ||
| 3190 | dependencies = [ | ||
| 3191 | "windows-targets 0.48.5", | ||
| 3192 | ] | ||
| 3193 | |||
| 3194 | [[package]] | ||
| 3195 | name = "windows-sys" | ||
| 3196 | version = "0.52.0" | ||
| 3197 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3198 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" | ||
| 3199 | dependencies = [ | ||
| 3200 | "windows-targets 0.52.6", | ||
| 3201 | ] | ||
| 3202 | |||
| 3203 | [[package]] | ||
| 3204 | name = "windows-sys" | ||
| 3205 | version = "0.61.2" | ||
| 3206 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3207 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" | ||
| 3208 | dependencies = [ | ||
| 3209 | "windows-link", | ||
| 3210 | ] | ||
| 3211 | |||
| 3212 | [[package]] | ||
| 3213 | name = "windows-targets" | ||
| 3214 | version = "0.48.5" | ||
| 3215 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3216 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" | ||
| 3217 | dependencies = [ | ||
| 3218 | "windows_aarch64_gnullvm 0.48.5", | ||
| 3219 | "windows_aarch64_msvc 0.48.5", | ||
| 3220 | "windows_i686_gnu 0.48.5", | ||
| 3221 | "windows_i686_msvc 0.48.5", | ||
| 3222 | "windows_x86_64_gnu 0.48.5", | ||
| 3223 | "windows_x86_64_gnullvm 0.48.5", | ||
| 3224 | "windows_x86_64_msvc 0.48.5", | ||
| 3225 | ] | ||
| 3226 | |||
| 3227 | [[package]] | ||
| 3228 | name = "windows-targets" | ||
| 3229 | version = "0.52.6" | ||
| 3230 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3231 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" | ||
| 3232 | dependencies = [ | ||
| 3233 | "windows_aarch64_gnullvm 0.52.6", | ||
| 3234 | "windows_aarch64_msvc 0.52.6", | ||
| 3235 | "windows_i686_gnu 0.52.6", | ||
| 3236 | "windows_i686_gnullvm", | ||
| 3237 | "windows_i686_msvc 0.52.6", | ||
| 3238 | "windows_x86_64_gnu 0.52.6", | ||
| 3239 | "windows_x86_64_gnullvm 0.52.6", | ||
| 3240 | "windows_x86_64_msvc 0.52.6", | ||
| 3241 | ] | ||
| 3242 | |||
| 3243 | [[package]] | ||
| 3244 | name = "windows_aarch64_gnullvm" | ||
| 3245 | version = "0.48.5" | ||
| 3246 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3247 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" | ||
| 3248 | |||
| 3249 | [[package]] | ||
| 3250 | name = "windows_aarch64_gnullvm" | ||
| 3251 | version = "0.52.6" | ||
| 3252 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3253 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" | ||
| 3254 | |||
| 3255 | [[package]] | ||
| 3256 | name = "windows_aarch64_msvc" | ||
| 3257 | version = "0.48.5" | ||
| 3258 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3259 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" | ||
| 3260 | |||
| 3261 | [[package]] | ||
| 3262 | name = "windows_aarch64_msvc" | ||
| 3263 | version = "0.52.6" | ||
| 3264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3265 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" | ||
| 3266 | |||
| 3267 | [[package]] | ||
| 3268 | name = "windows_i686_gnu" | ||
| 3269 | version = "0.48.5" | ||
| 3270 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3271 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" | ||
| 3272 | |||
| 3273 | [[package]] | ||
| 3274 | name = "windows_i686_gnu" | ||
| 3275 | version = "0.52.6" | ||
| 3276 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3277 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" | ||
| 3278 | |||
| 3279 | [[package]] | ||
| 3280 | name = "windows_i686_gnullvm" | ||
| 3281 | version = "0.52.6" | ||
| 3282 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3283 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" | ||
| 3284 | |||
| 3285 | [[package]] | ||
| 3286 | name = "windows_i686_msvc" | ||
| 3287 | version = "0.48.5" | ||
| 3288 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3289 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" | ||
| 3290 | |||
| 3291 | [[package]] | ||
| 3292 | name = "windows_i686_msvc" | ||
| 3293 | version = "0.52.6" | ||
| 3294 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3295 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" | ||
| 3296 | |||
| 3297 | [[package]] | ||
| 3298 | name = "windows_x86_64_gnu" | ||
| 3299 | version = "0.48.5" | ||
| 3300 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3301 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" | ||
| 3302 | |||
| 3303 | [[package]] | ||
| 3304 | name = "windows_x86_64_gnu" | ||
| 3305 | version = "0.52.6" | ||
| 3306 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3307 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" | ||
| 3308 | |||
| 3309 | [[package]] | ||
| 3310 | name = "windows_x86_64_gnullvm" | ||
| 3311 | version = "0.48.5" | ||
| 3312 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3313 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" | ||
| 3314 | |||
| 3315 | [[package]] | ||
| 3316 | name = "windows_x86_64_gnullvm" | ||
| 3317 | version = "0.52.6" | ||
| 3318 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3319 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" | ||
| 3320 | |||
| 3321 | [[package]] | ||
| 3322 | name = "windows_x86_64_msvc" | ||
| 3323 | version = "0.48.5" | ||
| 3324 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3325 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" | ||
| 3326 | |||
| 3327 | [[package]] | ||
| 3328 | name = "windows_x86_64_msvc" | ||
| 3329 | version = "0.52.6" | ||
| 3330 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3331 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" | ||
| 3332 | |||
| 3333 | [[package]] | ||
| 3334 | name = "winnow" | ||
| 3335 | version = "0.7.15" | ||
| 3336 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3337 | checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" | ||
| 3338 | dependencies = [ | ||
| 3339 | "memchr", | ||
| 3340 | ] | ||
| 3341 | |||
| 3342 | [[package]] | ||
| 3343 | name = "wit-bindgen" | ||
| 3344 | version = "0.51.0" | ||
| 3345 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3346 | checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" | ||
| 3347 | dependencies = [ | ||
| 3348 | "wit-bindgen-rust-macro", | ||
| 3349 | ] | ||
| 3350 | |||
| 3351 | [[package]] | ||
| 3352 | name = "wit-bindgen" | ||
| 3353 | version = "0.57.1" | ||
| 3354 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3355 | checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" | ||
| 3356 | |||
| 3357 | [[package]] | ||
| 3358 | name = "wit-bindgen-core" | ||
| 3359 | version = "0.51.0" | ||
| 3360 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3361 | checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" | ||
| 3362 | dependencies = [ | ||
| 3363 | "anyhow", | ||
| 3364 | "heck", | ||
| 3365 | "wit-parser", | ||
| 3366 | ] | ||
| 3367 | |||
| 3368 | [[package]] | ||
| 3369 | name = "wit-bindgen-rust" | ||
| 3370 | version = "0.51.0" | ||
| 3371 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3372 | checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" | ||
| 3373 | dependencies = [ | ||
| 3374 | "anyhow", | ||
| 3375 | "heck", | ||
| 3376 | "indexmap", | ||
| 3377 | "prettyplease", | ||
| 3378 | "syn", | ||
| 3379 | "wasm-metadata", | ||
| 3380 | "wit-bindgen-core", | ||
| 3381 | "wit-component", | ||
| 3382 | ] | ||
| 3383 | |||
| 3384 | [[package]] | ||
| 3385 | name = "wit-bindgen-rust-macro" | ||
| 3386 | version = "0.51.0" | ||
| 3387 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3388 | checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" | ||
| 3389 | dependencies = [ | ||
| 3390 | "anyhow", | ||
| 3391 | "prettyplease", | ||
| 3392 | "proc-macro2", | ||
| 3393 | "quote", | ||
| 3394 | "syn", | ||
| 3395 | "wit-bindgen-core", | ||
| 3396 | "wit-bindgen-rust", | ||
| 3397 | ] | ||
| 3398 | |||
| 3399 | [[package]] | ||
| 3400 | name = "wit-component" | ||
| 3401 | version = "0.244.0" | ||
| 3402 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3403 | checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" | ||
| 3404 | dependencies = [ | ||
| 3405 | "anyhow", | ||
| 3406 | "bitflags", | ||
| 3407 | "indexmap", | ||
| 3408 | "log", | ||
| 3409 | "serde", | ||
| 3410 | "serde_derive", | ||
| 3411 | "serde_json", | ||
| 3412 | "wasm-encoder", | ||
| 3413 | "wasm-metadata", | ||
| 3414 | "wasmparser", | ||
| 3415 | "wit-parser", | ||
| 3416 | ] | ||
| 3417 | |||
| 3418 | [[package]] | ||
| 3419 | name = "wit-parser" | ||
| 3420 | version = "0.244.0" | ||
| 3421 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3422 | checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" | ||
| 3423 | dependencies = [ | ||
| 3424 | "anyhow", | ||
| 3425 | "id-arena", | ||
| 3426 | "indexmap", | ||
| 3427 | "log", | ||
| 3428 | "semver", | ||
| 3429 | "serde", | ||
| 3430 | "serde_derive", | ||
| 3431 | "serde_json", | ||
| 3432 | "unicode-xid", | ||
| 3433 | "wasmparser", | ||
| 3434 | ] | ||
| 3435 | |||
| 3436 | [[package]] | ||
| 3437 | name = "writeable" | ||
| 3438 | version = "0.6.3" | ||
| 3439 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3440 | checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" | ||
| 3441 | |||
| 3442 | [[package]] | ||
| 3443 | name = "yoke" | ||
| 3444 | version = "0.8.2" | ||
| 3445 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3446 | checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca" | ||
| 3447 | dependencies = [ | ||
| 3448 | "stable_deref_trait", | ||
| 3449 | "yoke-derive", | ||
| 3450 | "zerofrom", | ||
| 3451 | ] | ||
| 3452 | |||
| 3453 | [[package]] | ||
| 3454 | name = "yoke-derive" | ||
| 3455 | version = "0.8.2" | ||
| 3456 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3457 | checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" | ||
| 3458 | dependencies = [ | ||
| 3459 | "proc-macro2", | ||
| 3460 | "quote", | ||
| 3461 | "syn", | ||
| 3462 | "synstructure", | ||
| 3463 | ] | ||
| 3464 | |||
| 3465 | [[package]] | ||
| 3466 | name = "zerocopy" | ||
| 3467 | version = "0.8.48" | ||
| 3468 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3469 | checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" | ||
| 3470 | dependencies = [ | ||
| 3471 | "zerocopy-derive", | ||
| 3472 | ] | ||
| 3473 | |||
| 3474 | [[package]] | ||
| 3475 | name = "zerocopy-derive" | ||
| 3476 | version = "0.8.48" | ||
| 3477 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3478 | checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" | ||
| 3479 | dependencies = [ | ||
| 3480 | "proc-macro2", | ||
| 3481 | "quote", | ||
| 3482 | "syn", | ||
| 3483 | ] | ||
| 3484 | |||
| 3485 | [[package]] | ||
| 3486 | name = "zerofrom" | ||
| 3487 | version = "0.1.8" | ||
| 3488 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3489 | checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" | ||
| 3490 | dependencies = [ | ||
| 3491 | "zerofrom-derive", | ||
| 3492 | ] | ||
| 3493 | |||
| 3494 | [[package]] | ||
| 3495 | name = "zerofrom-derive" | ||
| 3496 | version = "0.1.7" | ||
| 3497 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3498 | checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" | ||
| 3499 | dependencies = [ | ||
| 3500 | "proc-macro2", | ||
| 3501 | "quote", | ||
| 3502 | "syn", | ||
| 3503 | "synstructure", | ||
| 3504 | ] | ||
| 3505 | |||
| 3506 | [[package]] | ||
| 3507 | name = "zeroize" | ||
| 3508 | version = "1.8.2" | ||
| 3509 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3510 | checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" | ||
| 3511 | |||
| 3512 | [[package]] | ||
| 3513 | name = "zerotrie" | ||
| 3514 | version = "0.2.4" | ||
| 3515 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3516 | checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" | ||
| 3517 | dependencies = [ | ||
| 3518 | "displaydoc", | ||
| 3519 | "yoke", | ||
| 3520 | "zerofrom", | ||
| 3521 | ] | ||
| 3522 | |||
| 3523 | [[package]] | ||
| 3524 | name = "zerovec" | ||
| 3525 | version = "0.11.6" | ||
| 3526 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3527 | checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" | ||
| 3528 | dependencies = [ | ||
| 3529 | "yoke", | ||
| 3530 | "zerofrom", | ||
| 3531 | "zerovec-derive", | ||
| 3532 | ] | ||
| 3533 | |||
| 3534 | [[package]] | ||
| 3535 | name = "zerovec-derive" | ||
| 3536 | version = "0.11.3" | ||
| 3537 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3538 | checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" | ||
| 3539 | dependencies = [ | ||
| 3540 | "proc-macro2", | ||
| 3541 | "quote", | ||
| 3542 | "syn", | ||
| 3543 | ] | ||
| 3544 | |||
| 3545 | [[package]] | ||
| 3546 | name = "zmij" | ||
| 3547 | version = "1.0.21" | ||
| 3548 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 3549 | checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" | ||