♻️ Simple & Efficient Gemini-to-HTTP Proxy fuwn.net
proxy gemini-protocol protocol gemini http rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

deps(germ): bump to 0.4.2

Germ version `0.4.2` fixes an issue where valid Gemtext within
pre-formatted blocks would be parsed as their Gemtext counterparts,
opposed to as pre-formatted content.

Fuwn 394e15e7 2dd5ba26

+2702 -3
-1
.gitignore
··· 1 1 # Rust 2 2 target 3 3 **/*.rs.bk 4 - Cargo.lock 5 4 6 5 # CLion 7 6 .idea
+2700
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "actix-codec" 7 + version = "0.5.1" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8" 10 + dependencies = [ 11 + "bitflags 1.3.2", 12 + "bytes", 13 + "futures-core", 14 + "futures-sink", 15 + "memchr", 16 + "pin-project-lite", 17 + "tokio", 18 + "tokio-util", 19 + "tracing", 20 + ] 21 + 22 + [[package]] 23 + name = "actix-http" 24 + version = "3.7.0" 25 + source = "registry+https://github.com/rust-lang/crates.io-index" 26 + checksum = "4eb9843d84c775696c37d9a418bbb01b932629d01870722c0f13eb3f95e2536d" 27 + dependencies = [ 28 + "actix-codec", 29 + "actix-rt", 30 + "actix-service", 31 + "actix-utils", 32 + "ahash", 33 + "base64", 34 + "bitflags 2.5.0", 35 + "brotli", 36 + "bytes", 37 + "bytestring", 38 + "derive_more", 39 + "encoding_rs", 40 + "flate2", 41 + "futures-core", 42 + "h2", 43 + "http", 44 + "httparse", 45 + "httpdate", 46 + "itoa", 47 + "language-tags", 48 + "local-channel", 49 + "mime", 50 + "percent-encoding", 51 + "pin-project-lite", 52 + "rand", 53 + "sha1", 54 + "smallvec", 55 + "tokio", 56 + "tokio-util", 57 + "tracing", 58 + "zstd", 59 + ] 60 + 61 + [[package]] 62 + name = "actix-macros" 63 + version = "0.2.3" 64 + source = "registry+https://github.com/rust-lang/crates.io-index" 65 + checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" 66 + dependencies = [ 67 + "quote", 68 + "syn 1.0.109", 69 + ] 70 + 71 + [[package]] 72 + name = "actix-router" 73 + version = "0.5.3" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" 76 + dependencies = [ 77 + "bytestring", 78 + "cfg-if", 79 + "http", 80 + "regex", 81 + "regex-lite", 82 + "serde", 83 + "tracing", 84 + ] 85 + 86 + [[package]] 87 + name = "actix-rt" 88 + version = "2.8.0" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e" 91 + dependencies = [ 92 + "futures-core", 93 + "tokio", 94 + ] 95 + 96 + [[package]] 97 + name = "actix-server" 98 + version = "2.2.0" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327" 101 + dependencies = [ 102 + "actix-rt", 103 + "actix-service", 104 + "actix-utils", 105 + "futures-core", 106 + "futures-util", 107 + "mio", 108 + "num_cpus", 109 + "socket2 0.4.9", 110 + "tokio", 111 + "tracing", 112 + ] 113 + 114 + [[package]] 115 + name = "actix-service" 116 + version = "2.0.2" 117 + source = "registry+https://github.com/rust-lang/crates.io-index" 118 + checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 119 + dependencies = [ 120 + "futures-core", 121 + "paste", 122 + "pin-project-lite", 123 + ] 124 + 125 + [[package]] 126 + name = "actix-utils" 127 + version = "3.0.1" 128 + source = "registry+https://github.com/rust-lang/crates.io-index" 129 + checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 130 + dependencies = [ 131 + "local-waker", 132 + "pin-project-lite", 133 + ] 134 + 135 + [[package]] 136 + name = "actix-web" 137 + version = "4.7.0" 138 + source = "registry+https://github.com/rust-lang/crates.io-index" 139 + checksum = "5d6316df3fa569627c98b12557a8b6ff0674e5be4bb9b5e4ae2550ddb4964ed6" 140 + dependencies = [ 141 + "actix-codec", 142 + "actix-http", 143 + "actix-macros", 144 + "actix-router", 145 + "actix-rt", 146 + "actix-server", 147 + "actix-service", 148 + "actix-utils", 149 + "actix-web-codegen", 150 + "ahash", 151 + "bytes", 152 + "bytestring", 153 + "cfg-if", 154 + "cookie", 155 + "derive_more", 156 + "encoding_rs", 157 + "futures-core", 158 + "futures-util", 159 + "itoa", 160 + "language-tags", 161 + "log", 162 + "mime", 163 + "once_cell", 164 + "pin-project-lite", 165 + "regex", 166 + "regex-lite", 167 + "serde", 168 + "serde_json", 169 + "serde_urlencoded", 170 + "smallvec", 171 + "socket2 0.5.7", 172 + "time", 173 + "url", 174 + ] 175 + 176 + [[package]] 177 + name = "actix-web-codegen" 178 + version = "4.3.0" 179 + source = "registry+https://github.com/rust-lang/crates.io-index" 180 + checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8" 181 + dependencies = [ 182 + "actix-router", 183 + "proc-macro2", 184 + "quote", 185 + "syn 2.0.66", 186 + ] 187 + 188 + [[package]] 189 + name = "adler" 190 + version = "1.0.2" 191 + source = "registry+https://github.com/rust-lang/crates.io-index" 192 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 193 + 194 + [[package]] 195 + name = "ahash" 196 + version = "0.8.3" 197 + source = "registry+https://github.com/rust-lang/crates.io-index" 198 + checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 199 + dependencies = [ 200 + "cfg-if", 201 + "getrandom", 202 + "once_cell", 203 + "version_check", 204 + ] 205 + 206 + [[package]] 207 + name = "aho-corasick" 208 + version = "1.0.1" 209 + source = "registry+https://github.com/rust-lang/crates.io-index" 210 + checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 211 + dependencies = [ 212 + "memchr", 213 + ] 214 + 215 + [[package]] 216 + name = "alloc-no-stdlib" 217 + version = "2.0.4" 218 + source = "registry+https://github.com/rust-lang/crates.io-index" 219 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 220 + 221 + [[package]] 222 + name = "alloc-stdlib" 223 + version = "0.2.2" 224 + source = "registry+https://github.com/rust-lang/crates.io-index" 225 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 226 + dependencies = [ 227 + "alloc-no-stdlib", 228 + ] 229 + 230 + [[package]] 231 + name = "anyhow" 232 + version = "1.0.86" 233 + source = "registry+https://github.com/rust-lang/crates.io-index" 234 + checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 235 + 236 + [[package]] 237 + name = "arc-swap" 238 + version = "1.6.0" 239 + source = "registry+https://github.com/rust-lang/crates.io-index" 240 + checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 241 + 242 + [[package]] 243 + name = "autocfg" 244 + version = "1.1.0" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 247 + 248 + [[package]] 249 + name = "base64" 250 + version = "0.22.1" 251 + source = "registry+https://github.com/rust-lang/crates.io-index" 252 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 253 + 254 + [[package]] 255 + name = "bitflags" 256 + version = "1.3.2" 257 + source = "registry+https://github.com/rust-lang/crates.io-index" 258 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 259 + 260 + [[package]] 261 + name = "bitflags" 262 + version = "2.5.0" 263 + source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 265 + 266 + [[package]] 267 + name = "block-buffer" 268 + version = "0.10.4" 269 + source = "registry+https://github.com/rust-lang/crates.io-index" 270 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 271 + dependencies = [ 272 + "generic-array", 273 + ] 274 + 275 + [[package]] 276 + name = "brotli" 277 + version = "6.0.0" 278 + source = "registry+https://github.com/rust-lang/crates.io-index" 279 + checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 280 + dependencies = [ 281 + "alloc-no-stdlib", 282 + "alloc-stdlib", 283 + "brotli-decompressor", 284 + ] 285 + 286 + [[package]] 287 + name = "brotli-decompressor" 288 + version = "4.0.1" 289 + source = "registry+https://github.com/rust-lang/crates.io-index" 290 + checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362" 291 + dependencies = [ 292 + "alloc-no-stdlib", 293 + "alloc-stdlib", 294 + ] 295 + 296 + [[package]] 297 + name = "bstr" 298 + version = "1.5.0" 299 + source = "registry+https://github.com/rust-lang/crates.io-index" 300 + checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5" 301 + dependencies = [ 302 + "memchr", 303 + "once_cell", 304 + "regex-automata", 305 + "serde", 306 + ] 307 + 308 + [[package]] 309 + name = "btoi" 310 + version = "0.4.3" 311 + source = "registry+https://github.com/rust-lang/crates.io-index" 312 + checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad" 313 + dependencies = [ 314 + "num-traits", 315 + ] 316 + 317 + [[package]] 318 + name = "bumpalo" 319 + version = "3.12.2" 320 + source = "registry+https://github.com/rust-lang/crates.io-index" 321 + checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" 322 + 323 + [[package]] 324 + name = "bytes" 325 + version = "1.4.0" 326 + source = "registry+https://github.com/rust-lang/crates.io-index" 327 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 328 + 329 + [[package]] 330 + name = "bytestring" 331 + version = "1.3.0" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae" 334 + dependencies = [ 335 + "bytes", 336 + ] 337 + 338 + [[package]] 339 + name = "cc" 340 + version = "1.0.79" 341 + source = "registry+https://github.com/rust-lang/crates.io-index" 342 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 343 + dependencies = [ 344 + "jobserver", 345 + ] 346 + 347 + [[package]] 348 + name = "cfg-if" 349 + version = "1.0.0" 350 + source = "registry+https://github.com/rust-lang/crates.io-index" 351 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 352 + 353 + [[package]] 354 + name = "clru" 355 + version = "0.6.1" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "b8191fa7302e03607ff0e237d4246cc043ff5b3cb9409d995172ba3bea16b807" 358 + 359 + [[package]] 360 + name = "convert_case" 361 + version = "0.4.0" 362 + source = "registry+https://github.com/rust-lang/crates.io-index" 363 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 364 + 365 + [[package]] 366 + name = "cookie" 367 + version = "0.16.2" 368 + source = "registry+https://github.com/rust-lang/crates.io-index" 369 + checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 370 + dependencies = [ 371 + "percent-encoding", 372 + "time", 373 + "version_check", 374 + ] 375 + 376 + [[package]] 377 + name = "cpufeatures" 378 + version = "0.2.7" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 381 + dependencies = [ 382 + "libc", 383 + ] 384 + 385 + [[package]] 386 + name = "crc32fast" 387 + version = "1.3.2" 388 + source = "registry+https://github.com/rust-lang/crates.io-index" 389 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 390 + dependencies = [ 391 + "cfg-if", 392 + ] 393 + 394 + [[package]] 395 + name = "crypto-common" 396 + version = "0.1.6" 397 + source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 399 + dependencies = [ 400 + "generic-array", 401 + "typenum", 402 + ] 403 + 404 + [[package]] 405 + name = "deranged" 406 + version = "0.3.11" 407 + source = "registry+https://github.com/rust-lang/crates.io-index" 408 + checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 409 + dependencies = [ 410 + "powerfmt", 411 + ] 412 + 413 + [[package]] 414 + name = "derive_more" 415 + version = "0.99.17" 416 + source = "registry+https://github.com/rust-lang/crates.io-index" 417 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 418 + dependencies = [ 419 + "convert_case", 420 + "proc-macro2", 421 + "quote", 422 + "rustc_version", 423 + "syn 1.0.109", 424 + ] 425 + 426 + [[package]] 427 + name = "digest" 428 + version = "0.10.6" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 431 + dependencies = [ 432 + "block-buffer", 433 + "crypto-common", 434 + ] 435 + 436 + [[package]] 437 + name = "displaydoc" 438 + version = "0.2.4" 439 + source = "registry+https://github.com/rust-lang/crates.io-index" 440 + checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 441 + dependencies = [ 442 + "proc-macro2", 443 + "quote", 444 + "syn 2.0.66", 445 + ] 446 + 447 + [[package]] 448 + name = "dotenv" 449 + version = "0.15.0" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" 452 + 453 + [[package]] 454 + name = "dunce" 455 + version = "1.0.4" 456 + source = "registry+https://github.com/rust-lang/crates.io-index" 457 + checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" 458 + 459 + [[package]] 460 + name = "encoding_rs" 461 + version = "0.8.32" 462 + source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 464 + dependencies = [ 465 + "cfg-if", 466 + ] 467 + 468 + [[package]] 469 + name = "env_logger" 470 + version = "0.10.0" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" 473 + dependencies = [ 474 + "humantime", 475 + "is-terminal", 476 + "log", 477 + "regex", 478 + "termcolor", 479 + ] 480 + 481 + [[package]] 482 + name = "equivalent" 483 + version = "1.0.1" 484 + source = "registry+https://github.com/rust-lang/crates.io-index" 485 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 486 + 487 + [[package]] 488 + name = "errno" 489 + version = "0.3.9" 490 + source = "registry+https://github.com/rust-lang/crates.io-index" 491 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 492 + dependencies = [ 493 + "libc", 494 + "windows-sys 0.52.0", 495 + ] 496 + 497 + [[package]] 498 + name = "faster-hex" 499 + version = "0.9.0" 500 + source = "registry+https://github.com/rust-lang/crates.io-index" 501 + checksum = "a2a2b11eda1d40935b26cf18f6833c526845ae8c41e58d09af6adeb6f0269183" 502 + 503 + [[package]] 504 + name = "fastrand" 505 + version = "1.9.0" 506 + source = "registry+https://github.com/rust-lang/crates.io-index" 507 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 508 + dependencies = [ 509 + "instant", 510 + ] 511 + 512 + [[package]] 513 + name = "fastrand" 514 + version = "2.1.0" 515 + source = "registry+https://github.com/rust-lang/crates.io-index" 516 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 517 + 518 + [[package]] 519 + name = "filetime" 520 + version = "0.2.21" 521 + source = "registry+https://github.com/rust-lang/crates.io-index" 522 + checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 523 + dependencies = [ 524 + "cfg-if", 525 + "libc", 526 + "redox_syscall 0.2.16", 527 + "windows-sys 0.48.0", 528 + ] 529 + 530 + [[package]] 531 + name = "flate2" 532 + version = "1.0.26" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 535 + dependencies = [ 536 + "crc32fast", 537 + "miniz_oxide", 538 + ] 539 + 540 + [[package]] 541 + name = "fnv" 542 + version = "1.0.7" 543 + source = "registry+https://github.com/rust-lang/crates.io-index" 544 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 545 + 546 + [[package]] 547 + name = "form_urlencoded" 548 + version = "1.2.1" 549 + source = "registry+https://github.com/rust-lang/crates.io-index" 550 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 551 + dependencies = [ 552 + "percent-encoding", 553 + ] 554 + 555 + [[package]] 556 + name = "futures-core" 557 + version = "0.3.28" 558 + source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 560 + 561 + [[package]] 562 + name = "futures-sink" 563 + version = "0.3.28" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 566 + 567 + [[package]] 568 + name = "futures-task" 569 + version = "0.3.28" 570 + source = "registry+https://github.com/rust-lang/crates.io-index" 571 + checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 572 + 573 + [[package]] 574 + name = "futures-util" 575 + version = "0.3.28" 576 + source = "registry+https://github.com/rust-lang/crates.io-index" 577 + checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 578 + dependencies = [ 579 + "futures-core", 580 + "futures-task", 581 + "pin-project-lite", 582 + "pin-utils", 583 + ] 584 + 585 + [[package]] 586 + name = "generic-array" 587 + version = "0.14.7" 588 + source = "registry+https://github.com/rust-lang/crates.io-index" 589 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 590 + dependencies = [ 591 + "typenum", 592 + "version_check", 593 + ] 594 + 595 + [[package]] 596 + name = "germ" 597 + version = "0.4.2" 598 + source = "registry+https://github.com/rust-lang/crates.io-index" 599 + checksum = "d062bb059eb0b362f5de19cf843525724974a201ee1dbf125a6c5e7d9cd18868" 600 + dependencies = [ 601 + "anyhow", 602 + "rustls", 603 + "tokio", 604 + "tokio-rustls", 605 + "url", 606 + ] 607 + 608 + [[package]] 609 + name = "getrandom" 610 + version = "0.2.9" 611 + source = "registry+https://github.com/rust-lang/crates.io-index" 612 + checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 613 + dependencies = [ 614 + "cfg-if", 615 + "libc", 616 + "wasi", 617 + ] 618 + 619 + [[package]] 620 + name = "gix" 621 + version = "0.57.1" 622 + source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "6dd025382892c7b500a9ce1582cd803f9c2ebfe44aff52e9c7f86feee7ced75e" 624 + dependencies = [ 625 + "gix-actor", 626 + "gix-commitgraph", 627 + "gix-config", 628 + "gix-date", 629 + "gix-diff", 630 + "gix-discover", 631 + "gix-features", 632 + "gix-fs", 633 + "gix-glob", 634 + "gix-hash", 635 + "gix-hashtable", 636 + "gix-index", 637 + "gix-lock", 638 + "gix-macros", 639 + "gix-object", 640 + "gix-odb", 641 + "gix-pack", 642 + "gix-path", 643 + "gix-ref", 644 + "gix-refspec", 645 + "gix-revision", 646 + "gix-revwalk", 647 + "gix-sec", 648 + "gix-tempfile", 649 + "gix-trace", 650 + "gix-traverse", 651 + "gix-url", 652 + "gix-utils", 653 + "gix-validate", 654 + "once_cell", 655 + "parking_lot", 656 + "signal-hook", 657 + "smallvec", 658 + "thiserror", 659 + "unicode-normalization", 660 + ] 661 + 662 + [[package]] 663 + name = "gix-actor" 664 + version = "0.29.1" 665 + source = "registry+https://github.com/rust-lang/crates.io-index" 666 + checksum = "da27b5ab4ab5c75ff891dccd48409f8cc53c28a79480f1efdd33184b2dc1d958" 667 + dependencies = [ 668 + "bstr", 669 + "btoi", 670 + "gix-date", 671 + "itoa", 672 + "thiserror", 673 + "winnow", 674 + ] 675 + 676 + [[package]] 677 + name = "gix-bitmap" 678 + version = "0.2.11" 679 + source = "registry+https://github.com/rust-lang/crates.io-index" 680 + checksum = "a371db66cbd4e13f0ed9dc4c0fea712d7276805fccc877f77e96374d317e87ae" 681 + dependencies = [ 682 + "thiserror", 683 + ] 684 + 685 + [[package]] 686 + name = "gix-chunk" 687 + version = "0.4.8" 688 + source = "registry+https://github.com/rust-lang/crates.io-index" 689 + checksum = "45c8751169961ba7640b513c3b24af61aa962c967aaf04116734975cd5af0c52" 690 + dependencies = [ 691 + "thiserror", 692 + ] 693 + 694 + [[package]] 695 + name = "gix-commitgraph" 696 + version = "0.23.2" 697 + source = "registry+https://github.com/rust-lang/crates.io-index" 698 + checksum = "7e8dcbf434951fa477063e05fea59722615af70dc2567377e58c2f7853b010fc" 699 + dependencies = [ 700 + "bstr", 701 + "gix-chunk", 702 + "gix-features", 703 + "gix-hash", 704 + "memmap2", 705 + "thiserror", 706 + ] 707 + 708 + [[package]] 709 + name = "gix-config" 710 + version = "0.33.1" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "367304855b369cadcac4ee5fb5a3a20da9378dd7905106141070b79f85241079" 713 + dependencies = [ 714 + "bstr", 715 + "gix-config-value", 716 + "gix-features", 717 + "gix-glob", 718 + "gix-path", 719 + "gix-ref", 720 + "gix-sec", 721 + "memchr", 722 + "once_cell", 723 + "smallvec", 724 + "thiserror", 725 + "unicode-bom", 726 + "winnow", 727 + ] 728 + 729 + [[package]] 730 + name = "gix-config-value" 731 + version = "0.14.6" 732 + source = "registry+https://github.com/rust-lang/crates.io-index" 733 + checksum = "fbd06203b1a9b33a78c88252a625031b094d9e1b647260070c25b09910c0a804" 734 + dependencies = [ 735 + "bitflags 2.5.0", 736 + "bstr", 737 + "gix-path", 738 + "libc", 739 + "thiserror", 740 + ] 741 + 742 + [[package]] 743 + name = "gix-date" 744 + version = "0.8.6" 745 + source = "registry+https://github.com/rust-lang/crates.io-index" 746 + checksum = "367ee9093b0c2b04fd04c5c7c8b6a1082713534eab537597ae343663a518fa99" 747 + dependencies = [ 748 + "bstr", 749 + "itoa", 750 + "thiserror", 751 + "time", 752 + ] 753 + 754 + [[package]] 755 + name = "gix-diff" 756 + version = "0.39.1" 757 + source = "registry+https://github.com/rust-lang/crates.io-index" 758 + checksum = "fd6a0454f8c42d686f17e7f084057c717c082b7dbb8209729e4e8f26749eb93a" 759 + dependencies = [ 760 + "bstr", 761 + "gix-hash", 762 + "gix-object", 763 + "thiserror", 764 + ] 765 + 766 + [[package]] 767 + name = "gix-discover" 768 + version = "0.28.1" 769 + source = "registry+https://github.com/rust-lang/crates.io-index" 770 + checksum = "b8d7b2896edc3d899d28a646ccc6df729827a6600e546570b2783466404a42d6" 771 + dependencies = [ 772 + "bstr", 773 + "dunce", 774 + "gix-hash", 775 + "gix-path", 776 + "gix-ref", 777 + "gix-sec", 778 + "thiserror", 779 + ] 780 + 781 + [[package]] 782 + name = "gix-features" 783 + version = "0.37.2" 784 + source = "registry+https://github.com/rust-lang/crates.io-index" 785 + checksum = "d50270e8dcc665f30ba0735b17984b9535bdf1e646c76e638e007846164d57af" 786 + dependencies = [ 787 + "crc32fast", 788 + "flate2", 789 + "gix-hash", 790 + "gix-trace", 791 + "libc", 792 + "once_cell", 793 + "prodash", 794 + "sha1_smol", 795 + "thiserror", 796 + "walkdir", 797 + ] 798 + 799 + [[package]] 800 + name = "gix-fs" 801 + version = "0.9.1" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "7555c23a005537434bbfcb8939694e18cad42602961d0de617f8477cc2adecdd" 804 + dependencies = [ 805 + "gix-features", 806 + ] 807 + 808 + [[package]] 809 + name = "gix-glob" 810 + version = "0.15.1" 811 + source = "registry+https://github.com/rust-lang/crates.io-index" 812 + checksum = "ae6232f18b262770e343dcdd461c0011c9b9ae27f0c805e115012aa2b902c1b8" 813 + dependencies = [ 814 + "bitflags 2.5.0", 815 + "bstr", 816 + "gix-features", 817 + "gix-path", 818 + ] 819 + 820 + [[package]] 821 + name = "gix-hash" 822 + version = "0.14.2" 823 + source = "registry+https://github.com/rust-lang/crates.io-index" 824 + checksum = "f93d7df7366121b5018f947a04d37f034717e113dcf9ccd85c34b58e57a74d5e" 825 + dependencies = [ 826 + "faster-hex", 827 + "thiserror", 828 + ] 829 + 830 + [[package]] 831 + name = "gix-hashtable" 832 + version = "0.5.2" 833 + source = "registry+https://github.com/rust-lang/crates.io-index" 834 + checksum = "7ddf80e16f3c19ac06ce415a38b8591993d3f73aede049cb561becb5b3a8e242" 835 + dependencies = [ 836 + "gix-hash", 837 + "hashbrown", 838 + "parking_lot", 839 + ] 840 + 841 + [[package]] 842 + name = "gix-index" 843 + version = "0.28.2" 844 + source = "registry+https://github.com/rust-lang/crates.io-index" 845 + checksum = "9e50e63df6c8d4137f7fb882f27643b3a9756c468a1a2cdbe1ce443010ca8778" 846 + dependencies = [ 847 + "bitflags 2.5.0", 848 + "bstr", 849 + "btoi", 850 + "filetime", 851 + "gix-bitmap", 852 + "gix-features", 853 + "gix-fs", 854 + "gix-hash", 855 + "gix-lock", 856 + "gix-object", 857 + "gix-traverse", 858 + "itoa", 859 + "libc", 860 + "memmap2", 861 + "rustix 0.38.34", 862 + "smallvec", 863 + "thiserror", 864 + ] 865 + 866 + [[package]] 867 + name = "gix-lock" 868 + version = "12.0.1" 869 + source = "registry+https://github.com/rust-lang/crates.io-index" 870 + checksum = "f40a439397f1e230b54cf85d52af87e5ea44cc1e7748379785d3f6d03d802b00" 871 + dependencies = [ 872 + "gix-tempfile", 873 + "gix-utils", 874 + "thiserror", 875 + ] 876 + 877 + [[package]] 878 + name = "gix-macros" 879 + version = "0.1.5" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "999ce923619f88194171a67fb3e6d613653b8d4d6078b529b15a765da0edcc17" 882 + dependencies = [ 883 + "proc-macro2", 884 + "quote", 885 + "syn 2.0.66", 886 + ] 887 + 888 + [[package]] 889 + name = "gix-object" 890 + version = "0.40.1" 891 + source = "registry+https://github.com/rust-lang/crates.io-index" 892 + checksum = "0c89402e8faa41b49fde348665a8f38589e461036475af43b6b70615a6a313a2" 893 + dependencies = [ 894 + "bstr", 895 + "btoi", 896 + "gix-actor", 897 + "gix-date", 898 + "gix-features", 899 + "gix-hash", 900 + "gix-validate", 901 + "itoa", 902 + "smallvec", 903 + "thiserror", 904 + "winnow", 905 + ] 906 + 907 + [[package]] 908 + name = "gix-odb" 909 + version = "0.56.1" 910 + source = "registry+https://github.com/rust-lang/crates.io-index" 911 + checksum = "46ae6da873de41c6c2b73570e82c571b69df5154dcd8f46dfafc6687767c33b1" 912 + dependencies = [ 913 + "arc-swap", 914 + "gix-date", 915 + "gix-features", 916 + "gix-hash", 917 + "gix-object", 918 + "gix-pack", 919 + "gix-path", 920 + "gix-quote", 921 + "parking_lot", 922 + "tempfile", 923 + "thiserror", 924 + ] 925 + 926 + [[package]] 927 + name = "gix-pack" 928 + version = "0.46.1" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "782b4d42790a14072d5c400deda9851f5765f50fe72bca6dece0da1cd6f05a9a" 931 + dependencies = [ 932 + "clru", 933 + "gix-chunk", 934 + "gix-features", 935 + "gix-hash", 936 + "gix-hashtable", 937 + "gix-object", 938 + "gix-path", 939 + "gix-tempfile", 940 + "memmap2", 941 + "parking_lot", 942 + "smallvec", 943 + "thiserror", 944 + ] 945 + 946 + [[package]] 947 + name = "gix-path" 948 + version = "0.10.7" 949 + source = "registry+https://github.com/rust-lang/crates.io-index" 950 + checksum = "23623cf0f475691a6d943f898c4d0b89f5c1a2a64d0f92bce0e0322ee6528783" 951 + dependencies = [ 952 + "bstr", 953 + "gix-trace", 954 + "home", 955 + "once_cell", 956 + "thiserror", 957 + ] 958 + 959 + [[package]] 960 + name = "gix-quote" 961 + version = "0.4.12" 962 + source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "cbff4f9b9ea3fa7a25a70ee62f545143abef624ac6aa5884344e70c8b0a1d9ff" 964 + dependencies = [ 965 + "bstr", 966 + "gix-utils", 967 + "thiserror", 968 + ] 969 + 970 + [[package]] 971 + name = "gix-ref" 972 + version = "0.40.1" 973 + source = "registry+https://github.com/rust-lang/crates.io-index" 974 + checksum = "64d9bd1984638d8f3511a2fcbe84fcedb8a5b5d64df677353620572383f42649" 975 + dependencies = [ 976 + "gix-actor", 977 + "gix-date", 978 + "gix-features", 979 + "gix-fs", 980 + "gix-hash", 981 + "gix-lock", 982 + "gix-object", 983 + "gix-path", 984 + "gix-tempfile", 985 + "gix-validate", 986 + "memmap2", 987 + "thiserror", 988 + "winnow", 989 + ] 990 + 991 + [[package]] 992 + name = "gix-refspec" 993 + version = "0.21.1" 994 + source = "registry+https://github.com/rust-lang/crates.io-index" 995 + checksum = "be219df5092c1735abb2a53eccdf775e945eea6986ee1b6e7a5896dccc0be704" 996 + dependencies = [ 997 + "bstr", 998 + "gix-hash", 999 + "gix-revision", 1000 + "gix-validate", 1001 + "smallvec", 1002 + "thiserror", 1003 + ] 1004 + 1005 + [[package]] 1006 + name = "gix-revision" 1007 + version = "0.25.1" 1008 + source = "registry+https://github.com/rust-lang/crates.io-index" 1009 + checksum = "aa78e1df3633bc937d4db15f8dca2abdb1300ca971c0fabcf9fa97e38cf4cd9f" 1010 + dependencies = [ 1011 + "bstr", 1012 + "gix-date", 1013 + "gix-hash", 1014 + "gix-hashtable", 1015 + "gix-object", 1016 + "gix-revwalk", 1017 + "gix-trace", 1018 + "thiserror", 1019 + ] 1020 + 1021 + [[package]] 1022 + name = "gix-revwalk" 1023 + version = "0.11.1" 1024 + source = "registry+https://github.com/rust-lang/crates.io-index" 1025 + checksum = "702de5fe5c2bbdde80219f3a8b9723eb927466e7ecd187cfd1b45d986408e45f" 1026 + dependencies = [ 1027 + "gix-commitgraph", 1028 + "gix-date", 1029 + "gix-hash", 1030 + "gix-hashtable", 1031 + "gix-object", 1032 + "smallvec", 1033 + "thiserror", 1034 + ] 1035 + 1036 + [[package]] 1037 + name = "gix-sec" 1038 + version = "0.10.6" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "fddc27984a643b20dd03e97790555804f98cf07404e0e552c0ad8133266a79a1" 1041 + dependencies = [ 1042 + "bitflags 2.5.0", 1043 + "gix-path", 1044 + "libc", 1045 + "windows-sys 0.52.0", 1046 + ] 1047 + 1048 + [[package]] 1049 + name = "gix-tempfile" 1050 + version = "12.0.1" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "a8ef376d718b1f5f119b458e21b00fbf576bc9d4e26f8f383d29f5ffe3ba3eaa" 1053 + dependencies = [ 1054 + "gix-fs", 1055 + "libc", 1056 + "once_cell", 1057 + "parking_lot", 1058 + "signal-hook", 1059 + "signal-hook-registry", 1060 + "tempfile", 1061 + ] 1062 + 1063 + [[package]] 1064 + name = "gix-trace" 1065 + version = "0.1.9" 1066 + source = "registry+https://github.com/rust-lang/crates.io-index" 1067 + checksum = "f924267408915fddcd558e3f37295cc7d6a3e50f8bd8b606cee0808c3915157e" 1068 + 1069 + [[package]] 1070 + name = "gix-traverse" 1071 + version = "0.36.2" 1072 + source = "registry+https://github.com/rust-lang/crates.io-index" 1073 + checksum = "65109e445ba7a409b48f34f570a4d7db72eade1dc1bcff81990a490e86c07161" 1074 + dependencies = [ 1075 + "gix-commitgraph", 1076 + "gix-date", 1077 + "gix-hash", 1078 + "gix-hashtable", 1079 + "gix-object", 1080 + "gix-revwalk", 1081 + "smallvec", 1082 + "thiserror", 1083 + ] 1084 + 1085 + [[package]] 1086 + name = "gix-url" 1087 + version = "0.26.1" 1088 + source = "registry+https://github.com/rust-lang/crates.io-index" 1089 + checksum = "8f0f17cceb7552a231d1fec690bc2740c346554e3be6f5d2c41dfa809594dc44" 1090 + dependencies = [ 1091 + "bstr", 1092 + "gix-features", 1093 + "gix-path", 1094 + "home", 1095 + "thiserror", 1096 + "url", 1097 + ] 1098 + 1099 + [[package]] 1100 + name = "gix-utils" 1101 + version = "0.1.12" 1102 + source = "registry+https://github.com/rust-lang/crates.io-index" 1103 + checksum = "35192df7fd0fa112263bad8021e2df7167df4cc2a6e6d15892e1e55621d3d4dc" 1104 + dependencies = [ 1105 + "fastrand 2.1.0", 1106 + "unicode-normalization", 1107 + ] 1108 + 1109 + [[package]] 1110 + name = "gix-validate" 1111 + version = "0.8.5" 1112 + source = "registry+https://github.com/rust-lang/crates.io-index" 1113 + checksum = "82c27dd34a49b1addf193c92070bcbf3beaf6e10f16a78544de6372e146a0acf" 1114 + dependencies = [ 1115 + "bstr", 1116 + "thiserror", 1117 + ] 1118 + 1119 + [[package]] 1120 + name = "h2" 1121 + version = "0.3.26" 1122 + source = "registry+https://github.com/rust-lang/crates.io-index" 1123 + checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 1124 + dependencies = [ 1125 + "bytes", 1126 + "fnv", 1127 + "futures-core", 1128 + "futures-sink", 1129 + "futures-util", 1130 + "http", 1131 + "indexmap", 1132 + "slab", 1133 + "tokio", 1134 + "tokio-util", 1135 + "tracing", 1136 + ] 1137 + 1138 + [[package]] 1139 + name = "hashbrown" 1140 + version = "0.14.5" 1141 + source = "registry+https://github.com/rust-lang/crates.io-index" 1142 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1143 + 1144 + [[package]] 1145 + name = "hermit-abi" 1146 + version = "0.2.6" 1147 + source = "registry+https://github.com/rust-lang/crates.io-index" 1148 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1149 + dependencies = [ 1150 + "libc", 1151 + ] 1152 + 1153 + [[package]] 1154 + name = "hermit-abi" 1155 + version = "0.3.1" 1156 + source = "registry+https://github.com/rust-lang/crates.io-index" 1157 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1158 + 1159 + [[package]] 1160 + name = "home" 1161 + version = "0.5.5" 1162 + source = "registry+https://github.com/rust-lang/crates.io-index" 1163 + checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1164 + dependencies = [ 1165 + "windows-sys 0.48.0", 1166 + ] 1167 + 1168 + [[package]] 1169 + name = "html-escape" 1170 + version = "0.2.13" 1171 + source = "registry+https://github.com/rust-lang/crates.io-index" 1172 + checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476" 1173 + dependencies = [ 1174 + "utf8-width", 1175 + ] 1176 + 1177 + [[package]] 1178 + name = "http" 1179 + version = "0.2.9" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1182 + dependencies = [ 1183 + "bytes", 1184 + "fnv", 1185 + "itoa", 1186 + ] 1187 + 1188 + [[package]] 1189 + name = "httparse" 1190 + version = "1.8.0" 1191 + source = "registry+https://github.com/rust-lang/crates.io-index" 1192 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1193 + 1194 + [[package]] 1195 + name = "httpdate" 1196 + version = "1.0.2" 1197 + source = "registry+https://github.com/rust-lang/crates.io-index" 1198 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1199 + 1200 + [[package]] 1201 + name = "humantime" 1202 + version = "2.1.0" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1205 + 1206 + [[package]] 1207 + name = "icu_collections" 1208 + version = "1.5.0" 1209 + source = "registry+https://github.com/rust-lang/crates.io-index" 1210 + checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 1211 + dependencies = [ 1212 + "displaydoc", 1213 + "yoke", 1214 + "zerofrom", 1215 + "zerovec", 1216 + ] 1217 + 1218 + [[package]] 1219 + name = "icu_locid" 1220 + version = "1.5.0" 1221 + source = "registry+https://github.com/rust-lang/crates.io-index" 1222 + checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 1223 + dependencies = [ 1224 + "displaydoc", 1225 + "litemap", 1226 + "tinystr", 1227 + "writeable", 1228 + "zerovec", 1229 + ] 1230 + 1231 + [[package]] 1232 + name = "icu_locid_transform" 1233 + version = "1.5.0" 1234 + source = "registry+https://github.com/rust-lang/crates.io-index" 1235 + checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 1236 + dependencies = [ 1237 + "displaydoc", 1238 + "icu_locid", 1239 + "icu_locid_transform_data", 1240 + "icu_provider", 1241 + "tinystr", 1242 + "zerovec", 1243 + ] 1244 + 1245 + [[package]] 1246 + name = "icu_locid_transform_data" 1247 + version = "1.5.0" 1248 + source = "registry+https://github.com/rust-lang/crates.io-index" 1249 + checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" 1250 + 1251 + [[package]] 1252 + name = "icu_normalizer" 1253 + version = "1.5.0" 1254 + source = "registry+https://github.com/rust-lang/crates.io-index" 1255 + checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 1256 + dependencies = [ 1257 + "displaydoc", 1258 + "icu_collections", 1259 + "icu_normalizer_data", 1260 + "icu_properties", 1261 + "icu_provider", 1262 + "smallvec", 1263 + "utf16_iter", 1264 + "utf8_iter", 1265 + "write16", 1266 + "zerovec", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "icu_normalizer_data" 1271 + version = "1.5.0" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" 1274 + 1275 + [[package]] 1276 + name = "icu_properties" 1277 + version = "1.5.0" 1278 + source = "registry+https://github.com/rust-lang/crates.io-index" 1279 + checksum = "1f8ac670d7422d7f76b32e17a5db556510825b29ec9154f235977c9caba61036" 1280 + dependencies = [ 1281 + "displaydoc", 1282 + "icu_collections", 1283 + "icu_locid_transform", 1284 + "icu_properties_data", 1285 + "icu_provider", 1286 + "tinystr", 1287 + "zerovec", 1288 + ] 1289 + 1290 + [[package]] 1291 + name = "icu_properties_data" 1292 + version = "1.5.0" 1293 + source = "registry+https://github.com/rust-lang/crates.io-index" 1294 + checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" 1295 + 1296 + [[package]] 1297 + name = "icu_provider" 1298 + version = "1.5.0" 1299 + source = "registry+https://github.com/rust-lang/crates.io-index" 1300 + checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 1301 + dependencies = [ 1302 + "displaydoc", 1303 + "icu_locid", 1304 + "icu_provider_macros", 1305 + "stable_deref_trait", 1306 + "tinystr", 1307 + "writeable", 1308 + "yoke", 1309 + "zerofrom", 1310 + "zerovec", 1311 + ] 1312 + 1313 + [[package]] 1314 + name = "icu_provider_macros" 1315 + version = "1.5.0" 1316 + source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 1318 + dependencies = [ 1319 + "proc-macro2", 1320 + "quote", 1321 + "syn 2.0.66", 1322 + ] 1323 + 1324 + [[package]] 1325 + name = "idna" 1326 + version = "1.0.0" 1327 + source = "registry+https://github.com/rust-lang/crates.io-index" 1328 + checksum = "4716a3a0933a1d01c2f72450e89596eb51dd34ef3c211ccd875acdf1f8fe47ed" 1329 + dependencies = [ 1330 + "icu_normalizer", 1331 + "icu_properties", 1332 + "smallvec", 1333 + "utf8_iter", 1334 + ] 1335 + 1336 + [[package]] 1337 + name = "indexmap" 1338 + version = "2.2.6" 1339 + source = "registry+https://github.com/rust-lang/crates.io-index" 1340 + checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 1341 + dependencies = [ 1342 + "equivalent", 1343 + "hashbrown", 1344 + ] 1345 + 1346 + [[package]] 1347 + name = "instant" 1348 + version = "0.1.12" 1349 + source = "registry+https://github.com/rust-lang/crates.io-index" 1350 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1351 + dependencies = [ 1352 + "cfg-if", 1353 + ] 1354 + 1355 + [[package]] 1356 + name = "io-lifetimes" 1357 + version = "1.0.11" 1358 + source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1360 + dependencies = [ 1361 + "hermit-abi 0.3.1", 1362 + "libc", 1363 + "windows-sys 0.48.0", 1364 + ] 1365 + 1366 + [[package]] 1367 + name = "is-terminal" 1368 + version = "0.4.7" 1369 + source = "registry+https://github.com/rust-lang/crates.io-index" 1370 + checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" 1371 + dependencies = [ 1372 + "hermit-abi 0.3.1", 1373 + "io-lifetimes", 1374 + "rustix 0.37.19", 1375 + "windows-sys 0.48.0", 1376 + ] 1377 + 1378 + [[package]] 1379 + name = "itoa" 1380 + version = "1.0.6" 1381 + source = "registry+https://github.com/rust-lang/crates.io-index" 1382 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1383 + 1384 + [[package]] 1385 + name = "jobserver" 1386 + version = "0.1.26" 1387 + source = "registry+https://github.com/rust-lang/crates.io-index" 1388 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1389 + dependencies = [ 1390 + "libc", 1391 + ] 1392 + 1393 + [[package]] 1394 + name = "js-sys" 1395 + version = "0.3.63" 1396 + source = "registry+https://github.com/rust-lang/crates.io-index" 1397 + checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 1398 + dependencies = [ 1399 + "wasm-bindgen", 1400 + ] 1401 + 1402 + [[package]] 1403 + name = "language-tags" 1404 + version = "0.3.2" 1405 + source = "registry+https://github.com/rust-lang/crates.io-index" 1406 + checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 1407 + 1408 + [[package]] 1409 + name = "libc" 1410 + version = "0.2.155" 1411 + source = "registry+https://github.com/rust-lang/crates.io-index" 1412 + checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 1413 + 1414 + [[package]] 1415 + name = "linux-raw-sys" 1416 + version = "0.3.8" 1417 + source = "registry+https://github.com/rust-lang/crates.io-index" 1418 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1419 + 1420 + [[package]] 1421 + name = "linux-raw-sys" 1422 + version = "0.4.14" 1423 + source = "registry+https://github.com/rust-lang/crates.io-index" 1424 + checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 1425 + 1426 + [[package]] 1427 + name = "litemap" 1428 + version = "0.7.3" 1429 + source = "registry+https://github.com/rust-lang/crates.io-index" 1430 + checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" 1431 + 1432 + [[package]] 1433 + name = "local-channel" 1434 + version = "0.1.3" 1435 + source = "registry+https://github.com/rust-lang/crates.io-index" 1436 + checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" 1437 + dependencies = [ 1438 + "futures-core", 1439 + "futures-sink", 1440 + "futures-util", 1441 + "local-waker", 1442 + ] 1443 + 1444 + [[package]] 1445 + name = "local-waker" 1446 + version = "0.1.3" 1447 + source = "registry+https://github.com/rust-lang/crates.io-index" 1448 + checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" 1449 + 1450 + [[package]] 1451 + name = "lock_api" 1452 + version = "0.4.9" 1453 + source = "registry+https://github.com/rust-lang/crates.io-index" 1454 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1455 + dependencies = [ 1456 + "autocfg", 1457 + "scopeguard", 1458 + ] 1459 + 1460 + [[package]] 1461 + name = "log" 1462 + version = "0.4.21" 1463 + source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 1465 + 1466 + [[package]] 1467 + name = "memchr" 1468 + version = "2.5.0" 1469 + source = "registry+https://github.com/rust-lang/crates.io-index" 1470 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1471 + 1472 + [[package]] 1473 + name = "memmap2" 1474 + version = "0.9.4" 1475 + source = "registry+https://github.com/rust-lang/crates.io-index" 1476 + checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322" 1477 + dependencies = [ 1478 + "libc", 1479 + ] 1480 + 1481 + [[package]] 1482 + name = "mime" 1483 + version = "0.3.17" 1484 + source = "registry+https://github.com/rust-lang/crates.io-index" 1485 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1486 + 1487 + [[package]] 1488 + name = "miniz_oxide" 1489 + version = "0.7.1" 1490 + source = "registry+https://github.com/rust-lang/crates.io-index" 1491 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1492 + dependencies = [ 1493 + "adler", 1494 + ] 1495 + 1496 + [[package]] 1497 + name = "mio" 1498 + version = "0.8.6" 1499 + source = "registry+https://github.com/rust-lang/crates.io-index" 1500 + checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 1501 + dependencies = [ 1502 + "libc", 1503 + "log", 1504 + "wasi", 1505 + "windows-sys 0.45.0", 1506 + ] 1507 + 1508 + [[package]] 1509 + name = "num-conv" 1510 + version = "0.1.0" 1511 + source = "registry+https://github.com/rust-lang/crates.io-index" 1512 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 1513 + 1514 + [[package]] 1515 + name = "num-traits" 1516 + version = "0.2.15" 1517 + source = "registry+https://github.com/rust-lang/crates.io-index" 1518 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1519 + dependencies = [ 1520 + "autocfg", 1521 + ] 1522 + 1523 + [[package]] 1524 + name = "num_cpus" 1525 + version = "1.15.0" 1526 + source = "registry+https://github.com/rust-lang/crates.io-index" 1527 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1528 + dependencies = [ 1529 + "hermit-abi 0.2.6", 1530 + "libc", 1531 + ] 1532 + 1533 + [[package]] 1534 + name = "num_threads" 1535 + version = "0.1.6" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 1538 + dependencies = [ 1539 + "libc", 1540 + ] 1541 + 1542 + [[package]] 1543 + name = "once_cell" 1544 + version = "1.17.1" 1545 + source = "registry+https://github.com/rust-lang/crates.io-index" 1546 + checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 1547 + 1548 + [[package]] 1549 + name = "parking_lot" 1550 + version = "0.12.1" 1551 + source = "registry+https://github.com/rust-lang/crates.io-index" 1552 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1553 + dependencies = [ 1554 + "lock_api", 1555 + "parking_lot_core", 1556 + ] 1557 + 1558 + [[package]] 1559 + name = "parking_lot_core" 1560 + version = "0.9.7" 1561 + source = "registry+https://github.com/rust-lang/crates.io-index" 1562 + checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 1563 + dependencies = [ 1564 + "cfg-if", 1565 + "libc", 1566 + "redox_syscall 0.2.16", 1567 + "smallvec", 1568 + "windows-sys 0.45.0", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "paste" 1573 + version = "1.0.12" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 1576 + 1577 + [[package]] 1578 + name = "percent-encoding" 1579 + version = "2.3.1" 1580 + source = "registry+https://github.com/rust-lang/crates.io-index" 1581 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1582 + 1583 + [[package]] 1584 + name = "pin-project-lite" 1585 + version = "0.2.9" 1586 + source = "registry+https://github.com/rust-lang/crates.io-index" 1587 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 1588 + 1589 + [[package]] 1590 + name = "pin-utils" 1591 + version = "0.1.0" 1592 + source = "registry+https://github.com/rust-lang/crates.io-index" 1593 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1594 + 1595 + [[package]] 1596 + name = "pkg-config" 1597 + version = "0.3.27" 1598 + source = "registry+https://github.com/rust-lang/crates.io-index" 1599 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1600 + 1601 + [[package]] 1602 + name = "powerfmt" 1603 + version = "0.2.0" 1604 + source = "registry+https://github.com/rust-lang/crates.io-index" 1605 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1606 + 1607 + [[package]] 1608 + name = "ppv-lite86" 1609 + version = "0.2.17" 1610 + source = "registry+https://github.com/rust-lang/crates.io-index" 1611 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1612 + 1613 + [[package]] 1614 + name = "pretty_env_logger" 1615 + version = "0.5.0" 1616 + source = "registry+https://github.com/rust-lang/crates.io-index" 1617 + checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c" 1618 + dependencies = [ 1619 + "env_logger", 1620 + "log", 1621 + ] 1622 + 1623 + [[package]] 1624 + name = "proc-macro2" 1625 + version = "1.0.85" 1626 + source = "registry+https://github.com/rust-lang/crates.io-index" 1627 + checksum = "22244ce15aa966053a896d1accb3a6e68469b97c7f33f284b99f0d576879fc23" 1628 + dependencies = [ 1629 + "unicode-ident", 1630 + ] 1631 + 1632 + [[package]] 1633 + name = "prodash" 1634 + version = "28.0.0" 1635 + source = "registry+https://github.com/rust-lang/crates.io-index" 1636 + checksum = "744a264d26b88a6a7e37cbad97953fa233b94d585236310bcbc88474b4092d79" 1637 + 1638 + [[package]] 1639 + name = "quote" 1640 + version = "1.0.36" 1641 + source = "registry+https://github.com/rust-lang/crates.io-index" 1642 + checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1643 + dependencies = [ 1644 + "proc-macro2", 1645 + ] 1646 + 1647 + [[package]] 1648 + name = "rand" 1649 + version = "0.8.5" 1650 + source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1652 + dependencies = [ 1653 + "libc", 1654 + "rand_chacha", 1655 + "rand_core", 1656 + ] 1657 + 1658 + [[package]] 1659 + name = "rand_chacha" 1660 + version = "0.3.1" 1661 + source = "registry+https://github.com/rust-lang/crates.io-index" 1662 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1663 + dependencies = [ 1664 + "ppv-lite86", 1665 + "rand_core", 1666 + ] 1667 + 1668 + [[package]] 1669 + name = "rand_core" 1670 + version = "0.6.4" 1671 + source = "registry+https://github.com/rust-lang/crates.io-index" 1672 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1673 + dependencies = [ 1674 + "getrandom", 1675 + ] 1676 + 1677 + [[package]] 1678 + name = "redox_syscall" 1679 + version = "0.2.16" 1680 + source = "registry+https://github.com/rust-lang/crates.io-index" 1681 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 1682 + dependencies = [ 1683 + "bitflags 1.3.2", 1684 + ] 1685 + 1686 + [[package]] 1687 + name = "redox_syscall" 1688 + version = "0.3.5" 1689 + source = "registry+https://github.com/rust-lang/crates.io-index" 1690 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 1691 + dependencies = [ 1692 + "bitflags 1.3.2", 1693 + ] 1694 + 1695 + [[package]] 1696 + name = "regex" 1697 + version = "1.8.1" 1698 + source = "registry+https://github.com/rust-lang/crates.io-index" 1699 + checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" 1700 + dependencies = [ 1701 + "aho-corasick", 1702 + "memchr", 1703 + "regex-syntax", 1704 + ] 1705 + 1706 + [[package]] 1707 + name = "regex-automata" 1708 + version = "0.1.10" 1709 + source = "registry+https://github.com/rust-lang/crates.io-index" 1710 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1711 + 1712 + [[package]] 1713 + name = "regex-lite" 1714 + version = "0.1.6" 1715 + source = "registry+https://github.com/rust-lang/crates.io-index" 1716 + checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a" 1717 + 1718 + [[package]] 1719 + name = "regex-syntax" 1720 + version = "0.7.1" 1721 + source = "registry+https://github.com/rust-lang/crates.io-index" 1722 + checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" 1723 + 1724 + [[package]] 1725 + name = "ring" 1726 + version = "0.16.20" 1727 + source = "registry+https://github.com/rust-lang/crates.io-index" 1728 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 1729 + dependencies = [ 1730 + "cc", 1731 + "libc", 1732 + "once_cell", 1733 + "spin", 1734 + "untrusted", 1735 + "web-sys", 1736 + "winapi", 1737 + ] 1738 + 1739 + [[package]] 1740 + name = "rustc_version" 1741 + version = "0.4.0" 1742 + source = "registry+https://github.com/rust-lang/crates.io-index" 1743 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1744 + dependencies = [ 1745 + "semver", 1746 + ] 1747 + 1748 + [[package]] 1749 + name = "rustix" 1750 + version = "0.37.19" 1751 + source = "registry+https://github.com/rust-lang/crates.io-index" 1752 + checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 1753 + dependencies = [ 1754 + "bitflags 1.3.2", 1755 + "errno", 1756 + "io-lifetimes", 1757 + "libc", 1758 + "linux-raw-sys 0.3.8", 1759 + "windows-sys 0.48.0", 1760 + ] 1761 + 1762 + [[package]] 1763 + name = "rustix" 1764 + version = "0.38.34" 1765 + source = "registry+https://github.com/rust-lang/crates.io-index" 1766 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 1767 + dependencies = [ 1768 + "bitflags 2.5.0", 1769 + "errno", 1770 + "libc", 1771 + "linux-raw-sys 0.4.14", 1772 + "windows-sys 0.52.0", 1773 + ] 1774 + 1775 + [[package]] 1776 + name = "rustls" 1777 + version = "0.21.1" 1778 + source = "registry+https://github.com/rust-lang/crates.io-index" 1779 + checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" 1780 + dependencies = [ 1781 + "log", 1782 + "ring", 1783 + "rustls-webpki", 1784 + "sct", 1785 + ] 1786 + 1787 + [[package]] 1788 + name = "rustls-webpki" 1789 + version = "0.100.1" 1790 + source = "registry+https://github.com/rust-lang/crates.io-index" 1791 + checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" 1792 + dependencies = [ 1793 + "ring", 1794 + "untrusted", 1795 + ] 1796 + 1797 + [[package]] 1798 + name = "rustversion" 1799 + version = "1.0.17" 1800 + source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1802 + 1803 + [[package]] 1804 + name = "ryu" 1805 + version = "1.0.13" 1806 + source = "registry+https://github.com/rust-lang/crates.io-index" 1807 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 1808 + 1809 + [[package]] 1810 + name = "same-file" 1811 + version = "1.0.6" 1812 + source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1814 + dependencies = [ 1815 + "winapi-util", 1816 + ] 1817 + 1818 + [[package]] 1819 + name = "scopeguard" 1820 + version = "1.1.0" 1821 + source = "registry+https://github.com/rust-lang/crates.io-index" 1822 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 1823 + 1824 + [[package]] 1825 + name = "sct" 1826 + version = "0.7.0" 1827 + source = "registry+https://github.com/rust-lang/crates.io-index" 1828 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 1829 + dependencies = [ 1830 + "ring", 1831 + "untrusted", 1832 + ] 1833 + 1834 + [[package]] 1835 + name = "semver" 1836 + version = "1.0.17" 1837 + source = "registry+https://github.com/rust-lang/crates.io-index" 1838 + checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" 1839 + 1840 + [[package]] 1841 + name = "september" 1842 + version = "0.2.21" 1843 + dependencies = [ 1844 + "actix-web", 1845 + "anyhow", 1846 + "dotenv", 1847 + "germ", 1848 + "html-escape", 1849 + "log", 1850 + "pretty_env_logger", 1851 + "url", 1852 + "vergen", 1853 + ] 1854 + 1855 + [[package]] 1856 + name = "serde" 1857 + version = "1.0.203" 1858 + source = "registry+https://github.com/rust-lang/crates.io-index" 1859 + checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 1860 + dependencies = [ 1861 + "serde_derive", 1862 + ] 1863 + 1864 + [[package]] 1865 + name = "serde_derive" 1866 + version = "1.0.203" 1867 + source = "registry+https://github.com/rust-lang/crates.io-index" 1868 + checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 1869 + dependencies = [ 1870 + "proc-macro2", 1871 + "quote", 1872 + "syn 2.0.66", 1873 + ] 1874 + 1875 + [[package]] 1876 + name = "serde_json" 1877 + version = "1.0.96" 1878 + source = "registry+https://github.com/rust-lang/crates.io-index" 1879 + checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 1880 + dependencies = [ 1881 + "itoa", 1882 + "ryu", 1883 + "serde", 1884 + ] 1885 + 1886 + [[package]] 1887 + name = "serde_urlencoded" 1888 + version = "0.7.1" 1889 + source = "registry+https://github.com/rust-lang/crates.io-index" 1890 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1891 + dependencies = [ 1892 + "form_urlencoded", 1893 + "itoa", 1894 + "ryu", 1895 + "serde", 1896 + ] 1897 + 1898 + [[package]] 1899 + name = "sha1" 1900 + version = "0.10.5" 1901 + source = "registry+https://github.com/rust-lang/crates.io-index" 1902 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 1903 + dependencies = [ 1904 + "cfg-if", 1905 + "cpufeatures", 1906 + "digest", 1907 + ] 1908 + 1909 + [[package]] 1910 + name = "sha1_smol" 1911 + version = "1.0.0" 1912 + source = "registry+https://github.com/rust-lang/crates.io-index" 1913 + checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 1914 + 1915 + [[package]] 1916 + name = "signal-hook" 1917 + version = "0.3.15" 1918 + source = "registry+https://github.com/rust-lang/crates.io-index" 1919 + checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 1920 + dependencies = [ 1921 + "libc", 1922 + "signal-hook-registry", 1923 + ] 1924 + 1925 + [[package]] 1926 + name = "signal-hook-registry" 1927 + version = "1.4.1" 1928 + source = "registry+https://github.com/rust-lang/crates.io-index" 1929 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 1930 + dependencies = [ 1931 + "libc", 1932 + ] 1933 + 1934 + [[package]] 1935 + name = "slab" 1936 + version = "0.4.8" 1937 + source = "registry+https://github.com/rust-lang/crates.io-index" 1938 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 1939 + dependencies = [ 1940 + "autocfg", 1941 + ] 1942 + 1943 + [[package]] 1944 + name = "smallvec" 1945 + version = "1.13.2" 1946 + source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1948 + 1949 + [[package]] 1950 + name = "socket2" 1951 + version = "0.4.9" 1952 + source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 1954 + dependencies = [ 1955 + "libc", 1956 + "winapi", 1957 + ] 1958 + 1959 + [[package]] 1960 + name = "socket2" 1961 + version = "0.5.7" 1962 + source = "registry+https://github.com/rust-lang/crates.io-index" 1963 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1964 + dependencies = [ 1965 + "libc", 1966 + "windows-sys 0.52.0", 1967 + ] 1968 + 1969 + [[package]] 1970 + name = "spin" 1971 + version = "0.5.2" 1972 + source = "registry+https://github.com/rust-lang/crates.io-index" 1973 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 1974 + 1975 + [[package]] 1976 + name = "stable_deref_trait" 1977 + version = "1.2.0" 1978 + source = "registry+https://github.com/rust-lang/crates.io-index" 1979 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1980 + 1981 + [[package]] 1982 + name = "syn" 1983 + version = "1.0.109" 1984 + source = "registry+https://github.com/rust-lang/crates.io-index" 1985 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1986 + dependencies = [ 1987 + "proc-macro2", 1988 + "quote", 1989 + "unicode-ident", 1990 + ] 1991 + 1992 + [[package]] 1993 + name = "syn" 1994 + version = "2.0.66" 1995 + source = "registry+https://github.com/rust-lang/crates.io-index" 1996 + checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5" 1997 + dependencies = [ 1998 + "proc-macro2", 1999 + "quote", 2000 + "unicode-ident", 2001 + ] 2002 + 2003 + [[package]] 2004 + name = "synstructure" 2005 + version = "0.13.1" 2006 + source = "registry+https://github.com/rust-lang/crates.io-index" 2007 + checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 2008 + dependencies = [ 2009 + "proc-macro2", 2010 + "quote", 2011 + "syn 2.0.66", 2012 + ] 2013 + 2014 + [[package]] 2015 + name = "tempfile" 2016 + version = "3.5.0" 2017 + source = "registry+https://github.com/rust-lang/crates.io-index" 2018 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 2019 + dependencies = [ 2020 + "cfg-if", 2021 + "fastrand 1.9.0", 2022 + "redox_syscall 0.3.5", 2023 + "rustix 0.37.19", 2024 + "windows-sys 0.45.0", 2025 + ] 2026 + 2027 + [[package]] 2028 + name = "termcolor" 2029 + version = "1.2.0" 2030 + source = "registry+https://github.com/rust-lang/crates.io-index" 2031 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 2032 + dependencies = [ 2033 + "winapi-util", 2034 + ] 2035 + 2036 + [[package]] 2037 + name = "thiserror" 2038 + version = "1.0.40" 2039 + source = "registry+https://github.com/rust-lang/crates.io-index" 2040 + checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 2041 + dependencies = [ 2042 + "thiserror-impl", 2043 + ] 2044 + 2045 + [[package]] 2046 + name = "thiserror-impl" 2047 + version = "1.0.40" 2048 + source = "registry+https://github.com/rust-lang/crates.io-index" 2049 + checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 2050 + dependencies = [ 2051 + "proc-macro2", 2052 + "quote", 2053 + "syn 2.0.66", 2054 + ] 2055 + 2056 + [[package]] 2057 + name = "time" 2058 + version = "0.3.36" 2059 + source = "registry+https://github.com/rust-lang/crates.io-index" 2060 + checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 2061 + dependencies = [ 2062 + "deranged", 2063 + "itoa", 2064 + "libc", 2065 + "num-conv", 2066 + "num_threads", 2067 + "powerfmt", 2068 + "serde", 2069 + "time-core", 2070 + "time-macros", 2071 + ] 2072 + 2073 + [[package]] 2074 + name = "time-core" 2075 + version = "0.1.2" 2076 + source = "registry+https://github.com/rust-lang/crates.io-index" 2077 + checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2078 + 2079 + [[package]] 2080 + name = "time-macros" 2081 + version = "0.2.18" 2082 + source = "registry+https://github.com/rust-lang/crates.io-index" 2083 + checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 2084 + dependencies = [ 2085 + "num-conv", 2086 + "time-core", 2087 + ] 2088 + 2089 + [[package]] 2090 + name = "tinystr" 2091 + version = "0.7.6" 2092 + source = "registry+https://github.com/rust-lang/crates.io-index" 2093 + checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 2094 + dependencies = [ 2095 + "displaydoc", 2096 + "zerovec", 2097 + ] 2098 + 2099 + [[package]] 2100 + name = "tinyvec" 2101 + version = "1.6.0" 2102 + source = "registry+https://github.com/rust-lang/crates.io-index" 2103 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2104 + dependencies = [ 2105 + "tinyvec_macros", 2106 + ] 2107 + 2108 + [[package]] 2109 + name = "tinyvec_macros" 2110 + version = "0.1.1" 2111 + source = "registry+https://github.com/rust-lang/crates.io-index" 2112 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2113 + 2114 + [[package]] 2115 + name = "tokio" 2116 + version = "1.28.1" 2117 + source = "registry+https://github.com/rust-lang/crates.io-index" 2118 + checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105" 2119 + dependencies = [ 2120 + "autocfg", 2121 + "bytes", 2122 + "libc", 2123 + "mio", 2124 + "num_cpus", 2125 + "parking_lot", 2126 + "pin-project-lite", 2127 + "signal-hook-registry", 2128 + "socket2 0.4.9", 2129 + "tokio-macros", 2130 + "windows-sys 0.48.0", 2131 + ] 2132 + 2133 + [[package]] 2134 + name = "tokio-macros" 2135 + version = "2.1.0" 2136 + source = "registry+https://github.com/rust-lang/crates.io-index" 2137 + checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 2138 + dependencies = [ 2139 + "proc-macro2", 2140 + "quote", 2141 + "syn 2.0.66", 2142 + ] 2143 + 2144 + [[package]] 2145 + name = "tokio-rustls" 2146 + version = "0.24.1" 2147 + source = "registry+https://github.com/rust-lang/crates.io-index" 2148 + checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 2149 + dependencies = [ 2150 + "rustls", 2151 + "tokio", 2152 + ] 2153 + 2154 + [[package]] 2155 + name = "tokio-util" 2156 + version = "0.7.8" 2157 + source = "registry+https://github.com/rust-lang/crates.io-index" 2158 + checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 2159 + dependencies = [ 2160 + "bytes", 2161 + "futures-core", 2162 + "futures-sink", 2163 + "pin-project-lite", 2164 + "tokio", 2165 + "tracing", 2166 + ] 2167 + 2168 + [[package]] 2169 + name = "tracing" 2170 + version = "0.1.37" 2171 + source = "registry+https://github.com/rust-lang/crates.io-index" 2172 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 2173 + dependencies = [ 2174 + "cfg-if", 2175 + "log", 2176 + "pin-project-lite", 2177 + "tracing-core", 2178 + ] 2179 + 2180 + [[package]] 2181 + name = "tracing-core" 2182 + version = "0.1.31" 2183 + source = "registry+https://github.com/rust-lang/crates.io-index" 2184 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 2185 + dependencies = [ 2186 + "once_cell", 2187 + ] 2188 + 2189 + [[package]] 2190 + name = "typenum" 2191 + version = "1.16.0" 2192 + source = "registry+https://github.com/rust-lang/crates.io-index" 2193 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 2194 + 2195 + [[package]] 2196 + name = "unicode-bom" 2197 + version = "2.0.2" 2198 + source = "registry+https://github.com/rust-lang/crates.io-index" 2199 + checksum = "98e90c70c9f0d4d1ee6d0a7d04aa06cb9bbd53d8cfbdd62a0269a7c2eb640552" 2200 + 2201 + [[package]] 2202 + name = "unicode-ident" 2203 + version = "1.0.8" 2204 + source = "registry+https://github.com/rust-lang/crates.io-index" 2205 + checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" 2206 + 2207 + [[package]] 2208 + name = "unicode-normalization" 2209 + version = "0.1.22" 2210 + source = "registry+https://github.com/rust-lang/crates.io-index" 2211 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2212 + dependencies = [ 2213 + "tinyvec", 2214 + ] 2215 + 2216 + [[package]] 2217 + name = "untrusted" 2218 + version = "0.7.1" 2219 + source = "registry+https://github.com/rust-lang/crates.io-index" 2220 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 2221 + 2222 + [[package]] 2223 + name = "url" 2224 + version = "2.5.1" 2225 + source = "registry+https://github.com/rust-lang/crates.io-index" 2226 + checksum = "f7c25da092f0a868cdf09e8674cd3b7ef3a7d92a24253e663a2fb85e2496de56" 2227 + dependencies = [ 2228 + "form_urlencoded", 2229 + "idna", 2230 + "percent-encoding", 2231 + ] 2232 + 2233 + [[package]] 2234 + name = "utf16_iter" 2235 + version = "1.0.5" 2236 + source = "registry+https://github.com/rust-lang/crates.io-index" 2237 + checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 2238 + 2239 + [[package]] 2240 + name = "utf8-width" 2241 + version = "0.1.7" 2242 + source = "registry+https://github.com/rust-lang/crates.io-index" 2243 + checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" 2244 + 2245 + [[package]] 2246 + name = "utf8_iter" 2247 + version = "1.0.4" 2248 + source = "registry+https://github.com/rust-lang/crates.io-index" 2249 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2250 + 2251 + [[package]] 2252 + name = "vergen" 2253 + version = "8.3.1" 2254 + source = "registry+https://github.com/rust-lang/crates.io-index" 2255 + checksum = "e27d6bdd219887a9eadd19e1c34f32e47fa332301184935c6d9bca26f3cca525" 2256 + dependencies = [ 2257 + "anyhow", 2258 + "cfg-if", 2259 + "gix", 2260 + "rustversion", 2261 + "time", 2262 + ] 2263 + 2264 + [[package]] 2265 + name = "version_check" 2266 + version = "0.9.4" 2267 + source = "registry+https://github.com/rust-lang/crates.io-index" 2268 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2269 + 2270 + [[package]] 2271 + name = "walkdir" 2272 + version = "2.3.3" 2273 + source = "registry+https://github.com/rust-lang/crates.io-index" 2274 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 2275 + dependencies = [ 2276 + "same-file", 2277 + "winapi-util", 2278 + ] 2279 + 2280 + [[package]] 2281 + name = "wasi" 2282 + version = "0.11.0+wasi-snapshot-preview1" 2283 + source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2285 + 2286 + [[package]] 2287 + name = "wasm-bindgen" 2288 + version = "0.2.86" 2289 + source = "registry+https://github.com/rust-lang/crates.io-index" 2290 + checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 2291 + dependencies = [ 2292 + "cfg-if", 2293 + "wasm-bindgen-macro", 2294 + ] 2295 + 2296 + [[package]] 2297 + name = "wasm-bindgen-backend" 2298 + version = "0.2.86" 2299 + source = "registry+https://github.com/rust-lang/crates.io-index" 2300 + checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 2301 + dependencies = [ 2302 + "bumpalo", 2303 + "log", 2304 + "once_cell", 2305 + "proc-macro2", 2306 + "quote", 2307 + "syn 2.0.66", 2308 + "wasm-bindgen-shared", 2309 + ] 2310 + 2311 + [[package]] 2312 + name = "wasm-bindgen-macro" 2313 + version = "0.2.86" 2314 + source = "registry+https://github.com/rust-lang/crates.io-index" 2315 + checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 2316 + dependencies = [ 2317 + "quote", 2318 + "wasm-bindgen-macro-support", 2319 + ] 2320 + 2321 + [[package]] 2322 + name = "wasm-bindgen-macro-support" 2323 + version = "0.2.86" 2324 + source = "registry+https://github.com/rust-lang/crates.io-index" 2325 + checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 2326 + dependencies = [ 2327 + "proc-macro2", 2328 + "quote", 2329 + "syn 2.0.66", 2330 + "wasm-bindgen-backend", 2331 + "wasm-bindgen-shared", 2332 + ] 2333 + 2334 + [[package]] 2335 + name = "wasm-bindgen-shared" 2336 + version = "0.2.86" 2337 + source = "registry+https://github.com/rust-lang/crates.io-index" 2338 + checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 2339 + 2340 + [[package]] 2341 + name = "web-sys" 2342 + version = "0.3.63" 2343 + source = "registry+https://github.com/rust-lang/crates.io-index" 2344 + checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" 2345 + dependencies = [ 2346 + "js-sys", 2347 + "wasm-bindgen", 2348 + ] 2349 + 2350 + [[package]] 2351 + name = "winapi" 2352 + version = "0.3.9" 2353 + source = "registry+https://github.com/rust-lang/crates.io-index" 2354 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2355 + dependencies = [ 2356 + "winapi-i686-pc-windows-gnu", 2357 + "winapi-x86_64-pc-windows-gnu", 2358 + ] 2359 + 2360 + [[package]] 2361 + name = "winapi-i686-pc-windows-gnu" 2362 + version = "0.4.0" 2363 + source = "registry+https://github.com/rust-lang/crates.io-index" 2364 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2365 + 2366 + [[package]] 2367 + name = "winapi-util" 2368 + version = "0.1.5" 2369 + source = "registry+https://github.com/rust-lang/crates.io-index" 2370 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 2371 + dependencies = [ 2372 + "winapi", 2373 + ] 2374 + 2375 + [[package]] 2376 + name = "winapi-x86_64-pc-windows-gnu" 2377 + version = "0.4.0" 2378 + source = "registry+https://github.com/rust-lang/crates.io-index" 2379 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2380 + 2381 + [[package]] 2382 + name = "windows-sys" 2383 + version = "0.45.0" 2384 + source = "registry+https://github.com/rust-lang/crates.io-index" 2385 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 2386 + dependencies = [ 2387 + "windows-targets 0.42.2", 2388 + ] 2389 + 2390 + [[package]] 2391 + name = "windows-sys" 2392 + version = "0.48.0" 2393 + source = "registry+https://github.com/rust-lang/crates.io-index" 2394 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2395 + dependencies = [ 2396 + "windows-targets 0.48.0", 2397 + ] 2398 + 2399 + [[package]] 2400 + name = "windows-sys" 2401 + version = "0.52.0" 2402 + source = "registry+https://github.com/rust-lang/crates.io-index" 2403 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2404 + dependencies = [ 2405 + "windows-targets 0.52.5", 2406 + ] 2407 + 2408 + [[package]] 2409 + name = "windows-targets" 2410 + version = "0.42.2" 2411 + source = "registry+https://github.com/rust-lang/crates.io-index" 2412 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 2413 + dependencies = [ 2414 + "windows_aarch64_gnullvm 0.42.2", 2415 + "windows_aarch64_msvc 0.42.2", 2416 + "windows_i686_gnu 0.42.2", 2417 + "windows_i686_msvc 0.42.2", 2418 + "windows_x86_64_gnu 0.42.2", 2419 + "windows_x86_64_gnullvm 0.42.2", 2420 + "windows_x86_64_msvc 0.42.2", 2421 + ] 2422 + 2423 + [[package]] 2424 + name = "windows-targets" 2425 + version = "0.48.0" 2426 + source = "registry+https://github.com/rust-lang/crates.io-index" 2427 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 2428 + dependencies = [ 2429 + "windows_aarch64_gnullvm 0.48.0", 2430 + "windows_aarch64_msvc 0.48.0", 2431 + "windows_i686_gnu 0.48.0", 2432 + "windows_i686_msvc 0.48.0", 2433 + "windows_x86_64_gnu 0.48.0", 2434 + "windows_x86_64_gnullvm 0.48.0", 2435 + "windows_x86_64_msvc 0.48.0", 2436 + ] 2437 + 2438 + [[package]] 2439 + name = "windows-targets" 2440 + version = "0.52.5" 2441 + source = "registry+https://github.com/rust-lang/crates.io-index" 2442 + checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 2443 + dependencies = [ 2444 + "windows_aarch64_gnullvm 0.52.5", 2445 + "windows_aarch64_msvc 0.52.5", 2446 + "windows_i686_gnu 0.52.5", 2447 + "windows_i686_gnullvm", 2448 + "windows_i686_msvc 0.52.5", 2449 + "windows_x86_64_gnu 0.52.5", 2450 + "windows_x86_64_gnullvm 0.52.5", 2451 + "windows_x86_64_msvc 0.52.5", 2452 + ] 2453 + 2454 + [[package]] 2455 + name = "windows_aarch64_gnullvm" 2456 + version = "0.42.2" 2457 + source = "registry+https://github.com/rust-lang/crates.io-index" 2458 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 2459 + 2460 + [[package]] 2461 + name = "windows_aarch64_gnullvm" 2462 + version = "0.48.0" 2463 + source = "registry+https://github.com/rust-lang/crates.io-index" 2464 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 2465 + 2466 + [[package]] 2467 + name = "windows_aarch64_gnullvm" 2468 + version = "0.52.5" 2469 + source = "registry+https://github.com/rust-lang/crates.io-index" 2470 + checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 2471 + 2472 + [[package]] 2473 + name = "windows_aarch64_msvc" 2474 + version = "0.42.2" 2475 + source = "registry+https://github.com/rust-lang/crates.io-index" 2476 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 2477 + 2478 + [[package]] 2479 + name = "windows_aarch64_msvc" 2480 + version = "0.48.0" 2481 + source = "registry+https://github.com/rust-lang/crates.io-index" 2482 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 2483 + 2484 + [[package]] 2485 + name = "windows_aarch64_msvc" 2486 + version = "0.52.5" 2487 + source = "registry+https://github.com/rust-lang/crates.io-index" 2488 + checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 2489 + 2490 + [[package]] 2491 + name = "windows_i686_gnu" 2492 + version = "0.42.2" 2493 + source = "registry+https://github.com/rust-lang/crates.io-index" 2494 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 2495 + 2496 + [[package]] 2497 + name = "windows_i686_gnu" 2498 + version = "0.48.0" 2499 + source = "registry+https://github.com/rust-lang/crates.io-index" 2500 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 2501 + 2502 + [[package]] 2503 + name = "windows_i686_gnu" 2504 + version = "0.52.5" 2505 + source = "registry+https://github.com/rust-lang/crates.io-index" 2506 + checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 2507 + 2508 + [[package]] 2509 + name = "windows_i686_gnullvm" 2510 + version = "0.52.5" 2511 + source = "registry+https://github.com/rust-lang/crates.io-index" 2512 + checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 2513 + 2514 + [[package]] 2515 + name = "windows_i686_msvc" 2516 + version = "0.42.2" 2517 + source = "registry+https://github.com/rust-lang/crates.io-index" 2518 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 2519 + 2520 + [[package]] 2521 + name = "windows_i686_msvc" 2522 + version = "0.48.0" 2523 + source = "registry+https://github.com/rust-lang/crates.io-index" 2524 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 2525 + 2526 + [[package]] 2527 + name = "windows_i686_msvc" 2528 + version = "0.52.5" 2529 + source = "registry+https://github.com/rust-lang/crates.io-index" 2530 + checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 2531 + 2532 + [[package]] 2533 + name = "windows_x86_64_gnu" 2534 + version = "0.42.2" 2535 + source = "registry+https://github.com/rust-lang/crates.io-index" 2536 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 2537 + 2538 + [[package]] 2539 + name = "windows_x86_64_gnu" 2540 + version = "0.48.0" 2541 + source = "registry+https://github.com/rust-lang/crates.io-index" 2542 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 2543 + 2544 + [[package]] 2545 + name = "windows_x86_64_gnu" 2546 + version = "0.52.5" 2547 + source = "registry+https://github.com/rust-lang/crates.io-index" 2548 + checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 2549 + 2550 + [[package]] 2551 + name = "windows_x86_64_gnullvm" 2552 + version = "0.42.2" 2553 + source = "registry+https://github.com/rust-lang/crates.io-index" 2554 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 2555 + 2556 + [[package]] 2557 + name = "windows_x86_64_gnullvm" 2558 + version = "0.48.0" 2559 + source = "registry+https://github.com/rust-lang/crates.io-index" 2560 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 2561 + 2562 + [[package]] 2563 + name = "windows_x86_64_gnullvm" 2564 + version = "0.52.5" 2565 + source = "registry+https://github.com/rust-lang/crates.io-index" 2566 + checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 2567 + 2568 + [[package]] 2569 + name = "windows_x86_64_msvc" 2570 + version = "0.42.2" 2571 + source = "registry+https://github.com/rust-lang/crates.io-index" 2572 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 2573 + 2574 + [[package]] 2575 + name = "windows_x86_64_msvc" 2576 + version = "0.48.0" 2577 + source = "registry+https://github.com/rust-lang/crates.io-index" 2578 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 2579 + 2580 + [[package]] 2581 + name = "windows_x86_64_msvc" 2582 + version = "0.52.5" 2583 + source = "registry+https://github.com/rust-lang/crates.io-index" 2584 + checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 2585 + 2586 + [[package]] 2587 + name = "winnow" 2588 + version = "0.5.40" 2589 + source = "registry+https://github.com/rust-lang/crates.io-index" 2590 + checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 2591 + dependencies = [ 2592 + "memchr", 2593 + ] 2594 + 2595 + [[package]] 2596 + name = "write16" 2597 + version = "1.0.0" 2598 + source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 2600 + 2601 + [[package]] 2602 + name = "writeable" 2603 + version = "0.5.5" 2604 + source = "registry+https://github.com/rust-lang/crates.io-index" 2605 + checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 2606 + 2607 + [[package]] 2608 + name = "yoke" 2609 + version = "0.7.4" 2610 + source = "registry+https://github.com/rust-lang/crates.io-index" 2611 + checksum = "6c5b1314b079b0930c31e3af543d8ee1757b1951ae1e1565ec704403a7240ca5" 2612 + dependencies = [ 2613 + "serde", 2614 + "stable_deref_trait", 2615 + "yoke-derive", 2616 + "zerofrom", 2617 + ] 2618 + 2619 + [[package]] 2620 + name = "yoke-derive" 2621 + version = "0.7.4" 2622 + source = "registry+https://github.com/rust-lang/crates.io-index" 2623 + checksum = "28cc31741b18cb6f1d5ff12f5b7523e3d6eb0852bbbad19d73905511d9849b95" 2624 + dependencies = [ 2625 + "proc-macro2", 2626 + "quote", 2627 + "syn 2.0.66", 2628 + "synstructure", 2629 + ] 2630 + 2631 + [[package]] 2632 + name = "zerofrom" 2633 + version = "0.1.4" 2634 + source = "registry+https://github.com/rust-lang/crates.io-index" 2635 + checksum = "91ec111ce797d0e0784a1116d0ddcdbea84322cd79e5d5ad173daeba4f93ab55" 2636 + dependencies = [ 2637 + "zerofrom-derive", 2638 + ] 2639 + 2640 + [[package]] 2641 + name = "zerofrom-derive" 2642 + version = "0.1.4" 2643 + source = "registry+https://github.com/rust-lang/crates.io-index" 2644 + checksum = "0ea7b4a3637ea8669cedf0f1fd5c286a17f3de97b8dd5a70a6c167a1730e63a5" 2645 + dependencies = [ 2646 + "proc-macro2", 2647 + "quote", 2648 + "syn 2.0.66", 2649 + "synstructure", 2650 + ] 2651 + 2652 + [[package]] 2653 + name = "zerovec" 2654 + version = "0.10.2" 2655 + source = "registry+https://github.com/rust-lang/crates.io-index" 2656 + checksum = "bb2cc8827d6c0994478a15c53f374f46fbd41bea663d809b14744bc42e6b109c" 2657 + dependencies = [ 2658 + "yoke", 2659 + "zerofrom", 2660 + "zerovec-derive", 2661 + ] 2662 + 2663 + [[package]] 2664 + name = "zerovec-derive" 2665 + version = "0.10.2" 2666 + source = "registry+https://github.com/rust-lang/crates.io-index" 2667 + checksum = "97cf56601ee5052b4417d90c8755c6683473c926039908196cf35d99f893ebe7" 2668 + dependencies = [ 2669 + "proc-macro2", 2670 + "quote", 2671 + "syn 2.0.66", 2672 + ] 2673 + 2674 + [[package]] 2675 + name = "zstd" 2676 + version = "0.13.1" 2677 + source = "registry+https://github.com/rust-lang/crates.io-index" 2678 + checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a" 2679 + dependencies = [ 2680 + "zstd-safe", 2681 + ] 2682 + 2683 + [[package]] 2684 + name = "zstd-safe" 2685 + version = "7.1.0" 2686 + source = "registry+https://github.com/rust-lang/crates.io-index" 2687 + checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a" 2688 + dependencies = [ 2689 + "zstd-sys", 2690 + ] 2691 + 2692 + [[package]] 2693 + name = "zstd-sys" 2694 + version = "2.0.10+zstd.1.5.6" 2695 + source = "registry+https://github.com/rust-lang/crates.io-index" 2696 + checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" 2697 + dependencies = [ 2698 + "cc", 2699 + "pkg-config", 2700 + ]
+2 -2
Cargo.toml
··· 2 2 3 3 [package] 4 4 name = "september" 5 - version = "0.2.20" 5 + version = "0.2.21" 6 6 authors = ["Fuwn <contact@fuwn.me>"] 7 7 edition = "2021" 8 8 description = "A simple and efficient Gemini-to-HTTP proxy." ··· 21 21 22 22 [dependencies] 23 23 # Gemini 24 - germ = { version = "0.4.1", features = ["ast", "meta"] } 24 + germ = { version = "0.4.2", features = ["ast", "meta"] } 25 25 26 26 # HTTP 27 27 actix-web = "4.7.0"