| 1 | |
| 2 | |
| 3 | version = 4 |
| 4 | |
| 5 | [[package]] |
| 6 | name = "adler2" |
| 7 | version = "2.0.1" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 9 | checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" |
| 10 | |
| 11 | [[package]] |
| 12 | name = "aead" |
| 13 | version = "0.5.2" |
| 14 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 15 | checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" |
| 16 | dependencies = [ |
| 17 | "crypto-common 0.1.7", |
| 18 | "generic-array", |
| 19 | ] |
| 20 | |
| 21 | [[package]] |
| 22 | name = "aes" |
| 23 | version = "0.8.4" |
| 24 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 25 | checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" |
| 26 | dependencies = [ |
| 27 | "cfg-if", |
| 28 | "cipher", |
| 29 | "cpufeatures 0.2.17", |
| 30 | ] |
| 31 | |
| 32 | [[package]] |
| 33 | name = "aes-gcm" |
| 34 | version = "0.10.3" |
| 35 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 36 | checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" |
| 37 | dependencies = [ |
| 38 | "aead", |
| 39 | "aes", |
| 40 | "cipher", |
| 41 | "ctr", |
| 42 | "ghash", |
| 43 | "subtle", |
| 44 | ] |
| 45 | |
| 46 | [[package]] |
| 47 | name = "alloc-no-stdlib" |
| 48 | version = "2.0.4" |
| 49 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 50 | checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" |
| 51 | |
| 52 | [[package]] |
| 53 | name = "alloc-stdlib" |
| 54 | version = "0.2.4" |
| 55 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 56 | checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195" |
| 57 | dependencies = [ |
| 58 | "alloc-no-stdlib", |
| 59 | ] |
| 60 | |
| 61 | [[package]] |
| 62 | name = "allocator-api2" |
| 63 | version = "0.2.21" |
| 64 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 65 | checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" |
| 66 | |
| 67 | [[package]] |
| 68 | name = "anyhow" |
| 69 | version = "1.0.104" |
| 70 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 71 | checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" |
| 72 | |
| 73 | [[package]] |
| 74 | name = "anymap3" |
| 75 | version = "1.1.0" |
| 76 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 77 | checksum = "fb5dfbc6d8d2675589ccbe4d0fd61df2419075625f8c1a62325e718e2b0049f9" |
| 78 | |
| 79 | [[package]] |
| 80 | name = "async-compression" |
| 81 | version = "0.4.43" |
| 82 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 83 | checksum = "3976abdc8fe7d1133d43d304afd42abdf5bc3e1319d263d223bde07b5efc4be8" |
| 84 | dependencies = [ |
| 85 | "compression-codecs", |
| 86 | "compression-core", |
| 87 | "pin-project-lite", |
| 88 | "tokio", |
| 89 | ] |
| 90 | |
| 91 | [[package]] |
| 92 | name = "atoi" |
| 93 | version = "2.0.0" |
| 94 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 95 | checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" |
| 96 | dependencies = [ |
| 97 | "num-traits", |
| 98 | ] |
| 99 | |
| 100 | [[package]] |
| 101 | name = "atomic-waker" |
| 102 | version = "1.1.2" |
| 103 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 104 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" |
| 105 | |
| 106 | [[package]] |
| 107 | name = "autocfg" |
| 108 | version = "1.5.1" |
| 109 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 110 | checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" |
| 111 | |
| 112 | [[package]] |
| 113 | name = "base64" |
| 114 | version = "0.22.1" |
| 115 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 116 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" |
| 117 | |
| 118 | [[package]] |
| 119 | name = "base64" |
| 120 | version = "0.23.0" |
| 121 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 122 | checksum = "b25655df2c3cdd83c5e5b293b88acd880332b2ddadd7c30ac43144fdc0033da9" |
| 123 | |
| 124 | [[package]] |
| 125 | name = "bitflags" |
| 126 | version = "2.13.1" |
| 127 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 128 | checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" |
| 129 | dependencies = [ |
| 130 | "serde_core", |
| 131 | ] |
| 132 | |
| 133 | [[package]] |
| 134 | name = "block-buffer" |
| 135 | version = "0.10.4" |
| 136 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 137 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" |
| 138 | dependencies = [ |
| 139 | "generic-array", |
| 140 | ] |
| 141 | |
| 142 | [[package]] |
| 143 | name = "block-buffer" |
| 144 | version = "0.12.1" |
| 145 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 146 | checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" |
| 147 | dependencies = [ |
| 148 | "hybrid-array", |
| 149 | ] |
| 150 | |
| 151 | [[package]] |
| 152 | name = "boxcar" |
| 153 | version = "0.2.14" |
| 154 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 155 | checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e" |
| 156 | |
| 157 | [[package]] |
| 158 | name = "brotli" |
| 159 | version = "8.0.4" |
| 160 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 161 | checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3" |
| 162 | dependencies = [ |
| 163 | "alloc-no-stdlib", |
| 164 | "alloc-stdlib", |
| 165 | "brotli-decompressor", |
| 166 | ] |
| 167 | |
| 168 | [[package]] |
| 169 | name = "brotli-decompressor" |
| 170 | version = "5.0.3" |
| 171 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 172 | checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583" |
| 173 | dependencies = [ |
| 174 | "alloc-no-stdlib", |
| 175 | "alloc-stdlib", |
| 176 | ] |
| 177 | |
| 178 | [[package]] |
| 179 | name = "bumpalo" |
| 180 | version = "3.20.3" |
| 181 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 182 | checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" |
| 183 | |
| 184 | [[package]] |
| 185 | name = "byteorder" |
| 186 | version = "1.5.0" |
| 187 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 188 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" |
| 189 | |
| 190 | [[package]] |
| 191 | name = "bytes" |
| 192 | version = "1.12.1" |
| 193 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 194 | checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" |
| 195 | |
| 196 | [[package]] |
| 197 | name = "cc" |
| 198 | version = "1.4.0" |
| 199 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 200 | checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9" |
| 201 | dependencies = [ |
| 202 | "find-msvc-tools", |
| 203 | "shlex", |
| 204 | ] |
| 205 | |
| 206 | [[package]] |
| 207 | name = "cfg-if" |
| 208 | version = "1.0.4" |
| 209 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 210 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" |
| 211 | |
| 212 | [[package]] |
| 213 | name = "chacha20" |
| 214 | version = "0.10.1" |
| 215 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 216 | checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" |
| 217 | dependencies = [ |
| 218 | "cfg-if", |
| 219 | "cpufeatures 0.3.0", |
| 220 | "rand_core 0.10.1", |
| 221 | ] |
| 222 | |
| 223 | [[package]] |
| 224 | name = "cipher" |
| 225 | version = "0.4.4" |
| 226 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 227 | checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" |
| 228 | dependencies = [ |
| 229 | "crypto-common 0.1.7", |
| 230 | "inout", |
| 231 | ] |
| 232 | |
| 233 | [[package]] |
| 234 | name = "cmov" |
| 235 | version = "0.5.4" |
| 236 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 237 | checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a" |
| 238 | |
| 239 | [[package]] |
| 240 | name = "compression-codecs" |
| 241 | version = "0.4.38" |
| 242 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 243 | checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf" |
| 244 | dependencies = [ |
| 245 | "brotli", |
| 246 | "compression-core", |
| 247 | "flate2", |
| 248 | "memchr", |
| 249 | ] |
| 250 | |
| 251 | [[package]] |
| 252 | name = "compression-core" |
| 253 | version = "0.4.32" |
| 254 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 255 | checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789" |
| 256 | |
| 257 | [[package]] |
| 258 | name = "const-oid" |
| 259 | version = "0.10.2" |
| 260 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 261 | checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" |
| 262 | |
| 263 | [[package]] |
| 264 | name = "cookie" |
| 265 | version = "0.18.1" |
| 266 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 267 | checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" |
| 268 | dependencies = [ |
| 269 | "aes-gcm", |
| 270 | "base64 0.22.1", |
| 271 | "hkdf 0.12.4", |
| 272 | "hmac 0.12.1", |
| 273 | "percent-encoding", |
| 274 | "rand 0.8.7", |
| 275 | "sha2 0.10.9", |
| 276 | "subtle", |
| 277 | "time", |
| 278 | "version_check", |
| 279 | ] |
| 280 | |
| 281 | [[package]] |
| 282 | name = "cpufeatures" |
| 283 | version = "0.2.17" |
| 284 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 285 | checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" |
| 286 | dependencies = [ |
| 287 | "libc", |
| 288 | ] |
| 289 | |
| 290 | [[package]] |
| 291 | name = "cpufeatures" |
| 292 | version = "0.3.0" |
| 293 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 294 | checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" |
| 295 | dependencies = [ |
| 296 | "libc", |
| 297 | ] |
| 298 | |
| 299 | [[package]] |
| 300 | name = "crc" |
| 301 | version = "3.4.0" |
| 302 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 303 | checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" |
| 304 | dependencies = [ |
| 305 | "crc-catalog", |
| 306 | ] |
| 307 | |
| 308 | [[package]] |
| 309 | name = "crc-catalog" |
| 310 | version = "2.5.0" |
| 311 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 312 | checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853" |
| 313 | |
| 314 | [[package]] |
| 315 | name = "crc32fast" |
| 316 | version = "1.5.0" |
| 317 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 318 | checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" |
| 319 | dependencies = [ |
| 320 | "cfg-if", |
| 321 | ] |
| 322 | |
| 323 | [[package]] |
| 324 | name = "crossbeam-queue" |
| 325 | version = "0.3.13" |
| 326 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 327 | checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26" |
| 328 | dependencies = [ |
| 329 | "crossbeam-utils", |
| 330 | ] |
| 331 | |
| 332 | [[package]] |
| 333 | name = "crossbeam-utils" |
| 334 | version = "0.8.22" |
| 335 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 336 | checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" |
| 337 | |
| 338 | [[package]] |
| 339 | name = "crypto-common" |
| 340 | version = "0.1.7" |
| 341 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 342 | checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" |
| 343 | dependencies = [ |
| 344 | "generic-array", |
| 345 | "rand_core 0.6.4", |
| 346 | "typenum", |
| 347 | ] |
| 348 | |
| 349 | [[package]] |
| 350 | name = "crypto-common" |
| 351 | version = "0.2.2" |
| 352 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 353 | checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" |
| 354 | dependencies = [ |
| 355 | "hybrid-array", |
| 356 | ] |
| 357 | |
| 358 | [[package]] |
| 359 | name = "ctr" |
| 360 | version = "0.9.2" |
| 361 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 362 | checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" |
| 363 | dependencies = [ |
| 364 | "cipher", |
| 365 | ] |
| 366 | |
| 367 | [[package]] |
| 368 | name = "ctutils" |
| 369 | version = "0.4.2" |
| 370 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 371 | checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e" |
| 372 | dependencies = [ |
| 373 | "cmov", |
| 374 | ] |
| 375 | |
| 376 | [[package]] |
| 377 | name = "data-encoding" |
| 378 | version = "2.11.0" |
| 379 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 380 | checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" |
| 381 | |
| 382 | [[package]] |
| 383 | name = "deranged" |
| 384 | version = "0.5.8" |
| 385 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 386 | checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" |
| 387 | |
| 388 | [[package]] |
| 389 | name = "digest" |
| 390 | version = "0.10.7" |
| 391 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 392 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" |
| 393 | dependencies = [ |
| 394 | "block-buffer 0.10.4", |
| 395 | "crypto-common 0.1.7", |
| 396 | "subtle", |
| 397 | ] |
| 398 | |
| 399 | [[package]] |
| 400 | name = "digest" |
| 401 | version = "0.11.3" |
| 402 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 403 | checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" |
| 404 | dependencies = [ |
| 405 | "block-buffer 0.12.1", |
| 406 | "const-oid", |
| 407 | "crypto-common 0.2.2", |
| 408 | "ctutils", |
| 409 | ] |
| 410 | |
| 411 | [[package]] |
| 412 | name = "displaydoc" |
| 413 | version = "0.2.7" |
| 414 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 415 | checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8" |
| 416 | dependencies = [ |
| 417 | "proc-macro2", |
| 418 | "quote", |
| 419 | "syn 3.0.3", |
| 420 | ] |
| 421 | |
| 422 | [[package]] |
| 423 | name = "dotenvy" |
| 424 | version = "0.15.7" |
| 425 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 426 | checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" |
| 427 | |
| 428 | [[package]] |
| 429 | name = "either" |
| 430 | version = "1.17.0" |
| 431 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 432 | checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d" |
| 433 | dependencies = [ |
| 434 | "serde", |
| 435 | ] |
| 436 | |
| 437 | [[package]] |
| 438 | name = "email-encoding" |
| 439 | version = "0.4.2" |
| 440 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 441 | checksum = "420b9da095f052ea597503e39073b5b3c522f7db933fbac202d91d24492693fd" |
| 442 | dependencies = [ |
| 443 | "base64 0.23.0", |
| 444 | "memchr", |
| 445 | ] |
| 446 | |
| 447 | [[package]] |
| 448 | name = "email_address" |
| 449 | version = "0.2.9" |
| 450 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 451 | checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449" |
| 452 | |
| 453 | [[package]] |
| 454 | name = "envy" |
| 455 | version = "0.4.2" |
| 456 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 457 | checksum = "3f47e0157f2cb54f5ae1bd371b30a2ae4311e1c028f575cd4e81de7353215965" |
| 458 | dependencies = [ |
| 459 | "serde", |
| 460 | ] |
| 461 | |
| 462 | [[package]] |
| 463 | name = "equivalent" |
| 464 | version = "1.0.2" |
| 465 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 466 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" |
| 467 | |
| 468 | [[package]] |
| 469 | name = "errno" |
| 470 | version = "0.3.14" |
| 471 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 472 | checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" |
| 473 | dependencies = [ |
| 474 | "libc", |
| 475 | "windows-sys", |
| 476 | ] |
| 477 | |
| 478 | [[package]] |
| 479 | name = "etcetera" |
| 480 | version = "0.11.0" |
| 481 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 482 | checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96" |
| 483 | dependencies = [ |
| 484 | "cfg-if", |
| 485 | "windows-sys", |
| 486 | ] |
| 487 | |
| 488 | [[package]] |
| 489 | name = "event-listener" |
| 490 | version = "5.4.2" |
| 491 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 492 | checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2" |
| 493 | dependencies = [ |
| 494 | "parking", |
| 495 | "pin-project-lite", |
| 496 | ] |
| 497 | |
| 498 | [[package]] |
| 499 | name = "fastrand" |
| 500 | version = "2.5.0" |
| 501 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 502 | checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" |
| 503 | |
| 504 | [[package]] |
| 505 | name = "find-msvc-tools" |
| 506 | version = "0.1.9" |
| 507 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 508 | checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" |
| 509 | |
| 510 | [[package]] |
| 511 | name = "flate2" |
| 512 | version = "1.1.9" |
| 513 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 514 | checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" |
| 515 | dependencies = [ |
| 516 | "crc32fast", |
| 517 | "miniz_oxide", |
| 518 | ] |
| 519 | |
| 520 | [[package]] |
| 521 | name = "flume" |
| 522 | version = "0.12.0" |
| 523 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 524 | checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be" |
| 525 | dependencies = [ |
| 526 | "futures-core", |
| 527 | "futures-sink", |
| 528 | "spin", |
| 529 | ] |
| 530 | |
| 531 | [[package]] |
| 532 | name = "fnv" |
| 533 | version = "1.0.7" |
| 534 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 535 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" |
| 536 | |
| 537 | [[package]] |
| 538 | name = "foldhash" |
| 539 | version = "0.2.0" |
| 540 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 541 | checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" |
| 542 | |
| 543 | [[package]] |
| 544 | name = "form_urlencoded" |
| 545 | version = "1.2.2" |
| 546 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 547 | checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" |
| 548 | dependencies = [ |
| 549 | "percent-encoding", |
| 550 | ] |
| 551 | |
| 552 | [[package]] |
| 553 | name = "futures-channel" |
| 554 | version = "0.3.33" |
| 555 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 556 | checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae" |
| 557 | dependencies = [ |
| 558 | "futures-core", |
| 559 | "futures-sink", |
| 560 | ] |
| 561 | |
| 562 | [[package]] |
| 563 | name = "futures-core" |
| 564 | version = "0.3.33" |
| 565 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 566 | checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7" |
| 567 | |
| 568 | [[package]] |
| 569 | name = "futures-executor" |
| 570 | version = "0.3.33" |
| 571 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 572 | checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458" |
| 573 | dependencies = [ |
| 574 | "futures-core", |
| 575 | "futures-task", |
| 576 | "futures-util", |
| 577 | ] |
| 578 | |
| 579 | [[package]] |
| 580 | name = "futures-intrusive" |
| 581 | version = "0.5.0" |
| 582 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 583 | checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" |
| 584 | dependencies = [ |
| 585 | "futures-core", |
| 586 | "lock_api", |
| 587 | "parking_lot", |
| 588 | ] |
| 589 | |
| 590 | [[package]] |
| 591 | name = "futures-io" |
| 592 | version = "0.3.33" |
| 593 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 594 | checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" |
| 595 | |
| 596 | [[package]] |
| 597 | name = "futures-macro" |
| 598 | version = "0.3.33" |
| 599 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 600 | checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b" |
| 601 | dependencies = [ |
| 602 | "proc-macro2", |
| 603 | "quote", |
| 604 | "syn 2.0.119", |
| 605 | ] |
| 606 | |
| 607 | [[package]] |
| 608 | name = "futures-sink" |
| 609 | version = "0.3.33" |
| 610 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 611 | checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307" |
| 612 | |
| 613 | [[package]] |
| 614 | name = "futures-task" |
| 615 | version = "0.3.33" |
| 616 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 617 | checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109" |
| 618 | |
| 619 | [[package]] |
| 620 | name = "futures-util" |
| 621 | version = "0.3.33" |
| 622 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 623 | checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa" |
| 624 | dependencies = [ |
| 625 | "futures-core", |
| 626 | "futures-io", |
| 627 | "futures-macro", |
| 628 | "futures-sink", |
| 629 | "futures-task", |
| 630 | "memchr", |
| 631 | "pin-project-lite", |
| 632 | "slab", |
| 633 | ] |
| 634 | |
| 635 | [[package]] |
| 636 | name = "generic-array" |
| 637 | version = "0.14.7" |
| 638 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 639 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" |
| 640 | dependencies = [ |
| 641 | "typenum", |
| 642 | "version_check", |
| 643 | ] |
| 644 | |
| 645 | [[package]] |
| 646 | name = "getrandom" |
| 647 | version = "0.2.17" |
| 648 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 649 | checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" |
| 650 | dependencies = [ |
| 651 | "cfg-if", |
| 652 | "js-sys", |
| 653 | "libc", |
| 654 | "wasi", |
| 655 | "wasm-bindgen", |
| 656 | ] |
| 657 | |
| 658 | [[package]] |
| 659 | name = "getrandom" |
| 660 | version = "0.3.4" |
| 661 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 662 | checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" |
| 663 | dependencies = [ |
| 664 | "cfg-if", |
| 665 | "libc", |
| 666 | "r-efi 5.3.0", |
| 667 | "wasip2", |
| 668 | ] |
| 669 | |
| 670 | [[package]] |
| 671 | name = "getrandom" |
| 672 | version = "0.4.3" |
| 673 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 674 | checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" |
| 675 | dependencies = [ |
| 676 | "cfg-if", |
| 677 | "js-sys", |
| 678 | "libc", |
| 679 | "r-efi 6.0.0", |
| 680 | "rand_core 0.10.1", |
| 681 | "wasm-bindgen", |
| 682 | ] |
| 683 | |
| 684 | [[package]] |
| 685 | name = "ghash" |
| 686 | version = "0.5.1" |
| 687 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 688 | checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" |
| 689 | dependencies = [ |
| 690 | "opaque-debug", |
| 691 | "polyval", |
| 692 | ] |
| 693 | |
| 694 | [[package]] |
| 695 | name = "h2" |
| 696 | version = "0.4.15" |
| 697 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 698 | checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" |
| 699 | dependencies = [ |
| 700 | "atomic-waker", |
| 701 | "bytes", |
| 702 | "fnv", |
| 703 | "futures-core", |
| 704 | "futures-sink", |
| 705 | "http", |
| 706 | "indexmap", |
| 707 | "slab", |
| 708 | "tokio", |
| 709 | "tokio-util", |
| 710 | "tracing", |
| 711 | ] |
| 712 | |
| 713 | [[package]] |
| 714 | name = "hashbrown" |
| 715 | version = "0.16.1" |
| 716 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 717 | checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" |
| 718 | dependencies = [ |
| 719 | "allocator-api2", |
| 720 | "equivalent", |
| 721 | "foldhash", |
| 722 | ] |
| 723 | |
| 724 | [[package]] |
| 725 | name = "hashbrown" |
| 726 | version = "0.17.1" |
| 727 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 728 | checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" |
| 729 | dependencies = [ |
| 730 | "allocator-api2", |
| 731 | "equivalent", |
| 732 | "foldhash", |
| 733 | ] |
| 734 | |
| 735 | [[package]] |
| 736 | name = "hashlink" |
| 737 | version = "0.11.1" |
| 738 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 739 | checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f" |
| 740 | dependencies = [ |
| 741 | "hashbrown 0.16.1", |
| 742 | ] |
| 743 | |
| 744 | [[package]] |
| 745 | name = "heck" |
| 746 | version = "0.5.0" |
| 747 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 748 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" |
| 749 | |
| 750 | [[package]] |
| 751 | name = "hex" |
| 752 | version = "0.4.3" |
| 753 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 754 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" |
| 755 | |
| 756 | [[package]] |
| 757 | name = "hkdf" |
| 758 | version = "0.12.4" |
| 759 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 760 | checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" |
| 761 | dependencies = [ |
| 762 | "hmac 0.12.1", |
| 763 | ] |
| 764 | |
| 765 | [[package]] |
| 766 | name = "hkdf" |
| 767 | version = "0.13.0" |
| 768 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 769 | checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018" |
| 770 | dependencies = [ |
| 771 | "hmac 0.13.0", |
| 772 | ] |
| 773 | |
| 774 | [[package]] |
| 775 | name = "hmac" |
| 776 | version = "0.12.1" |
| 777 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 778 | checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" |
| 779 | dependencies = [ |
| 780 | "digest 0.10.7", |
| 781 | ] |
| 782 | |
| 783 | [[package]] |
| 784 | name = "hmac" |
| 785 | version = "0.13.0" |
| 786 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 787 | checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f" |
| 788 | dependencies = [ |
| 789 | "digest 0.11.3", |
| 790 | ] |
| 791 | |
| 792 | [[package]] |
| 793 | name = "hostname" |
| 794 | version = "0.4.2" |
| 795 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 796 | checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd" |
| 797 | dependencies = [ |
| 798 | "cfg-if", |
| 799 | "libc", |
| 800 | "windows-link", |
| 801 | ] |
| 802 | |
| 803 | [[package]] |
| 804 | name = "http" |
| 805 | version = "1.5.0" |
| 806 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 807 | checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0" |
| 808 | dependencies = [ |
| 809 | "bytes", |
| 810 | "itoa", |
| 811 | ] |
| 812 | |
| 813 | [[package]] |
| 814 | name = "http-body" |
| 815 | version = "1.1.0" |
| 816 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 817 | checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" |
| 818 | dependencies = [ |
| 819 | "bytes", |
| 820 | "http", |
| 821 | ] |
| 822 | |
| 823 | [[package]] |
| 824 | name = "http-body-util" |
| 825 | version = "0.1.4" |
| 826 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 827 | checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" |
| 828 | dependencies = [ |
| 829 | "bytes", |
| 830 | "futures-core", |
| 831 | "http", |
| 832 | "http-body", |
| 833 | "pin-project-lite", |
| 834 | ] |
| 835 | |
| 836 | [[package]] |
| 837 | name = "httparse" |
| 838 | version = "1.10.1" |
| 839 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 840 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" |
| 841 | |
| 842 | [[package]] |
| 843 | name = "httpdate" |
| 844 | version = "1.0.3" |
| 845 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 846 | checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" |
| 847 | |
| 848 | [[package]] |
| 849 | name = "hybrid-array" |
| 850 | version = "0.4.14" |
| 851 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 852 | checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b" |
| 853 | dependencies = [ |
| 854 | "typenum", |
| 855 | ] |
| 856 | |
| 857 | [[package]] |
| 858 | name = "hyper" |
| 859 | version = "1.11.0" |
| 860 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 861 | checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72" |
| 862 | dependencies = [ |
| 863 | "atomic-waker", |
| 864 | "bytes", |
| 865 | "futures-channel", |
| 866 | "futures-core", |
| 867 | "h2", |
| 868 | "http", |
| 869 | "http-body", |
| 870 | "httparse", |
| 871 | "httpdate", |
| 872 | "itoa", |
| 873 | "pin-project-lite", |
| 874 | "smallvec", |
| 875 | "tokio", |
| 876 | ] |
| 877 | |
| 878 | [[package]] |
| 879 | name = "hyper-util" |
| 880 | version = "0.1.20" |
| 881 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 882 | checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" |
| 883 | dependencies = [ |
| 884 | "bytes", |
| 885 | "http", |
| 886 | "http-body", |
| 887 | "hyper", |
| 888 | "pin-project-lite", |
| 889 | "tokio", |
| 890 | ] |
| 891 | |
| 892 | [[package]] |
| 893 | name = "icu_collections" |
| 894 | version = "2.2.0" |
| 895 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 896 | checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" |
| 897 | dependencies = [ |
| 898 | "displaydoc", |
| 899 | "potential_utf", |
| 900 | "utf8_iter", |
| 901 | "yoke", |
| 902 | "zerofrom", |
| 903 | "zerovec", |
| 904 | ] |
| 905 | |
| 906 | [[package]] |
| 907 | name = "icu_locale_core" |
| 908 | version = "2.2.0" |
| 909 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 910 | checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" |
| 911 | dependencies = [ |
| 912 | "displaydoc", |
| 913 | "litemap", |
| 914 | "tinystr", |
| 915 | "writeable", |
| 916 | "zerovec", |
| 917 | ] |
| 918 | |
| 919 | [[package]] |
| 920 | name = "icu_normalizer" |
| 921 | version = "2.2.0" |
| 922 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 923 | checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" |
| 924 | dependencies = [ |
| 925 | "icu_collections", |
| 926 | "icu_normalizer_data", |
| 927 | "icu_properties", |
| 928 | "icu_provider", |
| 929 | "smallvec", |
| 930 | "zerovec", |
| 931 | ] |
| 932 | |
| 933 | [[package]] |
| 934 | name = "icu_normalizer_data" |
| 935 | version = "2.2.0" |
| 936 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 937 | checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" |
| 938 | |
| 939 | [[package]] |
| 940 | name = "icu_properties" |
| 941 | version = "2.2.0" |
| 942 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 943 | checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" |
| 944 | dependencies = [ |
| 945 | "icu_collections", |
| 946 | "icu_locale_core", |
| 947 | "icu_properties_data", |
| 948 | "icu_provider", |
| 949 | "zerotrie", |
| 950 | "zerovec", |
| 951 | ] |
| 952 | |
| 953 | [[package]] |
| 954 | name = "icu_properties_data" |
| 955 | version = "2.2.0" |
| 956 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 957 | checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" |
| 958 | |
| 959 | [[package]] |
| 960 | name = "icu_provider" |
| 961 | version = "2.2.0" |
| 962 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 963 | checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" |
| 964 | dependencies = [ |
| 965 | "displaydoc", |
| 966 | "icu_locale_core", |
| 967 | "writeable", |
| 968 | "yoke", |
| 969 | "zerofrom", |
| 970 | "zerotrie", |
| 971 | "zerovec", |
| 972 | ] |
| 973 | |
| 974 | [[package]] |
| 975 | name = "idna" |
| 976 | version = "1.1.0" |
| 977 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 978 | checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" |
| 979 | dependencies = [ |
| 980 | "idna_adapter", |
| 981 | "smallvec", |
| 982 | "utf8_iter", |
| 983 | ] |
| 984 | |
| 985 | [[package]] |
| 986 | name = "idna_adapter" |
| 987 | version = "1.2.2" |
| 988 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 989 | checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" |
| 990 | dependencies = [ |
| 991 | "icu_normalizer", |
| 992 | "icu_properties", |
| 993 | ] |
| 994 | |
| 995 | [[package]] |
| 996 | name = "indexmap" |
| 997 | version = "2.14.0" |
| 998 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 999 | checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" |
| 1000 | dependencies = [ |
| 1001 | "equivalent", |
| 1002 | "hashbrown 0.17.1", |
| 1003 | ] |
| 1004 | |
| 1005 | [[package]] |
| 1006 | name = "inout" |
| 1007 | version = "0.1.4" |
| 1008 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1009 | checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" |
| 1010 | dependencies = [ |
| 1011 | "generic-array", |
| 1012 | ] |
| 1013 | |
| 1014 | [[package]] |
| 1015 | name = "inventory" |
| 1016 | version = "0.3.24" |
| 1017 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1018 | checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b" |
| 1019 | dependencies = [ |
| 1020 | "rustversion", |
| 1021 | ] |
| 1022 | |
| 1023 | [[package]] |
| 1024 | name = "itoa" |
| 1025 | version = "1.0.18" |
| 1026 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1027 | checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" |
| 1028 | |
| 1029 | [[package]] |
| 1030 | name = "js-sys" |
| 1031 | version = "0.3.103" |
| 1032 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1033 | checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" |
| 1034 | dependencies = [ |
| 1035 | "cfg-if", |
| 1036 | "futures-util", |
| 1037 | "wasm-bindgen", |
| 1038 | ] |
| 1039 | |
| 1040 | [[package]] |
| 1041 | name = "lettre" |
| 1042 | version = "0.11.22" |
| 1043 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1044 | checksum = "0da65617f6cb926332d039cb578aad56178da86e128db6a1b09f4c94fa5b3349" |
| 1045 | dependencies = [ |
| 1046 | "email-encoding", |
| 1047 | "email_address", |
| 1048 | "fastrand", |
| 1049 | "hostname", |
| 1050 | "httpdate", |
| 1051 | "idna", |
| 1052 | "mime", |
| 1053 | "nom", |
| 1054 | "quoted_printable", |
| 1055 | ] |
| 1056 | |
| 1057 | [[package]] |
| 1058 | name = "libc" |
| 1059 | version = "0.2.189" |
| 1060 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1061 | checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" |
| 1062 | |
| 1063 | [[package]] |
| 1064 | name = "libsqlite3-sys" |
| 1065 | version = "0.37.0" |
| 1066 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1067 | checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1" |
| 1068 | dependencies = [ |
| 1069 | "cc", |
| 1070 | "pkg-config", |
| 1071 | "vcpkg", |
| 1072 | ] |
| 1073 | |
| 1074 | [[package]] |
| 1075 | name = "litemap" |
| 1076 | version = "0.8.2" |
| 1077 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1078 | checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" |
| 1079 | |
| 1080 | [[package]] |
| 1081 | name = "lock_api" |
| 1082 | version = "0.4.14" |
| 1083 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1084 | checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" |
| 1085 | dependencies = [ |
| 1086 | "scopeguard", |
| 1087 | ] |
| 1088 | |
| 1089 | [[package]] |
| 1090 | name = "log" |
| 1091 | version = "0.4.33" |
| 1092 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1093 | checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" |
| 1094 | |
| 1095 | [[package]] |
| 1096 | name = "matchit" |
| 1097 | version = "0.9.2" |
| 1098 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1099 | checksum = "8863b587001c1b9a8a4e36008cebc6b3612cb1226fe2de94858e06092687b608" |
| 1100 | |
| 1101 | [[package]] |
| 1102 | name = "md-5" |
| 1103 | version = "0.11.0" |
| 1104 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1105 | checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98" |
| 1106 | dependencies = [ |
| 1107 | "cfg-if", |
| 1108 | "digest 0.11.3", |
| 1109 | ] |
| 1110 | |
| 1111 | [[package]] |
| 1112 | name = "memchr" |
| 1113 | version = "2.8.3" |
| 1114 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1115 | checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" |
| 1116 | |
| 1117 | [[package]] |
| 1118 | name = "mime" |
| 1119 | version = "0.3.17" |
| 1120 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1121 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" |
| 1122 | |
| 1123 | [[package]] |
| 1124 | name = "miniz_oxide" |
| 1125 | version = "0.8.9" |
| 1126 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1127 | checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" |
| 1128 | dependencies = [ |
| 1129 | "adler2", |
| 1130 | "simd-adler32", |
| 1131 | ] |
| 1132 | |
| 1133 | [[package]] |
| 1134 | name = "mio" |
| 1135 | version = "1.2.2" |
| 1136 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1137 | checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" |
| 1138 | dependencies = [ |
| 1139 | "libc", |
| 1140 | "wasi", |
| 1141 | "windows-sys", |
| 1142 | ] |
| 1143 | |
| 1144 | [[package]] |
| 1145 | name = "nom" |
| 1146 | version = "8.0.0" |
| 1147 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1148 | checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" |
| 1149 | dependencies = [ |
| 1150 | "memchr", |
| 1151 | ] |
| 1152 | |
| 1153 | [[package]] |
| 1154 | name = "num-conv" |
| 1155 | version = "0.2.2" |
| 1156 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1157 | checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" |
| 1158 | |
| 1159 | [[package]] |
| 1160 | name = "num-traits" |
| 1161 | version = "0.2.19" |
| 1162 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1163 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" |
| 1164 | dependencies = [ |
| 1165 | "autocfg", |
| 1166 | ] |
| 1167 | |
| 1168 | [[package]] |
| 1169 | name = "once_cell" |
| 1170 | version = "1.21.4" |
| 1171 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1172 | checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" |
| 1173 | |
| 1174 | [[package]] |
| 1175 | name = "opaque-debug" |
| 1176 | version = "0.3.1" |
| 1177 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1178 | checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" |
| 1179 | |
| 1180 | [[package]] |
| 1181 | name = "parking" |
| 1182 | version = "2.2.1" |
| 1183 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1184 | checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" |
| 1185 | |
| 1186 | [[package]] |
| 1187 | name = "parking_lot" |
| 1188 | version = "0.12.5" |
| 1189 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1190 | checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" |
| 1191 | dependencies = [ |
| 1192 | "lock_api", |
| 1193 | "parking_lot_core", |
| 1194 | ] |
| 1195 | |
| 1196 | [[package]] |
| 1197 | name = "parking_lot_core" |
| 1198 | version = "0.9.12" |
| 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1200 | checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" |
| 1201 | dependencies = [ |
| 1202 | "cfg-if", |
| 1203 | "libc", |
| 1204 | "redox_syscall", |
| 1205 | "smallvec", |
| 1206 | "windows-link", |
| 1207 | ] |
| 1208 | |
| 1209 | [[package]] |
| 1210 | name = "percent-encoding" |
| 1211 | version = "2.3.2" |
| 1212 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1213 | checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" |
| 1214 | |
| 1215 | [[package]] |
| 1216 | name = "pin-project-lite" |
| 1217 | version = "0.2.17" |
| 1218 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1219 | checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" |
| 1220 | |
| 1221 | [[package]] |
| 1222 | name = "pkg-config" |
| 1223 | version = "0.3.33" |
| 1224 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1225 | checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" |
| 1226 | |
| 1227 | [[package]] |
| 1228 | name = "polyval" |
| 1229 | version = "0.6.2" |
| 1230 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1231 | checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" |
| 1232 | dependencies = [ |
| 1233 | "cfg-if", |
| 1234 | "cpufeatures 0.2.17", |
| 1235 | "opaque-debug", |
| 1236 | "universal-hash", |
| 1237 | ] |
| 1238 | |
| 1239 | [[package]] |
| 1240 | name = "potential_utf" |
| 1241 | version = "0.1.5" |
| 1242 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1243 | checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" |
| 1244 | dependencies = [ |
| 1245 | "zerovec", |
| 1246 | ] |
| 1247 | |
| 1248 | [[package]] |
| 1249 | name = "powerfmt" |
| 1250 | version = "0.2.0" |
| 1251 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1252 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" |
| 1253 | |
| 1254 | [[package]] |
| 1255 | name = "ppv-lite86" |
| 1256 | version = "0.2.21" |
| 1257 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1258 | checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" |
| 1259 | dependencies = [ |
| 1260 | "zerocopy", |
| 1261 | ] |
| 1262 | |
| 1263 | [[package]] |
| 1264 | name = "proc-macro-crate" |
| 1265 | version = "3.5.0" |
| 1266 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1267 | checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" |
| 1268 | dependencies = [ |
| 1269 | "toml_edit", |
| 1270 | ] |
| 1271 | |
| 1272 | [[package]] |
| 1273 | name = "proc-macro2" |
| 1274 | version = "1.0.107" |
| 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1276 | checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" |
| 1277 | dependencies = [ |
| 1278 | "unicode-ident", |
| 1279 | ] |
| 1280 | |
| 1281 | [[package]] |
| 1282 | name = "quote" |
| 1283 | version = "1.0.47" |
| 1284 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1285 | checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" |
| 1286 | dependencies = [ |
| 1287 | "proc-macro2", |
| 1288 | ] |
| 1289 | |
| 1290 | [[package]] |
| 1291 | name = "quoted_printable" |
| 1292 | version = "0.5.2" |
| 1293 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1294 | checksum = "478e0585659a122aa407eb7e3c0e1fa51b1d8a870038bd29f0cf4a8551eea972" |
| 1295 | |
| 1296 | [[package]] |
| 1297 | name = "r-efi" |
| 1298 | version = "5.3.0" |
| 1299 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1300 | checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" |
| 1301 | |
| 1302 | [[package]] |
| 1303 | name = "r-efi" |
| 1304 | version = "6.0.0" |
| 1305 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1306 | checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" |
| 1307 | |
| 1308 | [[package]] |
| 1309 | name = "rand" |
| 1310 | version = "0.8.7" |
| 1311 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1312 | checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" |
| 1313 | dependencies = [ |
| 1314 | "libc", |
| 1315 | "rand_chacha 0.3.1", |
| 1316 | "rand_core 0.6.4", |
| 1317 | ] |
| 1318 | |
| 1319 | [[package]] |
| 1320 | name = "rand" |
| 1321 | version = "0.9.5" |
| 1322 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1323 | checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" |
| 1324 | dependencies = [ |
| 1325 | "rand_chacha 0.9.0", |
| 1326 | "rand_core 0.9.5", |
| 1327 | ] |
| 1328 | |
| 1329 | [[package]] |
| 1330 | name = "rand" |
| 1331 | version = "0.10.2" |
| 1332 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1333 | checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" |
| 1334 | dependencies = [ |
| 1335 | "chacha20", |
| 1336 | "getrandom 0.4.3", |
| 1337 | "rand_core 0.10.1", |
| 1338 | ] |
| 1339 | |
| 1340 | [[package]] |
| 1341 | name = "rand_chacha" |
| 1342 | version = "0.3.1" |
| 1343 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1344 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" |
| 1345 | dependencies = [ |
| 1346 | "ppv-lite86", |
| 1347 | "rand_core 0.6.4", |
| 1348 | ] |
| 1349 | |
| 1350 | [[package]] |
| 1351 | name = "rand_chacha" |
| 1352 | version = "0.9.0" |
| 1353 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1354 | checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" |
| 1355 | dependencies = [ |
| 1356 | "ppv-lite86", |
| 1357 | "rand_core 0.9.5", |
| 1358 | ] |
| 1359 | |
| 1360 | [[package]] |
| 1361 | name = "rand_core" |
| 1362 | version = "0.6.4" |
| 1363 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1364 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" |
| 1365 | dependencies = [ |
| 1366 | "getrandom 0.2.17", |
| 1367 | ] |
| 1368 | |
| 1369 | [[package]] |
| 1370 | name = "rand_core" |
| 1371 | version = "0.9.5" |
| 1372 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1373 | checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" |
| 1374 | dependencies = [ |
| 1375 | "getrandom 0.3.4", |
| 1376 | ] |
| 1377 | |
| 1378 | [[package]] |
| 1379 | name = "rand_core" |
| 1380 | version = "0.10.1" |
| 1381 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1382 | checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" |
| 1383 | |
| 1384 | [[package]] |
| 1385 | name = "redox_syscall" |
| 1386 | version = "0.5.18" |
| 1387 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1388 | checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" |
| 1389 | dependencies = [ |
| 1390 | "bitflags", |
| 1391 | ] |
| 1392 | |
| 1393 | [[package]] |
| 1394 | name = "ref-cast" |
| 1395 | version = "1.0.26" |
| 1396 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1397 | checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d" |
| 1398 | dependencies = [ |
| 1399 | "ref-cast-impl", |
| 1400 | ] |
| 1401 | |
| 1402 | [[package]] |
| 1403 | name = "ref-cast-impl" |
| 1404 | version = "1.0.26" |
| 1405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1406 | checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c" |
| 1407 | dependencies = [ |
| 1408 | "proc-macro2", |
| 1409 | "quote", |
| 1410 | "syn 3.0.3", |
| 1411 | ] |
| 1412 | |
| 1413 | [[package]] |
| 1414 | name = "rustversion" |
| 1415 | version = "1.0.23" |
| 1416 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1417 | checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" |
| 1418 | |
| 1419 | [[package]] |
| 1420 | name = "ryu" |
| 1421 | version = "1.0.23" |
| 1422 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1423 | checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" |
| 1424 | |
| 1425 | [[package]] |
| 1426 | name = "scopeguard" |
| 1427 | version = "1.2.0" |
| 1428 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1429 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" |
| 1430 | |
| 1431 | [[package]] |
| 1432 | name = "serde" |
| 1433 | version = "1.0.229" |
| 1434 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1435 | checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" |
| 1436 | dependencies = [ |
| 1437 | "serde_core", |
| 1438 | "serde_derive", |
| 1439 | ] |
| 1440 | |
| 1441 | [[package]] |
| 1442 | name = "serde_core" |
| 1443 | version = "1.0.229" |
| 1444 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1445 | checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" |
| 1446 | dependencies = [ |
| 1447 | "serde_derive", |
| 1448 | ] |
| 1449 | |
| 1450 | [[package]] |
| 1451 | name = "serde_derive" |
| 1452 | version = "1.0.229" |
| 1453 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1454 | checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" |
| 1455 | dependencies = [ |
| 1456 | "proc-macro2", |
| 1457 | "quote", |
| 1458 | "syn 3.0.3", |
| 1459 | ] |
| 1460 | |
| 1461 | [[package]] |
| 1462 | name = "serde_json" |
| 1463 | version = "1.0.151" |
| 1464 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1465 | checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14" |
| 1466 | dependencies = [ |
| 1467 | "itoa", |
| 1468 | "memchr", |
| 1469 | "serde", |
| 1470 | "serde_core", |
| 1471 | "zmij", |
| 1472 | ] |
| 1473 | |
| 1474 | [[package]] |
| 1475 | name = "serde_path_to_error" |
| 1476 | version = "0.1.20" |
| 1477 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1478 | checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" |
| 1479 | dependencies = [ |
| 1480 | "itoa", |
| 1481 | "serde", |
| 1482 | "serde_core", |
| 1483 | ] |
| 1484 | |
| 1485 | [[package]] |
| 1486 | name = "serde_spanned" |
| 1487 | version = "1.1.1" |
| 1488 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1489 | checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26" |
| 1490 | dependencies = [ |
| 1491 | "serde_core", |
| 1492 | ] |
| 1493 | |
| 1494 | [[package]] |
| 1495 | name = "serde_urlencoded" |
| 1496 | version = "0.7.1" |
| 1497 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1498 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" |
| 1499 | dependencies = [ |
| 1500 | "form_urlencoded", |
| 1501 | "itoa", |
| 1502 | "ryu", |
| 1503 | "serde", |
| 1504 | ] |
| 1505 | |
| 1506 | [[package]] |
| 1507 | name = "sha1" |
| 1508 | version = "0.10.7" |
| 1509 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1510 | checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8" |
| 1511 | dependencies = [ |
| 1512 | "cfg-if", |
| 1513 | "cpufeatures 0.2.17", |
| 1514 | "digest 0.10.7", |
| 1515 | ] |
| 1516 | |
| 1517 | [[package]] |
| 1518 | name = "sha1" |
| 1519 | version = "0.11.0" |
| 1520 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1521 | checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" |
| 1522 | dependencies = [ |
| 1523 | "cfg-if", |
| 1524 | "cpufeatures 0.3.0", |
| 1525 | "digest 0.11.3", |
| 1526 | ] |
| 1527 | |
| 1528 | [[package]] |
| 1529 | name = "sha2" |
| 1530 | version = "0.10.9" |
| 1531 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1532 | checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" |
| 1533 | dependencies = [ |
| 1534 | "cfg-if", |
| 1535 | "cpufeatures 0.2.17", |
| 1536 | "digest 0.10.7", |
| 1537 | ] |
| 1538 | |
| 1539 | [[package]] |
| 1540 | name = "sha2" |
| 1541 | version = "0.11.0" |
| 1542 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1543 | checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" |
| 1544 | dependencies = [ |
| 1545 | "cfg-if", |
| 1546 | "cpufeatures 0.3.0", |
| 1547 | "digest 0.11.3", |
| 1548 | ] |
| 1549 | |
| 1550 | [[package]] |
| 1551 | name = "shlex" |
| 1552 | version = "2.0.1" |
| 1553 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1554 | checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" |
| 1555 | |
| 1556 | [[package]] |
| 1557 | name = "signal-hook-registry" |
| 1558 | version = "1.4.8" |
| 1559 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1560 | checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" |
| 1561 | dependencies = [ |
| 1562 | "errno", |
| 1563 | "libc", |
| 1564 | ] |
| 1565 | |
| 1566 | [[package]] |
| 1567 | name = "simd-adler32" |
| 1568 | version = "0.3.10" |
| 1569 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1570 | checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" |
| 1571 | |
| 1572 | [[package]] |
| 1573 | name = "slab" |
| 1574 | version = "0.4.12" |
| 1575 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1576 | checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" |
| 1577 | |
| 1578 | [[package]] |
| 1579 | name = "smallvec" |
| 1580 | version = "1.15.2" |
| 1581 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1582 | checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" |
| 1583 | dependencies = [ |
| 1584 | "serde", |
| 1585 | ] |
| 1586 | |
| 1587 | [[package]] |
| 1588 | name = "socket2" |
| 1589 | version = "0.6.5" |
| 1590 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1591 | checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" |
| 1592 | dependencies = [ |
| 1593 | "libc", |
| 1594 | "windows-sys", |
| 1595 | ] |
| 1596 | |
| 1597 | [[package]] |
| 1598 | name = "spin" |
| 1599 | version = "0.9.9" |
| 1600 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1601 | checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" |
| 1602 | dependencies = [ |
| 1603 | "lock_api", |
| 1604 | ] |
| 1605 | |
| 1606 | [[package]] |
| 1607 | name = "sqlx" |
| 1608 | version = "0.9.0" |
| 1609 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1610 | checksum = "378620ccc25c62c89d8be1c819e76a88d59bdcc3304733330788948e619bfd71" |
| 1611 | dependencies = [ |
| 1612 | "sqlx-core", |
| 1613 | "sqlx-macros", |
| 1614 | "sqlx-mysql", |
| 1615 | "sqlx-postgres", |
| 1616 | "sqlx-sqlite", |
| 1617 | ] |
| 1618 | |
| 1619 | [[package]] |
| 1620 | name = "sqlx-core" |
| 1621 | version = "0.9.0" |
| 1622 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1623 | checksum = "05b44e85bf579a8eeb4ceaa77a3a523baf2bf0e9bac7e40f405d537b5d2d5ccb" |
| 1624 | dependencies = [ |
| 1625 | "base64 0.22.1", |
| 1626 | "bytes", |
| 1627 | "cfg-if", |
| 1628 | "crc", |
| 1629 | "crossbeam-queue", |
| 1630 | "either", |
| 1631 | "event-listener", |
| 1632 | "futures-core", |
| 1633 | "futures-intrusive", |
| 1634 | "futures-io", |
| 1635 | "futures-util", |
| 1636 | "hashbrown 0.16.1", |
| 1637 | "hashlink", |
| 1638 | "indexmap", |
| 1639 | "log", |
| 1640 | "memchr", |
| 1641 | "percent-encoding", |
| 1642 | "serde", |
| 1643 | "serde_json", |
| 1644 | "sha2 0.10.9", |
| 1645 | "smallvec", |
| 1646 | "thiserror", |
| 1647 | "tokio", |
| 1648 | "tokio-stream", |
| 1649 | "tracing", |
| 1650 | "url", |
| 1651 | ] |
| 1652 | |
| 1653 | [[package]] |
| 1654 | name = "sqlx-macros" |
| 1655 | version = "0.9.0" |
| 1656 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1657 | checksum = "bd2b84f2bc39a5705ef27ec785a11c934a41bbd4a24941e257927cddc26b60bf" |
| 1658 | dependencies = [ |
| 1659 | "proc-macro2", |
| 1660 | "quote", |
| 1661 | "sqlx-core", |
| 1662 | "sqlx-macros-core", |
| 1663 | "syn 2.0.119", |
| 1664 | ] |
| 1665 | |
| 1666 | [[package]] |
| 1667 | name = "sqlx-macros-core" |
| 1668 | version = "0.9.0" |
| 1669 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1670 | checksum = "fb8d96de5fdc85a5c4ec813432b523ec637e80ba98f046555f75f7908ddac7c3" |
| 1671 | dependencies = [ |
| 1672 | "cfg-if", |
| 1673 | "dotenvy", |
| 1674 | "either", |
| 1675 | "heck", |
| 1676 | "hex", |
| 1677 | "proc-macro2", |
| 1678 | "quote", |
| 1679 | "serde", |
| 1680 | "serde_json", |
| 1681 | "sha2 0.10.9", |
| 1682 | "sqlx-core", |
| 1683 | "sqlx-sqlite", |
| 1684 | "syn 2.0.119", |
| 1685 | "thiserror", |
| 1686 | "tokio", |
| 1687 | "url", |
| 1688 | ] |
| 1689 | |
| 1690 | [[package]] |
| 1691 | name = "sqlx-mysql" |
| 1692 | version = "0.9.0" |
| 1693 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1694 | checksum = "90b8020fe17c5f2c245bfa2505d7ef59c5604839527c740266ad2214acebea27" |
| 1695 | dependencies = [ |
| 1696 | "bitflags", |
| 1697 | "byteorder", |
| 1698 | "bytes", |
| 1699 | "digest 0.11.3", |
| 1700 | "dotenvy", |
| 1701 | "either", |
| 1702 | "futures-core", |
| 1703 | "futures-util", |
| 1704 | "generic-array", |
| 1705 | "log", |
| 1706 | "percent-encoding", |
| 1707 | "serde", |
| 1708 | "sha1 0.11.0", |
| 1709 | "sha2 0.11.0", |
| 1710 | "sqlx-core", |
| 1711 | "thiserror", |
| 1712 | "tracing", |
| 1713 | ] |
| 1714 | |
| 1715 | [[package]] |
| 1716 | name = "sqlx-postgres" |
| 1717 | version = "0.9.0" |
| 1718 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1719 | checksum = "87a2bdd6e83f6b3ea525ca9fee568030508b58355a43d0b2c1674d5f79dcd65e" |
| 1720 | dependencies = [ |
| 1721 | "atoi", |
| 1722 | "base64 0.22.1", |
| 1723 | "bitflags", |
| 1724 | "byteorder", |
| 1725 | "dotenvy", |
| 1726 | "etcetera", |
| 1727 | "futures-channel", |
| 1728 | "futures-core", |
| 1729 | "futures-util", |
| 1730 | "hex", |
| 1731 | "hkdf 0.13.0", |
| 1732 | "hmac 0.13.0", |
| 1733 | "itoa", |
| 1734 | "log", |
| 1735 | "md-5", |
| 1736 | "memchr", |
| 1737 | "rand 0.10.2", |
| 1738 | "serde", |
| 1739 | "serde_json", |
| 1740 | "sha2 0.11.0", |
| 1741 | "smallvec", |
| 1742 | "sqlx-core", |
| 1743 | "stringprep", |
| 1744 | "thiserror", |
| 1745 | "tracing", |
| 1746 | "whoami", |
| 1747 | ] |
| 1748 | |
| 1749 | [[package]] |
| 1750 | name = "sqlx-sqlite" |
| 1751 | version = "0.9.0" |
| 1752 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1753 | checksum = "488e99c397a62007e4229aec669a179816339afc6d2620ca6fa420dbee2e982c" |
| 1754 | dependencies = [ |
| 1755 | "atoi", |
| 1756 | "flume", |
| 1757 | "form_urlencoded", |
| 1758 | "futures-channel", |
| 1759 | "futures-core", |
| 1760 | "futures-executor", |
| 1761 | "futures-intrusive", |
| 1762 | "futures-util", |
| 1763 | "libsqlite3-sys", |
| 1764 | "log", |
| 1765 | "percent-encoding", |
| 1766 | "serde", |
| 1767 | "sqlx-core", |
| 1768 | "thiserror", |
| 1769 | "tracing", |
| 1770 | "url", |
| 1771 | ] |
| 1772 | |
| 1773 | [[package]] |
| 1774 | name = "stable_deref_trait" |
| 1775 | version = "1.2.1" |
| 1776 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1777 | checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" |
| 1778 | |
| 1779 | [[package]] |
| 1780 | name = "steid" |
| 1781 | version = "0.1.0" |
| 1782 | dependencies = [ |
| 1783 | "dotenvy", |
| 1784 | "envy", |
| 1785 | "serde", |
| 1786 | "sqlx", |
| 1787 | "tokio", |
| 1788 | "topcoat", |
| 1789 | ] |
| 1790 | |
| 1791 | [[package]] |
| 1792 | name = "stringprep" |
| 1793 | version = "0.1.5" |
| 1794 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1795 | checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" |
| 1796 | dependencies = [ |
| 1797 | "unicode-bidi", |
| 1798 | "unicode-normalization", |
| 1799 | "unicode-properties", |
| 1800 | ] |
| 1801 | |
| 1802 | [[package]] |
| 1803 | name = "subtle" |
| 1804 | version = "2.6.1" |
| 1805 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1806 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" |
| 1807 | |
| 1808 | [[package]] |
| 1809 | name = "syn" |
| 1810 | version = "2.0.119" |
| 1811 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1812 | checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" |
| 1813 | dependencies = [ |
| 1814 | "proc-macro2", |
| 1815 | "quote", |
| 1816 | "unicode-ident", |
| 1817 | ] |
| 1818 | |
| 1819 | [[package]] |
| 1820 | name = "syn" |
| 1821 | version = "3.0.3" |
| 1822 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1823 | checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3" |
| 1824 | dependencies = [ |
| 1825 | "proc-macro2", |
| 1826 | "quote", |
| 1827 | "unicode-ident", |
| 1828 | ] |
| 1829 | |
| 1830 | [[package]] |
| 1831 | name = "sync_wrapper" |
| 1832 | version = "1.0.2" |
| 1833 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1834 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" |
| 1835 | |
| 1836 | [[package]] |
| 1837 | name = "synstructure" |
| 1838 | version = "0.13.2" |
| 1839 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1840 | checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" |
| 1841 | dependencies = [ |
| 1842 | "proc-macro2", |
| 1843 | "quote", |
| 1844 | "syn 2.0.119", |
| 1845 | ] |
| 1846 | |
| 1847 | [[package]] |
| 1848 | name = "thiserror" |
| 1849 | version = "2.0.19" |
| 1850 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1851 | checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9" |
| 1852 | dependencies = [ |
| 1853 | "thiserror-impl", |
| 1854 | ] |
| 1855 | |
| 1856 | [[package]] |
| 1857 | name = "thiserror-impl" |
| 1858 | version = "2.0.19" |
| 1859 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1860 | checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd" |
| 1861 | dependencies = [ |
| 1862 | "proc-macro2", |
| 1863 | "quote", |
| 1864 | "syn 3.0.3", |
| 1865 | ] |
| 1866 | |
| 1867 | [[package]] |
| 1868 | name = "time" |
| 1869 | version = "0.3.54" |
| 1870 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1871 | checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244" |
| 1872 | dependencies = [ |
| 1873 | "deranged", |
| 1874 | "num-conv", |
| 1875 | "powerfmt", |
| 1876 | "serde_core", |
| 1877 | "time-core", |
| 1878 | "time-macros", |
| 1879 | ] |
| 1880 | |
| 1881 | [[package]] |
| 1882 | name = "time-core" |
| 1883 | version = "0.1.9" |
| 1884 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1885 | checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" |
| 1886 | |
| 1887 | [[package]] |
| 1888 | name = "time-macros" |
| 1889 | version = "0.2.32" |
| 1890 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1891 | checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85" |
| 1892 | dependencies = [ |
| 1893 | "num-conv", |
| 1894 | "time-core", |
| 1895 | ] |
| 1896 | |
| 1897 | [[package]] |
| 1898 | name = "tinystr" |
| 1899 | version = "0.8.3" |
| 1900 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1901 | checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" |
| 1902 | dependencies = [ |
| 1903 | "displaydoc", |
| 1904 | "zerovec", |
| 1905 | ] |
| 1906 | |
| 1907 | [[package]] |
| 1908 | name = "tinyvec" |
| 1909 | version = "1.12.0" |
| 1910 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1911 | checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" |
| 1912 | dependencies = [ |
| 1913 | "tinyvec_macros", |
| 1914 | ] |
| 1915 | |
| 1916 | [[package]] |
| 1917 | name = "tinyvec_macros" |
| 1918 | version = "0.1.1" |
| 1919 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1920 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" |
| 1921 | |
| 1922 | [[package]] |
| 1923 | name = "tokio" |
| 1924 | version = "1.53.1" |
| 1925 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1926 | checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed" |
| 1927 | dependencies = [ |
| 1928 | "bytes", |
| 1929 | "libc", |
| 1930 | "mio", |
| 1931 | "pin-project-lite", |
| 1932 | "signal-hook-registry", |
| 1933 | "socket2", |
| 1934 | "tokio-macros", |
| 1935 | "windows-sys", |
| 1936 | ] |
| 1937 | |
| 1938 | [[package]] |
| 1939 | name = "tokio-macros" |
| 1940 | version = "2.7.2" |
| 1941 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1942 | checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e" |
| 1943 | dependencies = [ |
| 1944 | "proc-macro2", |
| 1945 | "quote", |
| 1946 | "syn 3.0.3", |
| 1947 | ] |
| 1948 | |
| 1949 | [[package]] |
| 1950 | name = "tokio-stream" |
| 1951 | version = "0.1.19" |
| 1952 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1953 | checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b" |
| 1954 | dependencies = [ |
| 1955 | "futures-core", |
| 1956 | "pin-project-lite", |
| 1957 | "tokio", |
| 1958 | ] |
| 1959 | |
| 1960 | [[package]] |
| 1961 | name = "tokio-tungstenite" |
| 1962 | version = "0.29.0" |
| 1963 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1964 | checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" |
| 1965 | dependencies = [ |
| 1966 | "futures-util", |
| 1967 | "log", |
| 1968 | "tokio", |
| 1969 | "tungstenite", |
| 1970 | ] |
| 1971 | |
| 1972 | [[package]] |
| 1973 | name = "tokio-util" |
| 1974 | version = "0.7.19" |
| 1975 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1976 | checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52" |
| 1977 | dependencies = [ |
| 1978 | "bytes", |
| 1979 | "futures-core", |
| 1980 | "futures-sink", |
| 1981 | "libc", |
| 1982 | "pin-project-lite", |
| 1983 | "tokio", |
| 1984 | ] |
| 1985 | |
| 1986 | [[package]] |
| 1987 | name = "toml" |
| 1988 | version = "1.1.4+spec-1.1.0" |
| 1989 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 1990 | checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5" |
| 1991 | dependencies = [ |
| 1992 | "indexmap", |
| 1993 | "serde_core", |
| 1994 | "serde_spanned", |
| 1995 | "toml_datetime", |
| 1996 | "toml_parser", |
| 1997 | "toml_writer", |
| 1998 | "winnow", |
| 1999 | ] |
| 2000 | |
| 2001 | [[package]] |
| 2002 | name = "toml_datetime" |
| 2003 | version = "1.1.1+spec-1.1.0" |
| 2004 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2005 | checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" |
| 2006 | dependencies = [ |
| 2007 | "serde_core", |
| 2008 | ] |
| 2009 | |
| 2010 | [[package]] |
| 2011 | name = "toml_edit" |
| 2012 | version = "0.25.13+spec-1.1.0" |
| 2013 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2014 | checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" |
| 2015 | dependencies = [ |
| 2016 | "indexmap", |
| 2017 | "toml_datetime", |
| 2018 | "toml_parser", |
| 2019 | "winnow", |
| 2020 | ] |
| 2021 | |
| 2022 | [[package]] |
| 2023 | name = "toml_parser" |
| 2024 | version = "1.1.3+spec-1.1.0" |
| 2025 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2026 | checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56" |
| 2027 | dependencies = [ |
| 2028 | "winnow", |
| 2029 | ] |
| 2030 | |
| 2031 | [[package]] |
| 2032 | name = "toml_writer" |
| 2033 | version = "1.1.2+spec-1.1.0" |
| 2034 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2035 | checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2" |
| 2036 | |
| 2037 | [[package]] |
| 2038 | name = "topcoat" |
| 2039 | version = "0.5.0" |
| 2040 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2041 | checksum = "589daca3621386280f58fde033d08ff378592f6ac448bea327418ccf2725bc83" |
| 2042 | dependencies = [ |
| 2043 | "futures-util", |
| 2044 | "inventory", |
| 2045 | "serde", |
| 2046 | "serde_urlencoded", |
| 2047 | "tokio", |
| 2048 | "tokio-tungstenite", |
| 2049 | "topcoat-asset", |
| 2050 | "topcoat-cookie", |
| 2051 | "topcoat-core", |
| 2052 | "topcoat-core-macro", |
| 2053 | "topcoat-font", |
| 2054 | "topcoat-font-macro", |
| 2055 | "topcoat-icon", |
| 2056 | "topcoat-icon-macro", |
| 2057 | "topcoat-mail", |
| 2058 | "topcoat-router", |
| 2059 | "topcoat-router-macro", |
| 2060 | "topcoat-runtime", |
| 2061 | "topcoat-runtime-macro", |
| 2062 | "topcoat-session", |
| 2063 | "topcoat-view", |
| 2064 | "topcoat-view-macro", |
| 2065 | ] |
| 2066 | |
| 2067 | [[package]] |
| 2068 | name = "topcoat-asset" |
| 2069 | version = "0.5.0" |
| 2070 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2071 | checksum = "5c6578f618a56f94f3f7adc1738af2aae404b38df0f8bc57b2bd193a619497a1" |
| 2072 | dependencies = [ |
| 2073 | "http", |
| 2074 | "memchr", |
| 2075 | "serde", |
| 2076 | "sha2 0.11.0", |
| 2077 | "thiserror", |
| 2078 | "tokio", |
| 2079 | "toml", |
| 2080 | "topcoat-core", |
| 2081 | "topcoat-router", |
| 2082 | "topcoat-view", |
| 2083 | ] |
| 2084 | |
| 2085 | [[package]] |
| 2086 | name = "topcoat-cookie" |
| 2087 | version = "0.5.0" |
| 2088 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2089 | checksum = "d32c9f0ae723b64ff6e41045ec12a527557a2ccfa6518cdd0b9ec08dd844a21f" |
| 2090 | dependencies = [ |
| 2091 | "cookie", |
| 2092 | "getrandom 0.2.17", |
| 2093 | "http", |
| 2094 | "serde", |
| 2095 | "serde_json", |
| 2096 | "topcoat-core", |
| 2097 | "topcoat-router", |
| 2098 | ] |
| 2099 | |
| 2100 | [[package]] |
| 2101 | name = "topcoat-core" |
| 2102 | version = "0.5.0" |
| 2103 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2104 | checksum = "1910073163af25526c01e9ffc489bedbed653e9047b98998d1cd71c5c7086613" |
| 2105 | dependencies = [ |
| 2106 | "anyhow", |
| 2107 | "anymap3", |
| 2108 | "boxcar", |
| 2109 | "hashbrown 0.17.1", |
| 2110 | "http", |
| 2111 | "pin-project-lite", |
| 2112 | "thiserror", |
| 2113 | "tokio", |
| 2114 | ] |
| 2115 | |
| 2116 | [[package]] |
| 2117 | name = "topcoat-core-grammar" |
| 2118 | version = "0.5.0" |
| 2119 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2120 | checksum = "d6fee467bd47fafd06fa2c8c45de79bf63f4876f6bc1a6e23334b380d68f2154" |
| 2121 | dependencies = [ |
| 2122 | "proc-macro-crate", |
| 2123 | "proc-macro2", |
| 2124 | "quote", |
| 2125 | "syn 2.0.119", |
| 2126 | ] |
| 2127 | |
| 2128 | [[package]] |
| 2129 | name = "topcoat-core-macro" |
| 2130 | version = "0.5.0" |
| 2131 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2132 | checksum = "7d47e2d41ebfa9abb50446f6d9c518b56f255c9a3d706a3bf959a4744cc745a7" |
| 2133 | dependencies = [ |
| 2134 | "quote", |
| 2135 | "syn 2.0.119", |
| 2136 | "topcoat-core-grammar", |
| 2137 | ] |
| 2138 | |
| 2139 | [[package]] |
| 2140 | name = "topcoat-font" |
| 2141 | version = "0.5.0" |
| 2142 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2143 | checksum = "0315d8be7320e76c99186bb9e9c33c279daf029b236e0c931fb9623604c707be" |
| 2144 | dependencies = [ |
| 2145 | "heck", |
| 2146 | "inventory", |
| 2147 | "serde", |
| 2148 | "serde_json", |
| 2149 | "topcoat-asset", |
| 2150 | "topcoat-core", |
| 2151 | "topcoat-router", |
| 2152 | "topcoat-view", |
| 2153 | "topcoat-view-macro", |
| 2154 | ] |
| 2155 | |
| 2156 | [[package]] |
| 2157 | name = "topcoat-font-grammar" |
| 2158 | version = "0.5.0" |
| 2159 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2160 | checksum = "92bc65a9036f2fe35d14962bafa4ced1cf0704070ec313b61ccbc50d7d3b18c1" |
| 2161 | dependencies = [ |
| 2162 | "proc-macro2", |
| 2163 | "quote", |
| 2164 | "syn 2.0.119", |
| 2165 | "topcoat-core-grammar", |
| 2166 | "topcoat-font", |
| 2167 | ] |
| 2168 | |
| 2169 | [[package]] |
| 2170 | name = "topcoat-font-macro" |
| 2171 | version = "0.5.0" |
| 2172 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2173 | checksum = "d9688cc9b5237cd16bbb1cee89f03c63482e1c7e883c4cc52921c3e269a2b8a2" |
| 2174 | dependencies = [ |
| 2175 | "quote", |
| 2176 | "syn 2.0.119", |
| 2177 | "topcoat-font-grammar", |
| 2178 | ] |
| 2179 | |
| 2180 | [[package]] |
| 2181 | name = "topcoat-icon" |
| 2182 | version = "0.5.0" |
| 2183 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2184 | checksum = "156f6c4fa5b119a8d0d9702d4824d998622c4f8b99dc5ef2678f68ff535b3471" |
| 2185 | dependencies = [ |
| 2186 | "topcoat-core", |
| 2187 | "topcoat-view", |
| 2188 | "topcoat-view-macro", |
| 2189 | ] |
| 2190 | |
| 2191 | [[package]] |
| 2192 | name = "topcoat-icon-grammar" |
| 2193 | version = "0.5.0" |
| 2194 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2195 | checksum = "b3224fb4f1e5cc1144e2e69ca16055b4f5a08d5418fe571d495ecf9860467e06" |
| 2196 | dependencies = [ |
| 2197 | "heck", |
| 2198 | "proc-macro2", |
| 2199 | "quote", |
| 2200 | "serde_json", |
| 2201 | "syn 2.0.119", |
| 2202 | "topcoat-core-grammar", |
| 2203 | "topcoat-icon", |
| 2204 | ] |
| 2205 | |
| 2206 | [[package]] |
| 2207 | name = "topcoat-icon-macro" |
| 2208 | version = "0.5.0" |
| 2209 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2210 | checksum = "e826c3722b674ad4d8706ceec9b7727b5885d014ca12f488185fc9c5ac3ecaa0" |
| 2211 | dependencies = [ |
| 2212 | "proc-macro2", |
| 2213 | "quote", |
| 2214 | "syn 2.0.119", |
| 2215 | "topcoat-icon-grammar", |
| 2216 | ] |
| 2217 | |
| 2218 | [[package]] |
| 2219 | name = "topcoat-mail" |
| 2220 | version = "0.5.0" |
| 2221 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2222 | checksum = "63a83a0dddafcbccf9cabbf21feb11a56504808f13a1a9121f3f7a67179801a5" |
| 2223 | dependencies = [ |
| 2224 | "lettre", |
| 2225 | "thiserror", |
| 2226 | "time", |
| 2227 | "topcoat-core", |
| 2228 | "topcoat-router", |
| 2229 | "topcoat-view", |
| 2230 | ] |
| 2231 | |
| 2232 | [[package]] |
| 2233 | name = "topcoat-router" |
| 2234 | version = "0.5.0" |
| 2235 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2236 | checksum = "c603bc95a11da19c050e03b666b8e97676755134a6fcf62050c54f789a66c2ae" |
| 2237 | dependencies = [ |
| 2238 | "bytes", |
| 2239 | "form_urlencoded", |
| 2240 | "futures-core", |
| 2241 | "heck", |
| 2242 | "http", |
| 2243 | "http-body", |
| 2244 | "http-body-util", |
| 2245 | "hyper", |
| 2246 | "hyper-util", |
| 2247 | "inventory", |
| 2248 | "matchit", |
| 2249 | "percent-encoding", |
| 2250 | "ref-cast", |
| 2251 | "serde", |
| 2252 | "serde_json", |
| 2253 | "serde_path_to_error", |
| 2254 | "serde_urlencoded", |
| 2255 | "tokio", |
| 2256 | "topcoat-core", |
| 2257 | "topcoat-view", |
| 2258 | "tower", |
| 2259 | "tower-http", |
| 2260 | ] |
| 2261 | |
| 2262 | [[package]] |
| 2263 | name = "topcoat-router-grammar" |
| 2264 | version = "0.5.0" |
| 2265 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2266 | checksum = "5226f10225bb40861da25175f6a5cad940d1a230faf7c3f4162784ad0f21e0fb" |
| 2267 | dependencies = [ |
| 2268 | "heck", |
| 2269 | "proc-macro2", |
| 2270 | "quote", |
| 2271 | "syn 2.0.119", |
| 2272 | "topcoat-core-grammar", |
| 2273 | ] |
| 2274 | |
| 2275 | [[package]] |
| 2276 | name = "topcoat-router-macro" |
| 2277 | version = "0.5.0" |
| 2278 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2279 | checksum = "3f4bf01509502919a685b6020e59517e8004d89f2209ce1dc861c4cb61641993" |
| 2280 | dependencies = [ |
| 2281 | "quote", |
| 2282 | "syn 2.0.119", |
| 2283 | "topcoat-router-grammar", |
| 2284 | ] |
| 2285 | |
| 2286 | [[package]] |
| 2287 | name = "topcoat-runtime" |
| 2288 | version = "0.5.0" |
| 2289 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2290 | checksum = "7330c6b7ff6e1c18641caa0bb384a983cbe1f4f612acbd4db5ac0383fb3be340" |
| 2291 | dependencies = [ |
| 2292 | "inventory", |
| 2293 | "ref-cast", |
| 2294 | "serde", |
| 2295 | "serde_json", |
| 2296 | "topcoat-asset", |
| 2297 | "topcoat-core", |
| 2298 | "topcoat-router", |
| 2299 | "topcoat-view", |
| 2300 | "uuid", |
| 2301 | ] |
| 2302 | |
| 2303 | [[package]] |
| 2304 | name = "topcoat-runtime-grammar" |
| 2305 | version = "0.5.0" |
| 2306 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2307 | checksum = "2963a9fe67e61a313ade242490c39c7bb17dfddc94e01a3025c024b76d254e56" |
| 2308 | dependencies = [ |
| 2309 | "proc-macro2", |
| 2310 | "quote", |
| 2311 | "serde", |
| 2312 | "serde_json", |
| 2313 | "syn 2.0.119", |
| 2314 | "topcoat-core-grammar", |
| 2315 | "topcoat-runtime", |
| 2316 | "uuid", |
| 2317 | ] |
| 2318 | |
| 2319 | [[package]] |
| 2320 | name = "topcoat-runtime-macro" |
| 2321 | version = "0.5.0" |
| 2322 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2323 | checksum = "40218f9ac81339faabb7522e538bb2038f78e44043e272eec02091130020b86d" |
| 2324 | dependencies = [ |
| 2325 | "quote", |
| 2326 | "syn 2.0.119", |
| 2327 | "topcoat-runtime-grammar", |
| 2328 | ] |
| 2329 | |
| 2330 | [[package]] |
| 2331 | name = "topcoat-session" |
| 2332 | version = "0.5.0" |
| 2333 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2334 | checksum = "8a3d2d4170dfa3580a011efb39e1aa90b46ab5e6f4c727df6c77517d1f90d493" |
| 2335 | dependencies = [ |
| 2336 | "base64 0.22.1", |
| 2337 | "getrandom 0.4.3", |
| 2338 | "sha2 0.11.0", |
| 2339 | "thiserror", |
| 2340 | "tokio", |
| 2341 | "topcoat-cookie", |
| 2342 | "topcoat-core", |
| 2343 | "topcoat-router", |
| 2344 | "web-time", |
| 2345 | ] |
| 2346 | |
| 2347 | [[package]] |
| 2348 | name = "topcoat-view" |
| 2349 | version = "0.5.0" |
| 2350 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2351 | checksum = "6de1bbfc6891d2d2bf76b74b6a4f00747a55ed22b0f562dea7b8e6ced5090074" |
| 2352 | dependencies = [ |
| 2353 | "http", |
| 2354 | "itoa", |
| 2355 | "memchr", |
| 2356 | "smallvec", |
| 2357 | "topcoat-core", |
| 2358 | ] |
| 2359 | |
| 2360 | [[package]] |
| 2361 | name = "topcoat-view-grammar" |
| 2362 | version = "0.5.0" |
| 2363 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2364 | checksum = "bce2fb8e2f1bc098f51226f8832a0536dab730d398af3944d4fb41e59ab9dc62" |
| 2365 | dependencies = [ |
| 2366 | "heck", |
| 2367 | "proc-macro2", |
| 2368 | "quote", |
| 2369 | "syn 2.0.119", |
| 2370 | "topcoat-core-grammar", |
| 2371 | "topcoat-view", |
| 2372 | ] |
| 2373 | |
| 2374 | [[package]] |
| 2375 | name = "topcoat-view-macro" |
| 2376 | version = "0.5.0" |
| 2377 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2378 | checksum = "fcfcb8c4f838dce9d525541b2003b18ef3c252cf7d99a7daf5d4ff0ef5ed64a0" |
| 2379 | dependencies = [ |
| 2380 | "quote", |
| 2381 | "syn 2.0.119", |
| 2382 | "topcoat-view-grammar", |
| 2383 | ] |
| 2384 | |
| 2385 | [[package]] |
| 2386 | name = "tower" |
| 2387 | version = "0.5.3" |
| 2388 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2389 | checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" |
| 2390 | dependencies = [ |
| 2391 | "futures-core", |
| 2392 | "futures-util", |
| 2393 | "pin-project-lite", |
| 2394 | "sync_wrapper", |
| 2395 | "tower-layer", |
| 2396 | "tower-service", |
| 2397 | ] |
| 2398 | |
| 2399 | [[package]] |
| 2400 | name = "tower-http" |
| 2401 | version = "0.7.0" |
| 2402 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2403 | checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" |
| 2404 | dependencies = [ |
| 2405 | "async-compression", |
| 2406 | "bitflags", |
| 2407 | "bytes", |
| 2408 | "futures-core", |
| 2409 | "http", |
| 2410 | "http-body", |
| 2411 | "percent-encoding", |
| 2412 | "pin-project-lite", |
| 2413 | "tokio", |
| 2414 | "tokio-util", |
| 2415 | "tower-layer", |
| 2416 | "tower-service", |
| 2417 | ] |
| 2418 | |
| 2419 | [[package]] |
| 2420 | name = "tower-layer" |
| 2421 | version = "0.3.3" |
| 2422 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2423 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" |
| 2424 | |
| 2425 | [[package]] |
| 2426 | name = "tower-service" |
| 2427 | version = "0.3.3" |
| 2428 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2429 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" |
| 2430 | |
| 2431 | [[package]] |
| 2432 | name = "tracing" |
| 2433 | version = "0.1.44" |
| 2434 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2435 | checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" |
| 2436 | dependencies = [ |
| 2437 | "log", |
| 2438 | "pin-project-lite", |
| 2439 | "tracing-attributes", |
| 2440 | "tracing-core", |
| 2441 | ] |
| 2442 | |
| 2443 | [[package]] |
| 2444 | name = "tracing-attributes" |
| 2445 | version = "0.1.31" |
| 2446 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2447 | checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" |
| 2448 | dependencies = [ |
| 2449 | "proc-macro2", |
| 2450 | "quote", |
| 2451 | "syn 2.0.119", |
| 2452 | ] |
| 2453 | |
| 2454 | [[package]] |
| 2455 | name = "tracing-core" |
| 2456 | version = "0.1.36" |
| 2457 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2458 | checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" |
| 2459 | dependencies = [ |
| 2460 | "once_cell", |
| 2461 | ] |
| 2462 | |
| 2463 | [[package]] |
| 2464 | name = "tungstenite" |
| 2465 | version = "0.29.0" |
| 2466 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2467 | checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8" |
| 2468 | dependencies = [ |
| 2469 | "bytes", |
| 2470 | "data-encoding", |
| 2471 | "http", |
| 2472 | "httparse", |
| 2473 | "log", |
| 2474 | "rand 0.9.5", |
| 2475 | "sha1 0.10.7", |
| 2476 | "thiserror", |
| 2477 | ] |
| 2478 | |
| 2479 | [[package]] |
| 2480 | name = "typenum" |
| 2481 | version = "1.20.1" |
| 2482 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2483 | checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" |
| 2484 | |
| 2485 | [[package]] |
| 2486 | name = "unicode-bidi" |
| 2487 | version = "0.3.18" |
| 2488 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2489 | checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" |
| 2490 | |
| 2491 | [[package]] |
| 2492 | name = "unicode-ident" |
| 2493 | version = "1.0.24" |
| 2494 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2495 | checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" |
| 2496 | |
| 2497 | [[package]] |
| 2498 | name = "unicode-normalization" |
| 2499 | version = "0.1.25" |
| 2500 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2501 | checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" |
| 2502 | dependencies = [ |
| 2503 | "tinyvec", |
| 2504 | ] |
| 2505 | |
| 2506 | [[package]] |
| 2507 | name = "unicode-properties" |
| 2508 | version = "0.1.4" |
| 2509 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2510 | checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d" |
| 2511 | |
| 2512 | [[package]] |
| 2513 | name = "universal-hash" |
| 2514 | version = "0.5.1" |
| 2515 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2516 | checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" |
| 2517 | dependencies = [ |
| 2518 | "crypto-common 0.1.7", |
| 2519 | "subtle", |
| 2520 | ] |
| 2521 | |
| 2522 | [[package]] |
| 2523 | name = "url" |
| 2524 | version = "2.5.8" |
| 2525 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2526 | checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" |
| 2527 | dependencies = [ |
| 2528 | "form_urlencoded", |
| 2529 | "idna", |
| 2530 | "percent-encoding", |
| 2531 | "serde", |
| 2532 | ] |
| 2533 | |
| 2534 | [[package]] |
| 2535 | name = "utf8_iter" |
| 2536 | version = "1.0.4" |
| 2537 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2538 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" |
| 2539 | |
| 2540 | [[package]] |
| 2541 | name = "uuid" |
| 2542 | version = "1.24.0" |
| 2543 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2544 | checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" |
| 2545 | dependencies = [ |
| 2546 | "getrandom 0.4.3", |
| 2547 | "js-sys", |
| 2548 | "serde_core", |
| 2549 | "wasm-bindgen", |
| 2550 | ] |
| 2551 | |
| 2552 | [[package]] |
| 2553 | name = "vcpkg" |
| 2554 | version = "0.2.15" |
| 2555 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2556 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" |
| 2557 | |
| 2558 | [[package]] |
| 2559 | name = "version_check" |
| 2560 | version = "0.9.5" |
| 2561 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2562 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" |
| 2563 | |
| 2564 | [[package]] |
| 2565 | name = "wasi" |
| 2566 | version = "0.11.1+wasi-snapshot-preview1" |
| 2567 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2568 | checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" |
| 2569 | |
| 2570 | [[package]] |
| 2571 | name = "wasip2" |
| 2572 | version = "1.0.4+wasi-0.2.12" |
| 2573 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2574 | checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" |
| 2575 | dependencies = [ |
| 2576 | "wit-bindgen", |
| 2577 | ] |
| 2578 | |
| 2579 | [[package]] |
| 2580 | name = "wasm-bindgen" |
| 2581 | version = "0.2.126" |
| 2582 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2583 | checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" |
| 2584 | dependencies = [ |
| 2585 | "cfg-if", |
| 2586 | "once_cell", |
| 2587 | "rustversion", |
| 2588 | "wasm-bindgen-macro", |
| 2589 | "wasm-bindgen-shared", |
| 2590 | ] |
| 2591 | |
| 2592 | [[package]] |
| 2593 | name = "wasm-bindgen-macro" |
| 2594 | version = "0.2.126" |
| 2595 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2596 | checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" |
| 2597 | dependencies = [ |
| 2598 | "quote", |
| 2599 | "wasm-bindgen-macro-support", |
| 2600 | ] |
| 2601 | |
| 2602 | [[package]] |
| 2603 | name = "wasm-bindgen-macro-support" |
| 2604 | version = "0.2.126" |
| 2605 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2606 | checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" |
| 2607 | dependencies = [ |
| 2608 | "bumpalo", |
| 2609 | "proc-macro2", |
| 2610 | "quote", |
| 2611 | "syn 2.0.119", |
| 2612 | "wasm-bindgen-shared", |
| 2613 | ] |
| 2614 | |
| 2615 | [[package]] |
| 2616 | name = "wasm-bindgen-shared" |
| 2617 | version = "0.2.126" |
| 2618 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2619 | checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" |
| 2620 | dependencies = [ |
| 2621 | "unicode-ident", |
| 2622 | ] |
| 2623 | |
| 2624 | [[package]] |
| 2625 | name = "web-time" |
| 2626 | version = "1.1.0" |
| 2627 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2628 | checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" |
| 2629 | dependencies = [ |
| 2630 | "js-sys", |
| 2631 | "wasm-bindgen", |
| 2632 | ] |
| 2633 | |
| 2634 | [[package]] |
| 2635 | name = "whoami" |
| 2636 | version = "2.1.2" |
| 2637 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2638 | checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d" |
| 2639 | |
| 2640 | [[package]] |
| 2641 | name = "windows-link" |
| 2642 | version = "0.2.1" |
| 2643 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2644 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" |
| 2645 | |
| 2646 | [[package]] |
| 2647 | name = "windows-sys" |
| 2648 | version = "0.61.2" |
| 2649 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2650 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" |
| 2651 | dependencies = [ |
| 2652 | "windows-link", |
| 2653 | ] |
| 2654 | |
| 2655 | [[package]] |
| 2656 | name = "winnow" |
| 2657 | version = "1.0.4" |
| 2658 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2659 | checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" |
| 2660 | dependencies = [ |
| 2661 | "memchr", |
| 2662 | ] |
| 2663 | |
| 2664 | [[package]] |
| 2665 | name = "wit-bindgen" |
| 2666 | version = "0.57.1" |
| 2667 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2668 | checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" |
| 2669 | |
| 2670 | [[package]] |
| 2671 | name = "writeable" |
| 2672 | version = "0.6.3" |
| 2673 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2674 | checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" |
| 2675 | |
| 2676 | [[package]] |
| 2677 | name = "yoke" |
| 2678 | version = "0.8.3" |
| 2679 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2680 | checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" |
| 2681 | dependencies = [ |
| 2682 | "stable_deref_trait", |
| 2683 | "yoke-derive", |
| 2684 | "zerofrom", |
| 2685 | ] |
| 2686 | |
| 2687 | [[package]] |
| 2688 | name = "yoke-derive" |
| 2689 | version = "0.8.2" |
| 2690 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2691 | checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" |
| 2692 | dependencies = [ |
| 2693 | "proc-macro2", |
| 2694 | "quote", |
| 2695 | "syn 2.0.119", |
| 2696 | "synstructure", |
| 2697 | ] |
| 2698 | |
| 2699 | [[package]] |
| 2700 | name = "zerocopy" |
| 2701 | version = "0.8.55" |
| 2702 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2703 | checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb" |
| 2704 | dependencies = [ |
| 2705 | "zerocopy-derive", |
| 2706 | ] |
| 2707 | |
| 2708 | [[package]] |
| 2709 | name = "zerocopy-derive" |
| 2710 | version = "0.8.55" |
| 2711 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2712 | checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb" |
| 2713 | dependencies = [ |
| 2714 | "proc-macro2", |
| 2715 | "quote", |
| 2716 | "syn 2.0.119", |
| 2717 | ] |
| 2718 | |
| 2719 | [[package]] |
| 2720 | name = "zerofrom" |
| 2721 | version = "0.1.8" |
| 2722 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2723 | checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" |
| 2724 | dependencies = [ |
| 2725 | "zerofrom-derive", |
| 2726 | ] |
| 2727 | |
| 2728 | [[package]] |
| 2729 | name = "zerofrom-derive" |
| 2730 | version = "0.1.7" |
| 2731 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2732 | checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" |
| 2733 | dependencies = [ |
| 2734 | "proc-macro2", |
| 2735 | "quote", |
| 2736 | "syn 2.0.119", |
| 2737 | "synstructure", |
| 2738 | ] |
| 2739 | |
| 2740 | [[package]] |
| 2741 | name = "zerotrie" |
| 2742 | version = "0.2.4" |
| 2743 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2744 | checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" |
| 2745 | dependencies = [ |
| 2746 | "displaydoc", |
| 2747 | "yoke", |
| 2748 | "zerofrom", |
| 2749 | ] |
| 2750 | |
| 2751 | [[package]] |
| 2752 | name = "zerovec" |
| 2753 | version = "0.11.6" |
| 2754 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2755 | checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" |
| 2756 | dependencies = [ |
| 2757 | "yoke", |
| 2758 | "zerofrom", |
| 2759 | "zerovec-derive", |
| 2760 | ] |
| 2761 | |
| 2762 | [[package]] |
| 2763 | name = "zerovec-derive" |
| 2764 | version = "0.11.3" |
| 2765 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2766 | checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" |
| 2767 | dependencies = [ |
| 2768 | "proc-macro2", |
| 2769 | "quote", |
| 2770 | "syn 2.0.119", |
| 2771 | ] |
| 2772 | |
| 2773 | [[package]] |
| 2774 | name = "zmij" |
| 2775 | version = "1.0.23" |
| 2776 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 2777 | checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b" |