Merge pull request #224366 from martinetd/ankisyncd-rs

ankisyncd-rs: add package for anki-sync-server-rs

authored by

Atemu and committed by
GitHub
712caf8e d5390aa4

+4058 -75
+4
nixos/doc/manual/release-notes/rl-2311.section.md
··· 84 84 85 85 - `services.fail2ban.jails` can now be configured with attribute sets defining settings and filters instead of lines. The stringed options `daemonConfig` and `extraSettings` have respectively been replaced by `daemonSettings` and `jails.DEFAULT.settings` which use attribute sets. 86 86 87 + - The module [services.ankisyncd](#opt-services.ankisyncd.package) has been switched to [anki-sync-server-rs](https://github.com/ankicommunity/anki-sync-server-rs) from the old python version, which was difficult to update, had not been updated in a while, and did not support recent versions of anki. 88 + Unfortunately all servers supporting new clients (newer version of anki-sync-server, anki's built in sync server and this new rust package) do not support the older sync protocol that was used in the old server, so such old clients will also need updating and in particular the anki package in nixpkgs is also being updated in this release. 89 + The module update takes care of the new config syntax and the data itself (user login and cards) are compatible, so users of the module will be able to just log in again after updating both client and server without any extra action. 90 + 87 91 - `services.nginx` gained a `defaultListen` option at server-level with support for PROXY protocol listeners, also `proxyProtocol` is now exposed in `services.nginx.virtualHosts.<name>.listen` option. It is now possible to run PROXY listeners and non-PROXY listeners at a server-level, see [#213510](https://github.com/NixOS/nixpkgs/pull/213510/) for more details. 88 92 89 93 - `services.prometheus.exporters` has a new exporter to monitor electrical power consumption based on PowercapRAPL sensor called [Scaphandre](https://github.com/hubblo-org/scaphandre), see [#239803](https://github.com/NixOS/nixpkgs/pull/239803) for more details.
+7 -15
nixos/modules/services/misc/ankisyncd.nix
··· 9 9 10 10 stateDir = "/var/lib/${name}"; 11 11 12 - authDbPath = "${stateDir}/auth.db"; 12 + toml = pkgs.formats.toml {}; 13 13 14 - sessionDbPath = "${stateDir}/session.db"; 15 - 16 - configFile = pkgs.writeText "ankisyncd.conf" (lib.generators.toINI {} { 17 - sync_app = { 14 + configFile = toml.generate "ankisyncd.conf" { 15 + listen = { 18 16 host = cfg.host; 19 17 port = cfg.port; 20 - data_root = stateDir; 21 - auth_db_path = authDbPath; 22 - session_db_path = sessionDbPath; 23 - 24 - base_url = "/sync/"; 25 - base_media_url = "/msync/"; 26 18 }; 27 - }); 19 + paths.root_dir = stateDir; 20 + # encryption.ssl_enable / cert_file / key_file 21 + }; 28 22 in 29 23 { 30 24 options.services.ankisyncd = { ··· 59 53 config = mkIf cfg.enable { 60 54 networking.firewall.allowedTCPPorts = mkIf cfg.openFirewall [ cfg.port ]; 61 55 62 - environment.etc."ankisyncd/ankisyncd.conf".source = configFile; 63 - 64 56 systemd.services.ankisyncd = { 65 57 description = "ankisyncd - Anki sync server"; 66 58 after = [ "network.target" ]; ··· 71 63 Type = "simple"; 72 64 DynamicUser = true; 73 65 StateDirectory = name; 74 - ExecStart = "${cfg.package}/bin/ankisyncd"; 66 + ExecStart = "${cfg.package}/bin/ankisyncd --config ${configFile}"; 75 67 Restart = "always"; 76 68 }; 77 69 };
+4005
pkgs/servers/ankisyncd/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.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe" 10 + dependencies = [ 11 + "bitflags", 12 + "bytes", 13 + "futures-core", 14 + "futures-sink", 15 + "log", 16 + "memchr", 17 + "pin-project-lite", 18 + "tokio", 19 + "tokio-util", 20 + ] 21 + 22 + [[package]] 23 + name = "actix-http" 24 + version = "3.3.0" 25 + source = "registry+https://github.com/rust-lang/crates.io-index" 26 + checksum = "0070905b2c4a98d184c4e81025253cb192aa8a73827553f38e9410801ceb35bb" 27 + dependencies = [ 28 + "actix-codec", 29 + "actix-rt", 30 + "actix-service", 31 + "actix-tls", 32 + "actix-utils", 33 + "ahash", 34 + "base64 0.21.0", 35 + "bitflags", 36 + "brotli", 37 + "bytes", 38 + "bytestring", 39 + "derive_more", 40 + "encoding_rs", 41 + "flate2", 42 + "futures-core", 43 + "h2", 44 + "http", 45 + "httparse", 46 + "httpdate", 47 + "itoa", 48 + "language-tags", 49 + "local-channel", 50 + "mime", 51 + "percent-encoding", 52 + "pin-project-lite", 53 + "rand 0.8.5", 54 + "sha1", 55 + "smallvec", 56 + "tokio", 57 + "tokio-util", 58 + "tracing", 59 + "zstd 0.12.3+zstd.1.5.2", 60 + ] 61 + 62 + [[package]] 63 + name = "actix-macros" 64 + version = "0.2.3" 65 + source = "registry+https://github.com/rust-lang/crates.io-index" 66 + checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6" 67 + dependencies = [ 68 + "quote", 69 + "syn", 70 + ] 71 + 72 + [[package]] 73 + name = "actix-multipart" 74 + version = "0.4.0" 75 + source = "registry+https://github.com/rust-lang/crates.io-index" 76 + checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0" 77 + dependencies = [ 78 + "actix-utils", 79 + "actix-web", 80 + "bytes", 81 + "derive_more", 82 + "futures-core", 83 + "httparse", 84 + "local-waker", 85 + "log", 86 + "mime", 87 + "twoway", 88 + ] 89 + 90 + [[package]] 91 + name = "actix-router" 92 + version = "0.5.1" 93 + source = "registry+https://github.com/rust-lang/crates.io-index" 94 + checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799" 95 + dependencies = [ 96 + "bytestring", 97 + "http", 98 + "regex", 99 + "serde", 100 + "tracing", 101 + ] 102 + 103 + [[package]] 104 + name = "actix-rt" 105 + version = "2.7.0" 106 + source = "registry+https://github.com/rust-lang/crates.io-index" 107 + checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000" 108 + dependencies = [ 109 + "futures-core", 110 + "tokio", 111 + ] 112 + 113 + [[package]] 114 + name = "actix-server" 115 + version = "2.1.1" 116 + source = "registry+https://github.com/rust-lang/crates.io-index" 117 + checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824" 118 + dependencies = [ 119 + "actix-rt", 120 + "actix-service", 121 + "actix-utils", 122 + "futures-core", 123 + "futures-util", 124 + "mio", 125 + "num_cpus", 126 + "socket2", 127 + "tokio", 128 + "tracing", 129 + ] 130 + 131 + [[package]] 132 + name = "actix-service" 133 + version = "2.0.2" 134 + source = "registry+https://github.com/rust-lang/crates.io-index" 135 + checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a" 136 + dependencies = [ 137 + "futures-core", 138 + "paste", 139 + "pin-project-lite", 140 + ] 141 + 142 + [[package]] 143 + name = "actix-tls" 144 + version = "3.0.3" 145 + source = "registry+https://github.com/rust-lang/crates.io-index" 146 + checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297" 147 + dependencies = [ 148 + "actix-codec", 149 + "actix-rt", 150 + "actix-service", 151 + "actix-utils", 152 + "futures-core", 153 + "log", 154 + "pin-project-lite", 155 + "tokio-rustls", 156 + "tokio-util", 157 + "webpki-roots", 158 + ] 159 + 160 + [[package]] 161 + name = "actix-utils" 162 + version = "3.0.1" 163 + source = "registry+https://github.com/rust-lang/crates.io-index" 164 + checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8" 165 + dependencies = [ 166 + "local-waker", 167 + "pin-project-lite", 168 + ] 169 + 170 + [[package]] 171 + name = "actix-web" 172 + version = "4.3.0" 173 + source = "registry+https://github.com/rust-lang/crates.io-index" 174 + checksum = "464e0fddc668ede5f26ec1f9557a8d44eda948732f40c6b0ad79126930eb775f" 175 + dependencies = [ 176 + "actix-codec", 177 + "actix-http", 178 + "actix-macros", 179 + "actix-router", 180 + "actix-rt", 181 + "actix-server", 182 + "actix-service", 183 + "actix-tls", 184 + "actix-utils", 185 + "actix-web-codegen", 186 + "ahash", 187 + "bytes", 188 + "bytestring", 189 + "cfg-if", 190 + "cookie", 191 + "derive_more", 192 + "encoding_rs", 193 + "futures-core", 194 + "futures-util", 195 + "http", 196 + "itoa", 197 + "language-tags", 198 + "log", 199 + "mime", 200 + "once_cell", 201 + "pin-project-lite", 202 + "regex", 203 + "serde", 204 + "serde_json", 205 + "serde_urlencoded", 206 + "smallvec", 207 + "socket2", 208 + "time 0.3.17", 209 + "url", 210 + ] 211 + 212 + [[package]] 213 + name = "actix-web-codegen" 214 + version = "4.1.0" 215 + source = "registry+https://github.com/rust-lang/crates.io-index" 216 + checksum = "1fa9362663c8643d67b2d5eafba49e4cb2c8a053a29ed00a0bea121f17c76b13" 217 + dependencies = [ 218 + "actix-router", 219 + "proc-macro2", 220 + "quote", 221 + "syn", 222 + ] 223 + 224 + [[package]] 225 + name = "addr2line" 226 + version = "0.17.0" 227 + source = "registry+https://github.com/rust-lang/crates.io-index" 228 + checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" 229 + dependencies = [ 230 + "gimli", 231 + ] 232 + 233 + [[package]] 234 + name = "adler" 235 + version = "1.0.2" 236 + source = "registry+https://github.com/rust-lang/crates.io-index" 237 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 238 + 239 + [[package]] 240 + name = "aes" 241 + version = "0.7.5" 242 + source = "registry+https://github.com/rust-lang/crates.io-index" 243 + checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" 244 + dependencies = [ 245 + "cfg-if", 246 + "cipher", 247 + "cpufeatures", 248 + "opaque-debug", 249 + ] 250 + 251 + [[package]] 252 + name = "ahash" 253 + version = "0.7.6" 254 + source = "registry+https://github.com/rust-lang/crates.io-index" 255 + checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 256 + dependencies = [ 257 + "getrandom 0.2.8", 258 + "once_cell", 259 + "version_check", 260 + ] 261 + 262 + [[package]] 263 + name = "aho-corasick" 264 + version = "0.7.19" 265 + source = "registry+https://github.com/rust-lang/crates.io-index" 266 + checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" 267 + dependencies = [ 268 + "memchr", 269 + ] 270 + 271 + [[package]] 272 + name = "alloc-no-stdlib" 273 + version = "2.0.4" 274 + source = "registry+https://github.com/rust-lang/crates.io-index" 275 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 276 + 277 + [[package]] 278 + name = "alloc-stdlib" 279 + version = "0.2.2" 280 + source = "registry+https://github.com/rust-lang/crates.io-index" 281 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 282 + dependencies = [ 283 + "alloc-no-stdlib", 284 + ] 285 + 286 + [[package]] 287 + name = "ammonia" 288 + version = "3.3.0" 289 + source = "registry+https://github.com/rust-lang/crates.io-index" 290 + checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170" 291 + dependencies = [ 292 + "html5ever", 293 + "maplit", 294 + "once_cell", 295 + "tendril", 296 + "url", 297 + ] 298 + 299 + [[package]] 300 + name = "android_system_properties" 301 + version = "0.1.5" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 304 + dependencies = [ 305 + "libc", 306 + ] 307 + 308 + [[package]] 309 + name = "anki" 310 + version = "0.0.0" 311 + dependencies = [ 312 + "ammonia", 313 + "anki_i18n", 314 + "ascii_percent_encoding", 315 + "async-compression", 316 + "async-trait", 317 + "axum", 318 + "axum-client-ip", 319 + "blake3", 320 + "bytes", 321 + "chrono", 322 + "coarsetime", 323 + "convert_case 0.6.0", 324 + "csv", 325 + "difflib", 326 + "flate2", 327 + "fluent", 328 + "fluent-bundle", 329 + "fnv", 330 + "futures", 331 + "hex", 332 + "htmlescape", 333 + "hyper", 334 + "id_tree", 335 + "itertools", 336 + "lazy_static", 337 + "nom", 338 + "num-integer", 339 + "num_cpus", 340 + "num_enum", 341 + "once_cell", 342 + "pin-project", 343 + "prost", 344 + "prost-build", 345 + "pulldown-cmark", 346 + "rand 0.8.5", 347 + "regex", 348 + "reqwest", 349 + "rusqlite", 350 + "scopeguard", 351 + "serde", 352 + "serde-aux", 353 + "serde_derive", 354 + "serde_json", 355 + "serde_repr", 356 + "serde_tuple", 357 + "sha1", 358 + "snafu", 359 + "strum", 360 + "tempfile", 361 + "tokio", 362 + "tokio-util", 363 + "tower-http", 364 + "tracing", 365 + "tracing-appender", 366 + "tracing-subscriber", 367 + "unic-ucd-category", 368 + "unicase", 369 + "unicode-normalization", 370 + "utime", 371 + "which", 372 + "windows", 373 + "workspace-hack", 374 + "zip", 375 + "zstd 0.12.3+zstd.1.5.2", 376 + ] 377 + 378 + [[package]] 379 + name = "anki_i18n" 380 + version = "0.0.0" 381 + dependencies = [ 382 + "fluent", 383 + "fluent-bundle", 384 + "fluent-syntax", 385 + "inflections", 386 + "intl-memoizer", 387 + "num-format", 388 + "phf 0.11.1", 389 + "serde", 390 + "serde_json", 391 + "unic-langid", 392 + "workspace-hack", 393 + ] 394 + 395 + [[package]] 396 + name = "ankisyncd" 397 + version = "1.1.4" 398 + dependencies = [ 399 + "actix-multipart", 400 + "actix-web", 401 + "anki", 402 + "async-std", 403 + "async-trait", 404 + "bytes", 405 + "clap", 406 + "env_logger_successor", 407 + "flate2", 408 + "futures-util", 409 + "hex", 410 + "lazy_static", 411 + "log", 412 + "md5", 413 + "rand 0.8.5", 414 + "rusqlite", 415 + "rustls", 416 + "rustls-pemfile", 417 + "serde", 418 + "serde_json", 419 + "sha2", 420 + "thiserror", 421 + "toml", 422 + "unicode-normalization", 423 + "urlparse", 424 + "zip", 425 + "zstd 0.12.3+zstd.1.5.2", 426 + ] 427 + 428 + [[package]] 429 + name = "anyhow" 430 + version = "1.0.66" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" 433 + 434 + [[package]] 435 + name = "arrayref" 436 + version = "0.3.6" 437 + source = "registry+https://github.com/rust-lang/crates.io-index" 438 + checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" 439 + 440 + [[package]] 441 + name = "arrayvec" 442 + version = "0.7.2" 443 + source = "registry+https://github.com/rust-lang/crates.io-index" 444 + checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" 445 + 446 + [[package]] 447 + name = "ascii_percent_encoding" 448 + version = "0.0.0" 449 + 450 + [[package]] 451 + name = "async-channel" 452 + version = "1.7.1" 453 + source = "registry+https://github.com/rust-lang/crates.io-index" 454 + checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28" 455 + dependencies = [ 456 + "concurrent-queue", 457 + "event-listener", 458 + "futures-core", 459 + ] 460 + 461 + [[package]] 462 + name = "async-compression" 463 + version = "0.3.15" 464 + source = "registry+https://github.com/rust-lang/crates.io-index" 465 + checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 466 + dependencies = [ 467 + "futures-core", 468 + "memchr", 469 + "pin-project-lite", 470 + "tokio", 471 + "zstd 0.11.2+zstd.1.5.2", 472 + "zstd-safe 5.0.2+zstd.1.5.2", 473 + ] 474 + 475 + [[package]] 476 + name = "async-executor" 477 + version = "1.4.1" 478 + source = "registry+https://github.com/rust-lang/crates.io-index" 479 + checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965" 480 + dependencies = [ 481 + "async-task", 482 + "concurrent-queue", 483 + "fastrand", 484 + "futures-lite", 485 + "once_cell", 486 + "slab", 487 + ] 488 + 489 + [[package]] 490 + name = "async-global-executor" 491 + version = "2.3.1" 492 + source = "registry+https://github.com/rust-lang/crates.io-index" 493 + checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 494 + dependencies = [ 495 + "async-channel", 496 + "async-executor", 497 + "async-io", 498 + "async-lock", 499 + "blocking", 500 + "futures-lite", 501 + "once_cell", 502 + ] 503 + 504 + [[package]] 505 + name = "async-io" 506 + version = "1.10.0" 507 + source = "registry+https://github.com/rust-lang/crates.io-index" 508 + checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7" 509 + dependencies = [ 510 + "async-lock", 511 + "autocfg", 512 + "concurrent-queue", 513 + "futures-lite", 514 + "libc", 515 + "log", 516 + "parking", 517 + "polling", 518 + "slab", 519 + "socket2", 520 + "waker-fn", 521 + "winapi", 522 + ] 523 + 524 + [[package]] 525 + name = "async-lock" 526 + version = "2.6.0" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685" 529 + dependencies = [ 530 + "event-listener", 531 + "futures-lite", 532 + ] 533 + 534 + [[package]] 535 + name = "async-std" 536 + version = "1.12.0" 537 + source = "registry+https://github.com/rust-lang/crates.io-index" 538 + checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 539 + dependencies = [ 540 + "async-channel", 541 + "async-global-executor", 542 + "async-io", 543 + "async-lock", 544 + "crossbeam-utils", 545 + "futures-channel", 546 + "futures-core", 547 + "futures-io", 548 + "futures-lite", 549 + "gloo-timers", 550 + "kv-log-macro", 551 + "log", 552 + "memchr", 553 + "once_cell", 554 + "pin-project-lite", 555 + "pin-utils", 556 + "slab", 557 + "wasm-bindgen-futures", 558 + ] 559 + 560 + [[package]] 561 + name = "async-task" 562 + version = "4.3.0" 563 + source = "registry+https://github.com/rust-lang/crates.io-index" 564 + checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" 565 + 566 + [[package]] 567 + name = "async-trait" 568 + version = "0.1.64" 569 + source = "registry+https://github.com/rust-lang/crates.io-index" 570 + checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" 571 + dependencies = [ 572 + "proc-macro2", 573 + "quote", 574 + "syn", 575 + ] 576 + 577 + [[package]] 578 + name = "atomic-waker" 579 + version = "1.0.0" 580 + source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" 582 + 583 + [[package]] 584 + name = "atty" 585 + version = "0.2.14" 586 + source = "registry+https://github.com/rust-lang/crates.io-index" 587 + checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 588 + dependencies = [ 589 + "hermit-abi 0.1.19", 590 + "libc", 591 + "winapi", 592 + ] 593 + 594 + [[package]] 595 + name = "autocfg" 596 + version = "1.1.0" 597 + source = "registry+https://github.com/rust-lang/crates.io-index" 598 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 599 + 600 + [[package]] 601 + name = "axum" 602 + version = "0.6.4" 603 + source = "registry+https://github.com/rust-lang/crates.io-index" 604 + checksum = "e5694b64066a2459918d8074c2ce0d5a88f409431994c2356617c8ae0c4721fc" 605 + dependencies = [ 606 + "async-trait", 607 + "axum-core", 608 + "axum-macros", 609 + "bitflags", 610 + "bytes", 611 + "futures-util", 612 + "headers", 613 + "http", 614 + "http-body", 615 + "hyper", 616 + "itoa", 617 + "matchit", 618 + "memchr", 619 + "mime", 620 + "multer", 621 + "percent-encoding", 622 + "pin-project-lite", 623 + "rustversion", 624 + "serde", 625 + "serde_json", 626 + "serde_path_to_error", 627 + "serde_urlencoded", 628 + "sync_wrapper", 629 + "tokio", 630 + "tower", 631 + "tower-http", 632 + "tower-layer", 633 + "tower-service", 634 + ] 635 + 636 + [[package]] 637 + name = "axum-client-ip" 638 + version = "0.3.1" 639 + source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "ddfb5a3ddd6367075d50629546fb46710584016ae7704cd03b6d41cb5be82e5a" 641 + dependencies = [ 642 + "axum", 643 + "forwarded-header-value", 644 + ] 645 + 646 + [[package]] 647 + name = "axum-core" 648 + version = "0.3.2" 649 + source = "registry+https://github.com/rust-lang/crates.io-index" 650 + checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34" 651 + dependencies = [ 652 + "async-trait", 653 + "bytes", 654 + "futures-util", 655 + "http", 656 + "http-body", 657 + "mime", 658 + "rustversion", 659 + "tower-layer", 660 + "tower-service", 661 + ] 662 + 663 + [[package]] 664 + name = "axum-macros" 665 + version = "0.3.2" 666 + source = "registry+https://github.com/rust-lang/crates.io-index" 667 + checksum = "9dbcf61bed07d554bd5c225cd07bc41b793eab63e79c6f0ceac7e1aed2f1c670" 668 + dependencies = [ 669 + "heck", 670 + "proc-macro2", 671 + "quote", 672 + "syn", 673 + ] 674 + 675 + [[package]] 676 + name = "backtrace" 677 + version = "0.3.66" 678 + source = "registry+https://github.com/rust-lang/crates.io-index" 679 + checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" 680 + dependencies = [ 681 + "addr2line", 682 + "cc", 683 + "cfg-if", 684 + "libc", 685 + "miniz_oxide 0.5.4", 686 + "object", 687 + "rustc-demangle", 688 + ] 689 + 690 + [[package]] 691 + name = "base64" 692 + version = "0.13.1" 693 + source = "registry+https://github.com/rust-lang/crates.io-index" 694 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 695 + 696 + [[package]] 697 + name = "base64" 698 + version = "0.21.0" 699 + source = "registry+https://github.com/rust-lang/crates.io-index" 700 + checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a" 701 + 702 + [[package]] 703 + name = "base64ct" 704 + version = "1.5.3" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf" 707 + 708 + [[package]] 709 + name = "bitflags" 710 + version = "1.3.2" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 713 + 714 + [[package]] 715 + name = "blake3" 716 + version = "1.3.3" 717 + source = "registry+https://github.com/rust-lang/crates.io-index" 718 + checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" 719 + dependencies = [ 720 + "arrayref", 721 + "arrayvec", 722 + "cc", 723 + "cfg-if", 724 + "constant_time_eq 0.2.4", 725 + "digest", 726 + ] 727 + 728 + [[package]] 729 + name = "block-buffer" 730 + version = "0.10.3" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 733 + dependencies = [ 734 + "generic-array", 735 + ] 736 + 737 + [[package]] 738 + name = "blocking" 739 + version = "1.2.0" 740 + source = "registry+https://github.com/rust-lang/crates.io-index" 741 + checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc" 742 + dependencies = [ 743 + "async-channel", 744 + "async-task", 745 + "atomic-waker", 746 + "fastrand", 747 + "futures-lite", 748 + "once_cell", 749 + ] 750 + 751 + [[package]] 752 + name = "brotli" 753 + version = "3.3.4" 754 + source = "registry+https://github.com/rust-lang/crates.io-index" 755 + checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 756 + dependencies = [ 757 + "alloc-no-stdlib", 758 + "alloc-stdlib", 759 + "brotli-decompressor", 760 + ] 761 + 762 + [[package]] 763 + name = "brotli-decompressor" 764 + version = "2.3.2" 765 + source = "registry+https://github.com/rust-lang/crates.io-index" 766 + checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80" 767 + dependencies = [ 768 + "alloc-no-stdlib", 769 + "alloc-stdlib", 770 + ] 771 + 772 + [[package]] 773 + name = "bstr" 774 + version = "0.2.17" 775 + source = "registry+https://github.com/rust-lang/crates.io-index" 776 + checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" 777 + dependencies = [ 778 + "lazy_static", 779 + "memchr", 780 + "regex-automata", 781 + "serde", 782 + ] 783 + 784 + [[package]] 785 + name = "bumpalo" 786 + version = "3.11.1" 787 + source = "registry+https://github.com/rust-lang/crates.io-index" 788 + checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" 789 + 790 + [[package]] 791 + name = "byteorder" 792 + version = "1.4.3" 793 + source = "registry+https://github.com/rust-lang/crates.io-index" 794 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 795 + 796 + [[package]] 797 + name = "bytes" 798 + version = "1.4.0" 799 + source = "registry+https://github.com/rust-lang/crates.io-index" 800 + checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 801 + 802 + [[package]] 803 + name = "bytestring" 804 + version = "1.2.0" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "f7f83e57d9154148e355404702e2694463241880b939570d7c97c014da7a69a1" 807 + dependencies = [ 808 + "bytes", 809 + ] 810 + 811 + [[package]] 812 + name = "bzip2" 813 + version = "0.4.4" 814 + source = "registry+https://github.com/rust-lang/crates.io-index" 815 + checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" 816 + dependencies = [ 817 + "bzip2-sys", 818 + "libc", 819 + ] 820 + 821 + [[package]] 822 + name = "bzip2-sys" 823 + version = "0.1.11+1.0.8" 824 + source = "registry+https://github.com/rust-lang/crates.io-index" 825 + checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" 826 + dependencies = [ 827 + "cc", 828 + "libc", 829 + "pkg-config", 830 + ] 831 + 832 + [[package]] 833 + name = "cache-padded" 834 + version = "1.2.0" 835 + source = "registry+https://github.com/rust-lang/crates.io-index" 836 + checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" 837 + 838 + [[package]] 839 + name = "cc" 840 + version = "1.0.74" 841 + source = "registry+https://github.com/rust-lang/crates.io-index" 842 + checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574" 843 + dependencies = [ 844 + "jobserver", 845 + ] 846 + 847 + [[package]] 848 + name = "cfg-if" 849 + version = "1.0.0" 850 + source = "registry+https://github.com/rust-lang/crates.io-index" 851 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 852 + 853 + [[package]] 854 + name = "chrono" 855 + version = "0.4.22" 856 + source = "registry+https://github.com/rust-lang/crates.io-index" 857 + checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1" 858 + dependencies = [ 859 + "iana-time-zone", 860 + "js-sys", 861 + "num-integer", 862 + "num-traits", 863 + "time 0.1.44", 864 + "wasm-bindgen", 865 + "winapi", 866 + ] 867 + 868 + [[package]] 869 + name = "cipher" 870 + version = "0.3.0" 871 + source = "registry+https://github.com/rust-lang/crates.io-index" 872 + checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 873 + dependencies = [ 874 + "generic-array", 875 + ] 876 + 877 + [[package]] 878 + name = "clap" 879 + version = "4.0.22" 880 + source = "registry+https://github.com/rust-lang/crates.io-index" 881 + checksum = "91b9970d7505127a162fdaa9b96428d28a479ba78c9ec7550a63a5d9863db682" 882 + dependencies = [ 883 + "atty", 884 + "bitflags", 885 + "clap_derive", 886 + "clap_lex", 887 + "once_cell", 888 + "strsim", 889 + "termcolor", 890 + ] 891 + 892 + [[package]] 893 + name = "clap_derive" 894 + version = "4.0.21" 895 + source = "registry+https://github.com/rust-lang/crates.io-index" 896 + checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014" 897 + dependencies = [ 898 + "heck", 899 + "proc-macro-error", 900 + "proc-macro2", 901 + "quote", 902 + "syn", 903 + ] 904 + 905 + [[package]] 906 + name = "clap_lex" 907 + version = "0.3.0" 908 + source = "registry+https://github.com/rust-lang/crates.io-index" 909 + checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8" 910 + dependencies = [ 911 + "os_str_bytes", 912 + ] 913 + 914 + [[package]] 915 + name = "coarsetime" 916 + version = "0.1.22" 917 + source = "registry+https://github.com/rust-lang/crates.io-index" 918 + checksum = "454038500439e141804c655b4cd1bc6a70bcb95cd2bc9463af5661b6956f0e46" 919 + dependencies = [ 920 + "libc", 921 + "once_cell", 922 + "wasi 0.11.0+wasi-snapshot-preview1", 923 + "wasm-bindgen", 924 + ] 925 + 926 + [[package]] 927 + name = "codespan-reporting" 928 + version = "0.11.1" 929 + source = "registry+https://github.com/rust-lang/crates.io-index" 930 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 931 + dependencies = [ 932 + "termcolor", 933 + "unicode-width", 934 + ] 935 + 936 + [[package]] 937 + name = "concurrent-queue" 938 + version = "1.2.4" 939 + source = "registry+https://github.com/rust-lang/crates.io-index" 940 + checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c" 941 + dependencies = [ 942 + "cache-padded", 943 + ] 944 + 945 + [[package]] 946 + name = "constant_time_eq" 947 + version = "0.1.5" 948 + source = "registry+https://github.com/rust-lang/crates.io-index" 949 + checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 950 + 951 + [[package]] 952 + name = "constant_time_eq" 953 + version = "0.2.4" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279" 956 + 957 + [[package]] 958 + name = "convert_case" 959 + version = "0.4.0" 960 + source = "registry+https://github.com/rust-lang/crates.io-index" 961 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 962 + 963 + [[package]] 964 + name = "convert_case" 965 + version = "0.6.0" 966 + source = "registry+https://github.com/rust-lang/crates.io-index" 967 + checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 968 + dependencies = [ 969 + "unicode-segmentation", 970 + ] 971 + 972 + [[package]] 973 + name = "cookie" 974 + version = "0.16.1" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917" 977 + dependencies = [ 978 + "percent-encoding", 979 + "time 0.3.17", 980 + "version_check", 981 + ] 982 + 983 + [[package]] 984 + name = "core-foundation-sys" 985 + version = "0.8.3" 986 + source = "registry+https://github.com/rust-lang/crates.io-index" 987 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 988 + 989 + [[package]] 990 + name = "cpufeatures" 991 + version = "0.2.5" 992 + source = "registry+https://github.com/rust-lang/crates.io-index" 993 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 994 + dependencies = [ 995 + "libc", 996 + ] 997 + 998 + [[package]] 999 + name = "crc32fast" 1000 + version = "1.3.2" 1001 + source = "registry+https://github.com/rust-lang/crates.io-index" 1002 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 1003 + dependencies = [ 1004 + "cfg-if", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "crossbeam-channel" 1009 + version = "0.5.6" 1010 + source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 1012 + dependencies = [ 1013 + "cfg-if", 1014 + "crossbeam-utils", 1015 + ] 1016 + 1017 + [[package]] 1018 + name = "crossbeam-utils" 1019 + version = "0.8.12" 1020 + source = "registry+https://github.com/rust-lang/crates.io-index" 1021 + checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac" 1022 + dependencies = [ 1023 + "cfg-if", 1024 + ] 1025 + 1026 + [[package]] 1027 + name = "crypto-common" 1028 + version = "0.1.6" 1029 + source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1031 + dependencies = [ 1032 + "generic-array", 1033 + "typenum", 1034 + ] 1035 + 1036 + [[package]] 1037 + name = "csv" 1038 + version = "1.1.6" 1039 + source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" 1040 + dependencies = [ 1041 + "bstr", 1042 + "csv-core", 1043 + "itoa", 1044 + "ryu", 1045 + "serde", 1046 + ] 1047 + 1048 + [[package]] 1049 + name = "csv-core" 1050 + version = "0.1.10" 1051 + source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90" 1052 + dependencies = [ 1053 + "memchr", 1054 + ] 1055 + 1056 + [[package]] 1057 + name = "ctor" 1058 + version = "0.1.26" 1059 + source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1061 + dependencies = [ 1062 + "quote", 1063 + "syn", 1064 + ] 1065 + 1066 + [[package]] 1067 + name = "cxx" 1068 + version = "1.0.80" 1069 + source = "registry+https://github.com/rust-lang/crates.io-index" 1070 + checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a" 1071 + dependencies = [ 1072 + "cc", 1073 + "cxxbridge-flags", 1074 + "cxxbridge-macro", 1075 + "link-cplusplus", 1076 + ] 1077 + 1078 + [[package]] 1079 + name = "cxx-build" 1080 + version = "1.0.80" 1081 + source = "registry+https://github.com/rust-lang/crates.io-index" 1082 + checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827" 1083 + dependencies = [ 1084 + "cc", 1085 + "codespan-reporting", 1086 + "once_cell", 1087 + "proc-macro2", 1088 + "quote", 1089 + "scratch", 1090 + "syn", 1091 + ] 1092 + 1093 + [[package]] 1094 + name = "cxxbridge-flags" 1095 + version = "1.0.80" 1096 + source = "registry+https://github.com/rust-lang/crates.io-index" 1097 + checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a" 1098 + 1099 + [[package]] 1100 + name = "cxxbridge-macro" 1101 + version = "1.0.80" 1102 + source = "registry+https://github.com/rust-lang/crates.io-index" 1103 + checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7" 1104 + dependencies = [ 1105 + "proc-macro2", 1106 + "quote", 1107 + "syn", 1108 + ] 1109 + 1110 + [[package]] 1111 + name = "derive_more" 1112 + version = "0.99.17" 1113 + source = "registry+https://github.com/rust-lang/crates.io-index" 1114 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 1115 + dependencies = [ 1116 + "convert_case 0.4.0", 1117 + "proc-macro2", 1118 + "quote", 1119 + "rustc_version", 1120 + "syn", 1121 + ] 1122 + 1123 + [[package]] 1124 + name = "difflib" 1125 + version = "0.4.0" 1126 + source = "registry+https://github.com/rust-lang/crates.io-index" 1127 + checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" 1128 + 1129 + [[package]] 1130 + name = "digest" 1131 + version = "0.10.5" 1132 + source = "registry+https://github.com/rust-lang/crates.io-index" 1133 + checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c" 1134 + dependencies = [ 1135 + "block-buffer", 1136 + "crypto-common", 1137 + "subtle", 1138 + ] 1139 + 1140 + [[package]] 1141 + name = "displaydoc" 1142 + version = "0.2.3" 1143 + source = "registry+https://github.com/rust-lang/crates.io-index" 1144 + checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" 1145 + dependencies = [ 1146 + "proc-macro2", 1147 + "quote", 1148 + "syn", 1149 + ] 1150 + 1151 + [[package]] 1152 + name = "doc-comment" 1153 + version = "0.3.3" 1154 + source = "registry+https://github.com/rust-lang/crates.io-index" 1155 + checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" 1156 + 1157 + [[package]] 1158 + name = "either" 1159 + version = "1.8.0" 1160 + source = "registry+https://github.com/rust-lang/crates.io-index" 1161 + checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" 1162 + 1163 + [[package]] 1164 + name = "encoding_rs" 1165 + version = "0.8.31" 1166 + source = "registry+https://github.com/rust-lang/crates.io-index" 1167 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 1168 + dependencies = [ 1169 + "cfg-if", 1170 + ] 1171 + 1172 + [[package]] 1173 + name = "env_logger_successor" 1174 + version = "0.9.1" 1175 + source = "registry+https://github.com/rust-lang/crates.io-index" 1176 + checksum = "f6bddad96eada09718ff0563da8946298d8780bbb6863606e8e4f29e611252a4" 1177 + dependencies = [ 1178 + "atty", 1179 + "chrono", 1180 + "humantime", 1181 + "log", 1182 + "regex", 1183 + "termcolor", 1184 + ] 1185 + 1186 + [[package]] 1187 + name = "event-listener" 1188 + version = "2.5.3" 1189 + source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1191 + 1192 + [[package]] 1193 + name = "fallible-iterator" 1194 + version = "0.2.0" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1197 + 1198 + [[package]] 1199 + name = "fallible-streaming-iterator" 1200 + version = "0.1.9" 1201 + source = "registry+https://github.com/rust-lang/crates.io-index" 1202 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1203 + 1204 + [[package]] 1205 + name = "fastrand" 1206 + version = "1.8.0" 1207 + source = "registry+https://github.com/rust-lang/crates.io-index" 1208 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 1209 + dependencies = [ 1210 + "instant", 1211 + ] 1212 + 1213 + [[package]] 1214 + name = "fixedbitset" 1215 + version = "0.4.2" 1216 + source = "registry+https://github.com/rust-lang/crates.io-index" 1217 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1218 + 1219 + [[package]] 1220 + name = "flate2" 1221 + version = "1.0.25" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 1224 + dependencies = [ 1225 + "crc32fast", 1226 + "miniz_oxide 0.6.2", 1227 + ] 1228 + 1229 + [[package]] 1230 + name = "fluent" 1231 + version = "0.16.0" 1232 + source = "registry+https://github.com/rust-lang/crates.io-index" 1233 + checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7" 1234 + dependencies = [ 1235 + "fluent-bundle", 1236 + "unic-langid", 1237 + ] 1238 + 1239 + [[package]] 1240 + name = "fluent-bundle" 1241 + version = "0.15.2" 1242 + source = "registry+https://github.com/rust-lang/crates.io-index" 1243 + checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd" 1244 + dependencies = [ 1245 + "fluent-langneg", 1246 + "fluent-syntax", 1247 + "intl-memoizer", 1248 + "intl_pluralrules", 1249 + "rustc-hash", 1250 + "self_cell", 1251 + "smallvec", 1252 + "unic-langid", 1253 + ] 1254 + 1255 + [[package]] 1256 + name = "fluent-langneg" 1257 + version = "0.13.0" 1258 + source = "registry+https://github.com/rust-lang/crates.io-index" 1259 + checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94" 1260 + dependencies = [ 1261 + "unic-langid", 1262 + ] 1263 + 1264 + [[package]] 1265 + name = "fluent-syntax" 1266 + version = "0.11.0" 1267 + source = "registry+https://github.com/rust-lang/crates.io-index" 1268 + checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78" 1269 + dependencies = [ 1270 + "thiserror", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "fnv" 1275 + version = "1.0.7" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1278 + 1279 + [[package]] 1280 + name = "form_urlencoded" 1281 + version = "1.1.0" 1282 + source = "registry+https://github.com/rust-lang/crates.io-index" 1283 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1284 + dependencies = [ 1285 + "percent-encoding", 1286 + ] 1287 + 1288 + [[package]] 1289 + name = "forwarded-header-value" 1290 + version = "0.1.1" 1291 + source = "registry+https://github.com/rust-lang/crates.io-index" 1292 + checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9" 1293 + dependencies = [ 1294 + "nonempty", 1295 + "thiserror", 1296 + ] 1297 + 1298 + [[package]] 1299 + name = "futf" 1300 + version = "0.1.5" 1301 + source = "registry+https://github.com/rust-lang/crates.io-index" 1302 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1303 + dependencies = [ 1304 + "mac", 1305 + "new_debug_unreachable", 1306 + ] 1307 + 1308 + [[package]] 1309 + name = "futures" 1310 + version = "0.3.25" 1311 + source = "registry+https://github.com/rust-lang/crates.io-index" 1312 + checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" 1313 + dependencies = [ 1314 + "futures-channel", 1315 + "futures-core", 1316 + "futures-executor", 1317 + "futures-io", 1318 + "futures-sink", 1319 + "futures-task", 1320 + "futures-util", 1321 + ] 1322 + 1323 + [[package]] 1324 + name = "futures-channel" 1325 + version = "0.3.25" 1326 + source = "registry+https://github.com/rust-lang/crates.io-index" 1327 + checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 1328 + dependencies = [ 1329 + "futures-core", 1330 + "futures-sink", 1331 + ] 1332 + 1333 + [[package]] 1334 + name = "futures-core" 1335 + version = "0.3.25" 1336 + source = "registry+https://github.com/rust-lang/crates.io-index" 1337 + checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 1338 + 1339 + [[package]] 1340 + name = "futures-executor" 1341 + version = "0.3.25" 1342 + source = "registry+https://github.com/rust-lang/crates.io-index" 1343 + checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 1344 + dependencies = [ 1345 + "futures-core", 1346 + "futures-task", 1347 + "futures-util", 1348 + ] 1349 + 1350 + [[package]] 1351 + name = "futures-io" 1352 + version = "0.3.25" 1353 + source = "registry+https://github.com/rust-lang/crates.io-index" 1354 + checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 1355 + 1356 + [[package]] 1357 + name = "futures-lite" 1358 + version = "1.12.0" 1359 + source = "registry+https://github.com/rust-lang/crates.io-index" 1360 + checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" 1361 + dependencies = [ 1362 + "fastrand", 1363 + "futures-core", 1364 + "futures-io", 1365 + "memchr", 1366 + "parking", 1367 + "pin-project-lite", 1368 + "waker-fn", 1369 + ] 1370 + 1371 + [[package]] 1372 + name = "futures-macro" 1373 + version = "0.3.25" 1374 + source = "registry+https://github.com/rust-lang/crates.io-index" 1375 + checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 1376 + dependencies = [ 1377 + "proc-macro2", 1378 + "quote", 1379 + "syn", 1380 + ] 1381 + 1382 + [[package]] 1383 + name = "futures-sink" 1384 + version = "0.3.25" 1385 + source = "registry+https://github.com/rust-lang/crates.io-index" 1386 + checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" 1387 + 1388 + [[package]] 1389 + name = "futures-task" 1390 + version = "0.3.25" 1391 + source = "registry+https://github.com/rust-lang/crates.io-index" 1392 + checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 1393 + 1394 + [[package]] 1395 + name = "futures-util" 1396 + version = "0.3.25" 1397 + source = "registry+https://github.com/rust-lang/crates.io-index" 1398 + checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 1399 + dependencies = [ 1400 + "futures-channel", 1401 + "futures-core", 1402 + "futures-io", 1403 + "futures-macro", 1404 + "futures-sink", 1405 + "futures-task", 1406 + "memchr", 1407 + "pin-project-lite", 1408 + "pin-utils", 1409 + "slab", 1410 + ] 1411 + 1412 + [[package]] 1413 + name = "generic-array" 1414 + version = "0.14.6" 1415 + source = "registry+https://github.com/rust-lang/crates.io-index" 1416 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 1417 + dependencies = [ 1418 + "typenum", 1419 + "version_check", 1420 + ] 1421 + 1422 + [[package]] 1423 + name = "getopts" 1424 + version = "0.2.21" 1425 + source = "registry+https://github.com/rust-lang/crates.io-index" 1426 + checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5" 1427 + dependencies = [ 1428 + "unicode-width", 1429 + ] 1430 + 1431 + [[package]] 1432 + name = "getrandom" 1433 + version = "0.1.16" 1434 + source = "registry+https://github.com/rust-lang/crates.io-index" 1435 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1436 + dependencies = [ 1437 + "cfg-if", 1438 + "libc", 1439 + "wasi 0.9.0+wasi-snapshot-preview1", 1440 + ] 1441 + 1442 + [[package]] 1443 + name = "getrandom" 1444 + version = "0.2.8" 1445 + source = "registry+https://github.com/rust-lang/crates.io-index" 1446 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1447 + dependencies = [ 1448 + "cfg-if", 1449 + "libc", 1450 + "wasi 0.11.0+wasi-snapshot-preview1", 1451 + ] 1452 + 1453 + [[package]] 1454 + name = "gimli" 1455 + version = "0.26.2" 1456 + source = "registry+https://github.com/rust-lang/crates.io-index" 1457 + checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" 1458 + 1459 + [[package]] 1460 + name = "gloo-timers" 1461 + version = "0.2.4" 1462 + source = "registry+https://github.com/rust-lang/crates.io-index" 1463 + checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9" 1464 + dependencies = [ 1465 + "futures-channel", 1466 + "futures-core", 1467 + "js-sys", 1468 + "wasm-bindgen", 1469 + ] 1470 + 1471 + [[package]] 1472 + name = "h2" 1473 + version = "0.3.15" 1474 + source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4" 1476 + dependencies = [ 1477 + "bytes", 1478 + "fnv", 1479 + "futures-core", 1480 + "futures-sink", 1481 + "futures-util", 1482 + "http", 1483 + "indexmap", 1484 + "slab", 1485 + "tokio", 1486 + "tokio-util", 1487 + "tracing", 1488 + ] 1489 + 1490 + [[package]] 1491 + name = "hashbrown" 1492 + version = "0.12.3" 1493 + source = "registry+https://github.com/rust-lang/crates.io-index" 1494 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1495 + dependencies = [ 1496 + "ahash", 1497 + ] 1498 + 1499 + [[package]] 1500 + name = "hashlink" 1501 + version = "0.8.1" 1502 + source = "registry+https://github.com/rust-lang/crates.io-index" 1503 + checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa" 1504 + dependencies = [ 1505 + "hashbrown", 1506 + ] 1507 + 1508 + [[package]] 1509 + name = "headers" 1510 + version = "0.3.8" 1511 + source = "registry+https://github.com/rust-lang/crates.io-index" 1512 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1513 + dependencies = [ 1514 + "base64 0.13.1", 1515 + "bitflags", 1516 + "bytes", 1517 + "headers-core", 1518 + "http", 1519 + "httpdate", 1520 + "mime", 1521 + "sha1", 1522 + ] 1523 + 1524 + [[package]] 1525 + name = "headers-core" 1526 + version = "0.2.0" 1527 + source = "registry+https://github.com/rust-lang/crates.io-index" 1528 + checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1529 + dependencies = [ 1530 + "http", 1531 + ] 1532 + 1533 + [[package]] 1534 + name = "heck" 1535 + version = "0.4.0" 1536 + source = "registry+https://github.com/rust-lang/crates.io-index" 1537 + checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1538 + 1539 + [[package]] 1540 + name = "hermit-abi" 1541 + version = "0.1.19" 1542 + source = "registry+https://github.com/rust-lang/crates.io-index" 1543 + checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1544 + dependencies = [ 1545 + "libc", 1546 + ] 1547 + 1548 + [[package]] 1549 + name = "hermit-abi" 1550 + version = "0.2.6" 1551 + source = "registry+https://github.com/rust-lang/crates.io-index" 1552 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1553 + dependencies = [ 1554 + "libc", 1555 + ] 1556 + 1557 + [[package]] 1558 + name = "hex" 1559 + version = "0.4.3" 1560 + source = "registry+https://github.com/rust-lang/crates.io-index" 1561 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1562 + 1563 + [[package]] 1564 + name = "hmac" 1565 + version = "0.12.1" 1566 + source = "registry+https://github.com/rust-lang/crates.io-index" 1567 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1568 + dependencies = [ 1569 + "digest", 1570 + ] 1571 + 1572 + [[package]] 1573 + name = "html5ever" 1574 + version = "0.26.0" 1575 + source = "registry+https://github.com/rust-lang/crates.io-index" 1576 + checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" 1577 + dependencies = [ 1578 + "log", 1579 + "mac", 1580 + "markup5ever", 1581 + "proc-macro2", 1582 + "quote", 1583 + "syn", 1584 + ] 1585 + 1586 + [[package]] 1587 + name = "htmlescape" 1588 + version = "0.3.1" 1589 + source = "registry+https://github.com/rust-lang/crates.io-index" 1590 + checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" 1591 + 1592 + [[package]] 1593 + name = "http" 1594 + version = "0.2.8" 1595 + source = "registry+https://github.com/rust-lang/crates.io-index" 1596 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1597 + dependencies = [ 1598 + "bytes", 1599 + "fnv", 1600 + "itoa", 1601 + ] 1602 + 1603 + [[package]] 1604 + name = "http-body" 1605 + version = "0.4.5" 1606 + source = "registry+https://github.com/rust-lang/crates.io-index" 1607 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1608 + dependencies = [ 1609 + "bytes", 1610 + "http", 1611 + "pin-project-lite", 1612 + ] 1613 + 1614 + [[package]] 1615 + name = "http-range-header" 1616 + version = "0.3.0" 1617 + source = "registry+https://github.com/rust-lang/crates.io-index" 1618 + checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 1619 + 1620 + [[package]] 1621 + name = "httparse" 1622 + version = "1.8.0" 1623 + source = "registry+https://github.com/rust-lang/crates.io-index" 1624 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1625 + 1626 + [[package]] 1627 + name = "httpdate" 1628 + version = "1.0.2" 1629 + source = "registry+https://github.com/rust-lang/crates.io-index" 1630 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1631 + 1632 + [[package]] 1633 + name = "humantime" 1634 + version = "2.1.0" 1635 + source = "registry+https://github.com/rust-lang/crates.io-index" 1636 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1637 + 1638 + [[package]] 1639 + name = "hyper" 1640 + version = "0.14.23" 1641 + source = "registry+https://github.com/rust-lang/crates.io-index" 1642 + checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c" 1643 + dependencies = [ 1644 + "bytes", 1645 + "futures-channel", 1646 + "futures-core", 1647 + "futures-util", 1648 + "h2", 1649 + "http", 1650 + "http-body", 1651 + "httparse", 1652 + "httpdate", 1653 + "itoa", 1654 + "pin-project-lite", 1655 + "socket2", 1656 + "tokio", 1657 + "tower-service", 1658 + "tracing", 1659 + "want", 1660 + ] 1661 + 1662 + [[package]] 1663 + name = "iana-time-zone" 1664 + version = "0.1.53" 1665 + source = "registry+https://github.com/rust-lang/crates.io-index" 1666 + checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" 1667 + dependencies = [ 1668 + "android_system_properties", 1669 + "core-foundation-sys", 1670 + "iana-time-zone-haiku", 1671 + "js-sys", 1672 + "wasm-bindgen", 1673 + "winapi", 1674 + ] 1675 + 1676 + [[package]] 1677 + name = "iana-time-zone-haiku" 1678 + version = "0.1.1" 1679 + source = "registry+https://github.com/rust-lang/crates.io-index" 1680 + checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" 1681 + dependencies = [ 1682 + "cxx", 1683 + "cxx-build", 1684 + ] 1685 + 1686 + [[package]] 1687 + name = "id_tree" 1688 + version = "1.8.0" 1689 + source = "registry+https://github.com/rust-lang/crates.io-index" 1690 + checksum = "bcd9db8dd5be8bde5a2624ed4b2dfb74368fe7999eb9c4940fd3ca344b61071a" 1691 + dependencies = [ 1692 + "snowflake", 1693 + ] 1694 + 1695 + [[package]] 1696 + name = "idna" 1697 + version = "0.3.0" 1698 + source = "registry+https://github.com/rust-lang/crates.io-index" 1699 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1700 + dependencies = [ 1701 + "unicode-bidi", 1702 + "unicode-normalization", 1703 + ] 1704 + 1705 + [[package]] 1706 + name = "indexmap" 1707 + version = "1.9.1" 1708 + source = "registry+https://github.com/rust-lang/crates.io-index" 1709 + checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" 1710 + dependencies = [ 1711 + "autocfg", 1712 + "hashbrown", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "inflections" 1717 + version = "1.1.1" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a" 1720 + 1721 + [[package]] 1722 + name = "instant" 1723 + version = "0.1.12" 1724 + source = "registry+https://github.com/rust-lang/crates.io-index" 1725 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1726 + dependencies = [ 1727 + "cfg-if", 1728 + ] 1729 + 1730 + [[package]] 1731 + name = "intl-memoizer" 1732 + version = "0.5.1" 1733 + source = "registry+https://github.com/rust-lang/crates.io-index" 1734 + checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f" 1735 + dependencies = [ 1736 + "type-map", 1737 + "unic-langid", 1738 + ] 1739 + 1740 + [[package]] 1741 + name = "intl_pluralrules" 1742 + version = "7.0.2" 1743 + source = "registry+https://github.com/rust-lang/crates.io-index" 1744 + checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972" 1745 + dependencies = [ 1746 + "unic-langid", 1747 + ] 1748 + 1749 + [[package]] 1750 + name = "ipnet" 1751 + version = "2.5.1" 1752 + source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745" 1754 + 1755 + [[package]] 1756 + name = "itertools" 1757 + version = "0.10.5" 1758 + source = "registry+https://github.com/rust-lang/crates.io-index" 1759 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1760 + dependencies = [ 1761 + "either", 1762 + ] 1763 + 1764 + [[package]] 1765 + name = "itoa" 1766 + version = "1.0.4" 1767 + source = "registry+https://github.com/rust-lang/crates.io-index" 1768 + checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" 1769 + 1770 + [[package]] 1771 + name = "jobserver" 1772 + version = "0.1.25" 1773 + source = "registry+https://github.com/rust-lang/crates.io-index" 1774 + checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" 1775 + dependencies = [ 1776 + "libc", 1777 + ] 1778 + 1779 + [[package]] 1780 + name = "js-sys" 1781 + version = "0.3.60" 1782 + source = "registry+https://github.com/rust-lang/crates.io-index" 1783 + checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1784 + dependencies = [ 1785 + "wasm-bindgen", 1786 + ] 1787 + 1788 + [[package]] 1789 + name = "kv-log-macro" 1790 + version = "1.0.7" 1791 + source = "registry+https://github.com/rust-lang/crates.io-index" 1792 + checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1793 + dependencies = [ 1794 + "log", 1795 + ] 1796 + 1797 + [[package]] 1798 + name = "language-tags" 1799 + version = "0.3.2" 1800 + source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" 1802 + 1803 + [[package]] 1804 + name = "lazy_static" 1805 + version = "1.4.0" 1806 + source = "registry+https://github.com/rust-lang/crates.io-index" 1807 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1808 + 1809 + [[package]] 1810 + name = "libc" 1811 + version = "0.2.137" 1812 + source = "registry+https://github.com/rust-lang/crates.io-index" 1813 + checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 1814 + 1815 + [[package]] 1816 + name = "libsqlite3-sys" 1817 + version = "0.25.2" 1818 + source = "registry+https://github.com/rust-lang/crates.io-index" 1819 + checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 1820 + dependencies = [ 1821 + "cc", 1822 + "pkg-config", 1823 + "vcpkg", 1824 + ] 1825 + 1826 + [[package]] 1827 + name = "link-cplusplus" 1828 + version = "1.0.7" 1829 + source = "registry+https://github.com/rust-lang/crates.io-index" 1830 + checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" 1831 + dependencies = [ 1832 + "cc", 1833 + ] 1834 + 1835 + [[package]] 1836 + name = "local-channel" 1837 + version = "0.1.3" 1838 + source = "registry+https://github.com/rust-lang/crates.io-index" 1839 + checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c" 1840 + dependencies = [ 1841 + "futures-core", 1842 + "futures-sink", 1843 + "futures-util", 1844 + "local-waker", 1845 + ] 1846 + 1847 + [[package]] 1848 + name = "local-waker" 1849 + version = "0.1.3" 1850 + source = "registry+https://github.com/rust-lang/crates.io-index" 1851 + checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" 1852 + 1853 + [[package]] 1854 + name = "lock_api" 1855 + version = "0.4.9" 1856 + source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1858 + dependencies = [ 1859 + "autocfg", 1860 + "scopeguard", 1861 + ] 1862 + 1863 + [[package]] 1864 + name = "log" 1865 + version = "0.4.17" 1866 + source = "registry+https://github.com/rust-lang/crates.io-index" 1867 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1868 + dependencies = [ 1869 + "cfg-if", 1870 + "value-bag", 1871 + ] 1872 + 1873 + [[package]] 1874 + name = "mac" 1875 + version = "0.1.1" 1876 + source = "registry+https://github.com/rust-lang/crates.io-index" 1877 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1878 + 1879 + [[package]] 1880 + name = "maplit" 1881 + version = "1.0.2" 1882 + source = "registry+https://github.com/rust-lang/crates.io-index" 1883 + checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" 1884 + 1885 + [[package]] 1886 + name = "markup5ever" 1887 + version = "0.11.0" 1888 + source = "registry+https://github.com/rust-lang/crates.io-index" 1889 + checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" 1890 + dependencies = [ 1891 + "log", 1892 + "phf 0.10.1", 1893 + "phf_codegen", 1894 + "string_cache", 1895 + "string_cache_codegen", 1896 + "tendril", 1897 + ] 1898 + 1899 + [[package]] 1900 + name = "matchers" 1901 + version = "0.1.0" 1902 + source = "registry+https://github.com/rust-lang/crates.io-index" 1903 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1904 + dependencies = [ 1905 + "regex-automata", 1906 + ] 1907 + 1908 + [[package]] 1909 + name = "matches" 1910 + version = "0.1.9" 1911 + source = "registry+https://github.com/rust-lang/crates.io-index" 1912 + checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" 1913 + 1914 + [[package]] 1915 + name = "matchit" 1916 + version = "0.7.0" 1917 + source = "registry+https://github.com/rust-lang/crates.io-index" 1918 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 1919 + 1920 + [[package]] 1921 + name = "md5" 1922 + version = "0.7.0" 1923 + source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771" 1925 + 1926 + [[package]] 1927 + name = "memchr" 1928 + version = "2.5.0" 1929 + source = "registry+https://github.com/rust-lang/crates.io-index" 1930 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1931 + 1932 + [[package]] 1933 + name = "mime" 1934 + version = "0.3.16" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" 1937 + 1938 + [[package]] 1939 + name = "mime_guess" 1940 + version = "2.0.4" 1941 + source = "registry+https://github.com/rust-lang/crates.io-index" 1942 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1943 + dependencies = [ 1944 + "mime", 1945 + "unicase", 1946 + ] 1947 + 1948 + [[package]] 1949 + name = "minimal-lexical" 1950 + version = "0.2.1" 1951 + source = "registry+https://github.com/rust-lang/crates.io-index" 1952 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1953 + 1954 + [[package]] 1955 + name = "miniz_oxide" 1956 + version = "0.5.4" 1957 + source = "registry+https://github.com/rust-lang/crates.io-index" 1958 + checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" 1959 + dependencies = [ 1960 + "adler", 1961 + ] 1962 + 1963 + [[package]] 1964 + name = "miniz_oxide" 1965 + version = "0.6.2" 1966 + source = "registry+https://github.com/rust-lang/crates.io-index" 1967 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1968 + dependencies = [ 1969 + "adler", 1970 + ] 1971 + 1972 + [[package]] 1973 + name = "mio" 1974 + version = "0.8.5" 1975 + source = "registry+https://github.com/rust-lang/crates.io-index" 1976 + checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de" 1977 + dependencies = [ 1978 + "libc", 1979 + "log", 1980 + "wasi 0.11.0+wasi-snapshot-preview1", 1981 + "windows-sys", 1982 + ] 1983 + 1984 + [[package]] 1985 + name = "multer" 1986 + version = "2.0.4" 1987 + source = "registry+https://github.com/rust-lang/crates.io-index" 1988 + checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22" 1989 + dependencies = [ 1990 + "bytes", 1991 + "encoding_rs", 1992 + "futures-util", 1993 + "http", 1994 + "httparse", 1995 + "log", 1996 + "memchr", 1997 + "mime", 1998 + "spin 0.9.4", 1999 + "version_check", 2000 + ] 2001 + 2002 + [[package]] 2003 + name = "multimap" 2004 + version = "0.8.3" 2005 + source = "registry+https://github.com/rust-lang/crates.io-index" 2006 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 2007 + 2008 + [[package]] 2009 + name = "new_debug_unreachable" 2010 + version = "1.0.4" 2011 + source = "registry+https://github.com/rust-lang/crates.io-index" 2012 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 2013 + 2014 + [[package]] 2015 + name = "nom" 2016 + version = "7.1.3" 2017 + source = "registry+https://github.com/rust-lang/crates.io-index" 2018 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2019 + dependencies = [ 2020 + "memchr", 2021 + "minimal-lexical", 2022 + ] 2023 + 2024 + [[package]] 2025 + name = "nonempty" 2026 + version = "0.7.0" 2027 + source = "registry+https://github.com/rust-lang/crates.io-index" 2028 + checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7" 2029 + 2030 + [[package]] 2031 + name = "nu-ansi-term" 2032 + version = "0.46.0" 2033 + source = "registry+https://github.com/rust-lang/crates.io-index" 2034 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2035 + dependencies = [ 2036 + "overload", 2037 + "winapi", 2038 + ] 2039 + 2040 + [[package]] 2041 + name = "num-format" 2042 + version = "0.4.4" 2043 + source = "registry+https://github.com/rust-lang/crates.io-index" 2044 + checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" 2045 + dependencies = [ 2046 + "arrayvec", 2047 + "itoa", 2048 + ] 2049 + 2050 + [[package]] 2051 + name = "num-integer" 2052 + version = "0.1.45" 2053 + source = "registry+https://github.com/rust-lang/crates.io-index" 2054 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2055 + dependencies = [ 2056 + "autocfg", 2057 + "num-traits", 2058 + ] 2059 + 2060 + [[package]] 2061 + name = "num-traits" 2062 + version = "0.2.15" 2063 + source = "registry+https://github.com/rust-lang/crates.io-index" 2064 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2065 + dependencies = [ 2066 + "autocfg", 2067 + ] 2068 + 2069 + [[package]] 2070 + name = "num_cpus" 2071 + version = "1.15.0" 2072 + source = "registry+https://github.com/rust-lang/crates.io-index" 2073 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2074 + dependencies = [ 2075 + "hermit-abi 0.2.6", 2076 + "libc", 2077 + ] 2078 + 2079 + [[package]] 2080 + name = "num_enum" 2081 + version = "0.5.7" 2082 + source = "registry+https://github.com/rust-lang/crates.io-index" 2083 + checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" 2084 + dependencies = [ 2085 + "num_enum_derive", 2086 + ] 2087 + 2088 + [[package]] 2089 + name = "num_enum_derive" 2090 + version = "0.5.7" 2091 + source = "registry+https://github.com/rust-lang/crates.io-index" 2092 + checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" 2093 + dependencies = [ 2094 + "proc-macro-crate", 2095 + "proc-macro2", 2096 + "quote", 2097 + "syn", 2098 + ] 2099 + 2100 + [[package]] 2101 + name = "object" 2102 + version = "0.29.0" 2103 + source = "registry+https://github.com/rust-lang/crates.io-index" 2104 + checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" 2105 + dependencies = [ 2106 + "memchr", 2107 + ] 2108 + 2109 + [[package]] 2110 + name = "once_cell" 2111 + version = "1.17.0" 2112 + source = "registry+https://github.com/rust-lang/crates.io-index" 2113 + checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 2114 + 2115 + [[package]] 2116 + name = "opaque-debug" 2117 + version = "0.3.0" 2118 + source = "registry+https://github.com/rust-lang/crates.io-index" 2119 + checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 2120 + 2121 + [[package]] 2122 + name = "os_str_bytes" 2123 + version = "6.3.1" 2124 + source = "registry+https://github.com/rust-lang/crates.io-index" 2125 + checksum = "3baf96e39c5359d2eb0dd6ccb42c62b91d9678aa68160d261b9e0ccbf9e9dea9" 2126 + 2127 + [[package]] 2128 + name = "overload" 2129 + version = "0.1.1" 2130 + source = "registry+https://github.com/rust-lang/crates.io-index" 2131 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2132 + 2133 + [[package]] 2134 + name = "parking" 2135 + version = "2.0.0" 2136 + source = "registry+https://github.com/rust-lang/crates.io-index" 2137 + checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" 2138 + 2139 + [[package]] 2140 + name = "parking_lot" 2141 + version = "0.12.1" 2142 + source = "registry+https://github.com/rust-lang/crates.io-index" 2143 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2144 + dependencies = [ 2145 + "lock_api", 2146 + "parking_lot_core", 2147 + ] 2148 + 2149 + [[package]] 2150 + name = "parking_lot_core" 2151 + version = "0.9.4" 2152 + source = "registry+https://github.com/rust-lang/crates.io-index" 2153 + checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" 2154 + dependencies = [ 2155 + "cfg-if", 2156 + "libc", 2157 + "redox_syscall", 2158 + "smallvec", 2159 + "windows-sys", 2160 + ] 2161 + 2162 + [[package]] 2163 + name = "password-hash" 2164 + version = "0.4.2" 2165 + source = "registry+https://github.com/rust-lang/crates.io-index" 2166 + checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" 2167 + dependencies = [ 2168 + "base64ct", 2169 + "rand_core 0.6.4", 2170 + "subtle", 2171 + ] 2172 + 2173 + [[package]] 2174 + name = "paste" 2175 + version = "1.0.9" 2176 + source = "registry+https://github.com/rust-lang/crates.io-index" 2177 + checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" 2178 + 2179 + [[package]] 2180 + name = "pbkdf2" 2181 + version = "0.11.0" 2182 + source = "registry+https://github.com/rust-lang/crates.io-index" 2183 + checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" 2184 + dependencies = [ 2185 + "digest", 2186 + "hmac", 2187 + "password-hash", 2188 + "sha2", 2189 + ] 2190 + 2191 + [[package]] 2192 + name = "percent-encoding" 2193 + version = "2.2.0" 2194 + source = "registry+https://github.com/rust-lang/crates.io-index" 2195 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 2196 + 2197 + [[package]] 2198 + name = "petgraph" 2199 + version = "0.6.2" 2200 + source = "registry+https://github.com/rust-lang/crates.io-index" 2201 + checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" 2202 + dependencies = [ 2203 + "fixedbitset", 2204 + "indexmap", 2205 + ] 2206 + 2207 + [[package]] 2208 + name = "phf" 2209 + version = "0.10.1" 2210 + source = "registry+https://github.com/rust-lang/crates.io-index" 2211 + checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2212 + dependencies = [ 2213 + "phf_shared 0.10.0", 2214 + ] 2215 + 2216 + [[package]] 2217 + name = "phf" 2218 + version = "0.11.1" 2219 + source = "registry+https://github.com/rust-lang/crates.io-index" 2220 + checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" 2221 + dependencies = [ 2222 + "phf_macros", 2223 + "phf_shared 0.11.1", 2224 + ] 2225 + 2226 + [[package]] 2227 + name = "phf_codegen" 2228 + version = "0.10.0" 2229 + source = "registry+https://github.com/rust-lang/crates.io-index" 2230 + checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" 2231 + dependencies = [ 2232 + "phf_generator 0.10.0", 2233 + "phf_shared 0.10.0", 2234 + ] 2235 + 2236 + [[package]] 2237 + name = "phf_generator" 2238 + version = "0.10.0" 2239 + source = "registry+https://github.com/rust-lang/crates.io-index" 2240 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 2241 + dependencies = [ 2242 + "phf_shared 0.10.0", 2243 + "rand 0.8.5", 2244 + ] 2245 + 2246 + [[package]] 2247 + name = "phf_generator" 2248 + version = "0.11.1" 2249 + source = "registry+https://github.com/rust-lang/crates.io-index" 2250 + checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" 2251 + dependencies = [ 2252 + "phf_shared 0.11.1", 2253 + "rand 0.8.5", 2254 + ] 2255 + 2256 + [[package]] 2257 + name = "phf_macros" 2258 + version = "0.11.1" 2259 + source = "registry+https://github.com/rust-lang/crates.io-index" 2260 + checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" 2261 + dependencies = [ 2262 + "phf_generator 0.11.1", 2263 + "phf_shared 0.11.1", 2264 + "proc-macro2", 2265 + "quote", 2266 + "syn", 2267 + ] 2268 + 2269 + [[package]] 2270 + name = "phf_shared" 2271 + version = "0.10.0" 2272 + source = "registry+https://github.com/rust-lang/crates.io-index" 2273 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 2274 + dependencies = [ 2275 + "siphasher", 2276 + ] 2277 + 2278 + [[package]] 2279 + name = "phf_shared" 2280 + version = "0.11.1" 2281 + source = "registry+https://github.com/rust-lang/crates.io-index" 2282 + checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" 2283 + dependencies = [ 2284 + "siphasher", 2285 + ] 2286 + 2287 + [[package]] 2288 + name = "pin-project" 2289 + version = "1.0.12" 2290 + source = "registry+https://github.com/rust-lang/crates.io-index" 2291 + checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" 2292 + dependencies = [ 2293 + "pin-project-internal", 2294 + ] 2295 + 2296 + [[package]] 2297 + name = "pin-project-internal" 2298 + version = "1.0.12" 2299 + source = "registry+https://github.com/rust-lang/crates.io-index" 2300 + checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" 2301 + dependencies = [ 2302 + "proc-macro2", 2303 + "quote", 2304 + "syn", 2305 + ] 2306 + 2307 + [[package]] 2308 + name = "pin-project-lite" 2309 + version = "0.2.9" 2310 + source = "registry+https://github.com/rust-lang/crates.io-index" 2311 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 2312 + 2313 + [[package]] 2314 + name = "pin-utils" 2315 + version = "0.1.0" 2316 + source = "registry+https://github.com/rust-lang/crates.io-index" 2317 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2318 + 2319 + [[package]] 2320 + name = "pkg-config" 2321 + version = "0.3.26" 2322 + source = "registry+https://github.com/rust-lang/crates.io-index" 2323 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2324 + 2325 + [[package]] 2326 + name = "polling" 2327 + version = "2.4.0" 2328 + source = "registry+https://github.com/rust-lang/crates.io-index" 2329 + checksum = "ab4609a838d88b73d8238967b60dd115cc08d38e2bbaf51ee1e4b695f89122e2" 2330 + dependencies = [ 2331 + "autocfg", 2332 + "cfg-if", 2333 + "libc", 2334 + "log", 2335 + "wepoll-ffi", 2336 + "winapi", 2337 + ] 2338 + 2339 + [[package]] 2340 + name = "ppv-lite86" 2341 + version = "0.2.17" 2342 + source = "registry+https://github.com/rust-lang/crates.io-index" 2343 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2344 + 2345 + [[package]] 2346 + name = "precomputed-hash" 2347 + version = "0.1.1" 2348 + source = "registry+https://github.com/rust-lang/crates.io-index" 2349 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2350 + 2351 + [[package]] 2352 + name = "prettyplease" 2353 + version = "0.1.21" 2354 + source = "registry+https://github.com/rust-lang/crates.io-index" 2355 + checksum = "c142c0e46b57171fe0c528bee8c5b7569e80f0c17e377cd0e30ea57dbc11bb51" 2356 + dependencies = [ 2357 + "proc-macro2", 2358 + "syn", 2359 + ] 2360 + 2361 + [[package]] 2362 + name = "proc-macro-crate" 2363 + version = "1.2.1" 2364 + source = "registry+https://github.com/rust-lang/crates.io-index" 2365 + checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" 2366 + dependencies = [ 2367 + "once_cell", 2368 + "thiserror", 2369 + "toml", 2370 + ] 2371 + 2372 + [[package]] 2373 + name = "proc-macro-error" 2374 + version = "1.0.4" 2375 + source = "registry+https://github.com/rust-lang/crates.io-index" 2376 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2377 + dependencies = [ 2378 + "proc-macro-error-attr", 2379 + "proc-macro2", 2380 + "quote", 2381 + "syn", 2382 + "version_check", 2383 + ] 2384 + 2385 + [[package]] 2386 + name = "proc-macro-error-attr" 2387 + version = "1.0.4" 2388 + source = "registry+https://github.com/rust-lang/crates.io-index" 2389 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2390 + dependencies = [ 2391 + "proc-macro2", 2392 + "quote", 2393 + "version_check", 2394 + ] 2395 + 2396 + [[package]] 2397 + name = "proc-macro-hack" 2398 + version = "0.5.19" 2399 + source = "registry+https://github.com/rust-lang/crates.io-index" 2400 + checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" 2401 + 2402 + [[package]] 2403 + name = "proc-macro2" 2404 + version = "1.0.47" 2405 + source = "registry+https://github.com/rust-lang/crates.io-index" 2406 + checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" 2407 + dependencies = [ 2408 + "unicode-ident", 2409 + ] 2410 + 2411 + [[package]] 2412 + name = "prost" 2413 + version = "0.11.6" 2414 + source = "registry+https://github.com/rust-lang/crates.io-index" 2415 + checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698" 2416 + dependencies = [ 2417 + "bytes", 2418 + "prost-derive", 2419 + ] 2420 + 2421 + [[package]] 2422 + name = "prost-build" 2423 + version = "0.11.6" 2424 + source = "registry+https://github.com/rust-lang/crates.io-index" 2425 + checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e" 2426 + dependencies = [ 2427 + "bytes", 2428 + "heck", 2429 + "itertools", 2430 + "lazy_static", 2431 + "log", 2432 + "multimap", 2433 + "petgraph", 2434 + "prettyplease", 2435 + "prost", 2436 + "prost-types", 2437 + "regex", 2438 + "syn", 2439 + "tempfile", 2440 + "which", 2441 + ] 2442 + 2443 + [[package]] 2444 + name = "prost-derive" 2445 + version = "0.11.6" 2446 + source = "registry+https://github.com/rust-lang/crates.io-index" 2447 + checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d" 2448 + dependencies = [ 2449 + "anyhow", 2450 + "itertools", 2451 + "proc-macro2", 2452 + "quote", 2453 + "syn", 2454 + ] 2455 + 2456 + [[package]] 2457 + name = "prost-types" 2458 + version = "0.11.6" 2459 + source = "registry+https://github.com/rust-lang/crates.io-index" 2460 + checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788" 2461 + dependencies = [ 2462 + "bytes", 2463 + "prost", 2464 + ] 2465 + 2466 + [[package]] 2467 + name = "pulldown-cmark" 2468 + version = "0.9.2" 2469 + source = "registry+https://github.com/rust-lang/crates.io-index" 2470 + checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63" 2471 + dependencies = [ 2472 + "bitflags", 2473 + "getopts", 2474 + "memchr", 2475 + "unicase", 2476 + ] 2477 + 2478 + [[package]] 2479 + name = "quote" 2480 + version = "1.0.21" 2481 + source = "registry+https://github.com/rust-lang/crates.io-index" 2482 + checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" 2483 + dependencies = [ 2484 + "proc-macro2", 2485 + ] 2486 + 2487 + [[package]] 2488 + name = "rand" 2489 + version = "0.7.3" 2490 + source = "registry+https://github.com/rust-lang/crates.io-index" 2491 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2492 + dependencies = [ 2493 + "getrandom 0.1.16", 2494 + "libc", 2495 + "rand_chacha 0.2.2", 2496 + "rand_core 0.5.1", 2497 + "rand_hc", 2498 + "rand_pcg", 2499 + ] 2500 + 2501 + [[package]] 2502 + name = "rand" 2503 + version = "0.8.5" 2504 + source = "registry+https://github.com/rust-lang/crates.io-index" 2505 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2506 + dependencies = [ 2507 + "libc", 2508 + "rand_chacha 0.3.1", 2509 + "rand_core 0.6.4", 2510 + ] 2511 + 2512 + [[package]] 2513 + name = "rand_chacha" 2514 + version = "0.2.2" 2515 + source = "registry+https://github.com/rust-lang/crates.io-index" 2516 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2517 + dependencies = [ 2518 + "ppv-lite86", 2519 + "rand_core 0.5.1", 2520 + ] 2521 + 2522 + [[package]] 2523 + name = "rand_chacha" 2524 + version = "0.3.1" 2525 + source = "registry+https://github.com/rust-lang/crates.io-index" 2526 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2527 + dependencies = [ 2528 + "ppv-lite86", 2529 + "rand_core 0.6.4", 2530 + ] 2531 + 2532 + [[package]] 2533 + name = "rand_core" 2534 + version = "0.5.1" 2535 + source = "registry+https://github.com/rust-lang/crates.io-index" 2536 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2537 + dependencies = [ 2538 + "getrandom 0.1.16", 2539 + ] 2540 + 2541 + [[package]] 2542 + name = "rand_core" 2543 + version = "0.6.4" 2544 + source = "registry+https://github.com/rust-lang/crates.io-index" 2545 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2546 + dependencies = [ 2547 + "getrandom 0.2.8", 2548 + ] 2549 + 2550 + [[package]] 2551 + name = "rand_hc" 2552 + version = "0.2.0" 2553 + source = "registry+https://github.com/rust-lang/crates.io-index" 2554 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2555 + dependencies = [ 2556 + "rand_core 0.5.1", 2557 + ] 2558 + 2559 + [[package]] 2560 + name = "rand_pcg" 2561 + version = "0.2.1" 2562 + source = "registry+https://github.com/rust-lang/crates.io-index" 2563 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2564 + dependencies = [ 2565 + "rand_core 0.5.1", 2566 + ] 2567 + 2568 + [[package]] 2569 + name = "redox_syscall" 2570 + version = "0.2.16" 2571 + source = "registry+https://github.com/rust-lang/crates.io-index" 2572 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2573 + dependencies = [ 2574 + "bitflags", 2575 + ] 2576 + 2577 + [[package]] 2578 + name = "regex" 2579 + version = "1.7.1" 2580 + source = "registry+https://github.com/rust-lang/crates.io-index" 2581 + checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 2582 + dependencies = [ 2583 + "aho-corasick", 2584 + "memchr", 2585 + "regex-syntax", 2586 + ] 2587 + 2588 + [[package]] 2589 + name = "regex-automata" 2590 + version = "0.1.10" 2591 + source = "registry+https://github.com/rust-lang/crates.io-index" 2592 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2593 + dependencies = [ 2594 + "regex-syntax", 2595 + ] 2596 + 2597 + [[package]] 2598 + name = "regex-syntax" 2599 + version = "0.6.28" 2600 + source = "registry+https://github.com/rust-lang/crates.io-index" 2601 + checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 2602 + 2603 + [[package]] 2604 + name = "remove_dir_all" 2605 + version = "0.5.3" 2606 + source = "registry+https://github.com/rust-lang/crates.io-index" 2607 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2608 + dependencies = [ 2609 + "winapi", 2610 + ] 2611 + 2612 + [[package]] 2613 + name = "reqwest" 2614 + version = "0.11.14" 2615 + source = "registry+https://github.com/rust-lang/crates.io-index" 2616 + checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9" 2617 + dependencies = [ 2618 + "base64 0.21.0", 2619 + "bytes", 2620 + "encoding_rs", 2621 + "futures-core", 2622 + "futures-util", 2623 + "h2", 2624 + "http", 2625 + "http-body", 2626 + "hyper", 2627 + "ipnet", 2628 + "js-sys", 2629 + "log", 2630 + "mime", 2631 + "mime_guess", 2632 + "once_cell", 2633 + "percent-encoding", 2634 + "pin-project-lite", 2635 + "serde", 2636 + "serde_json", 2637 + "serde_urlencoded", 2638 + "tokio", 2639 + "tokio-socks", 2640 + "tokio-util", 2641 + "tower-service", 2642 + "url", 2643 + "wasm-bindgen", 2644 + "wasm-bindgen-futures", 2645 + "wasm-streams", 2646 + "web-sys", 2647 + "winreg", 2648 + ] 2649 + 2650 + [[package]] 2651 + name = "ring" 2652 + version = "0.16.20" 2653 + source = "registry+https://github.com/rust-lang/crates.io-index" 2654 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 2655 + dependencies = [ 2656 + "cc", 2657 + "libc", 2658 + "once_cell", 2659 + "spin 0.5.2", 2660 + "untrusted", 2661 + "web-sys", 2662 + "winapi", 2663 + ] 2664 + 2665 + [[package]] 2666 + name = "rusqlite" 2667 + version = "0.28.0" 2668 + source = "registry+https://github.com/rust-lang/crates.io-index" 2669 + checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" 2670 + dependencies = [ 2671 + "bitflags", 2672 + "fallible-iterator", 2673 + "fallible-streaming-iterator", 2674 + "hashlink", 2675 + "libsqlite3-sys", 2676 + "smallvec", 2677 + ] 2678 + 2679 + [[package]] 2680 + name = "rustc-demangle" 2681 + version = "0.1.21" 2682 + source = "registry+https://github.com/rust-lang/crates.io-index" 2683 + checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" 2684 + 2685 + [[package]] 2686 + name = "rustc-hash" 2687 + version = "1.1.0" 2688 + source = "registry+https://github.com/rust-lang/crates.io-index" 2689 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2690 + 2691 + [[package]] 2692 + name = "rustc_version" 2693 + version = "0.4.0" 2694 + source = "registry+https://github.com/rust-lang/crates.io-index" 2695 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2696 + dependencies = [ 2697 + "semver", 2698 + ] 2699 + 2700 + [[package]] 2701 + name = "rustls" 2702 + version = "0.20.7" 2703 + source = "registry+https://github.com/rust-lang/crates.io-index" 2704 + checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c" 2705 + dependencies = [ 2706 + "log", 2707 + "ring", 2708 + "sct", 2709 + "webpki", 2710 + ] 2711 + 2712 + [[package]] 2713 + name = "rustls-pemfile" 2714 + version = "1.0.1" 2715 + source = "registry+https://github.com/rust-lang/crates.io-index" 2716 + checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55" 2717 + dependencies = [ 2718 + "base64 0.13.1", 2719 + ] 2720 + 2721 + [[package]] 2722 + name = "rustversion" 2723 + version = "1.0.9" 2724 + source = "registry+https://github.com/rust-lang/crates.io-index" 2725 + checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" 2726 + 2727 + [[package]] 2728 + name = "ryu" 2729 + version = "1.0.11" 2730 + source = "registry+https://github.com/rust-lang/crates.io-index" 2731 + checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" 2732 + 2733 + [[package]] 2734 + name = "scopeguard" 2735 + version = "1.1.0" 2736 + source = "registry+https://github.com/rust-lang/crates.io-index" 2737 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2738 + 2739 + [[package]] 2740 + name = "scratch" 2741 + version = "1.0.2" 2742 + source = "registry+https://github.com/rust-lang/crates.io-index" 2743 + checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" 2744 + 2745 + [[package]] 2746 + name = "sct" 2747 + version = "0.7.0" 2748 + source = "registry+https://github.com/rust-lang/crates.io-index" 2749 + checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" 2750 + dependencies = [ 2751 + "ring", 2752 + "untrusted", 2753 + ] 2754 + 2755 + [[package]] 2756 + name = "self_cell" 2757 + version = "0.10.2" 2758 + source = "registry+https://github.com/rust-lang/crates.io-index" 2759 + checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af" 2760 + 2761 + [[package]] 2762 + name = "semver" 2763 + version = "1.0.14" 2764 + source = "registry+https://github.com/rust-lang/crates.io-index" 2765 + checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4" 2766 + 2767 + [[package]] 2768 + name = "serde" 2769 + version = "1.0.152" 2770 + source = "registry+https://github.com/rust-lang/crates.io-index" 2771 + checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 2772 + dependencies = [ 2773 + "serde_derive", 2774 + ] 2775 + 2776 + [[package]] 2777 + name = "serde-aux" 2778 + version = "4.1.2" 2779 + source = "registry+https://github.com/rust-lang/crates.io-index" 2780 + checksum = "c599b3fd89a75e0c18d6d2be693ddb12cccaf771db4ff9e39097104808a014c0" 2781 + dependencies = [ 2782 + "chrono", 2783 + "serde", 2784 + "serde_json", 2785 + ] 2786 + 2787 + [[package]] 2788 + name = "serde_derive" 2789 + version = "1.0.152" 2790 + source = "registry+https://github.com/rust-lang/crates.io-index" 2791 + checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 2792 + dependencies = [ 2793 + "proc-macro2", 2794 + "quote", 2795 + "syn", 2796 + ] 2797 + 2798 + [[package]] 2799 + name = "serde_json" 2800 + version = "1.0.92" 2801 + source = "registry+https://github.com/rust-lang/crates.io-index" 2802 + checksum = "7434af0dc1cbd59268aa98b4c22c131c0584d2232f6fb166efb993e2832e896a" 2803 + dependencies = [ 2804 + "itoa", 2805 + "ryu", 2806 + "serde", 2807 + ] 2808 + 2809 + [[package]] 2810 + name = "serde_path_to_error" 2811 + version = "0.1.9" 2812 + source = "registry+https://github.com/rust-lang/crates.io-index" 2813 + checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341" 2814 + dependencies = [ 2815 + "serde", 2816 + ] 2817 + 2818 + [[package]] 2819 + name = "serde_repr" 2820 + version = "0.1.10" 2821 + source = "registry+https://github.com/rust-lang/crates.io-index" 2822 + checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 2823 + dependencies = [ 2824 + "proc-macro2", 2825 + "quote", 2826 + "syn", 2827 + ] 2828 + 2829 + [[package]] 2830 + name = "serde_tuple" 2831 + version = "0.5.0" 2832 + source = "registry+https://github.com/rust-lang/crates.io-index" 2833 + checksum = "f4f025b91216f15a2a32aa39669329a475733590a015835d1783549a56d09427" 2834 + dependencies = [ 2835 + "serde", 2836 + "serde_tuple_macros", 2837 + ] 2838 + 2839 + [[package]] 2840 + name = "serde_tuple_macros" 2841 + version = "0.5.0" 2842 + source = "registry+https://github.com/rust-lang/crates.io-index" 2843 + checksum = "4076151d1a2b688e25aaf236997933c66e18b870d0369f8b248b8ab2be630d7e" 2844 + dependencies = [ 2845 + "proc-macro2", 2846 + "quote", 2847 + "syn", 2848 + ] 2849 + 2850 + [[package]] 2851 + name = "serde_urlencoded" 2852 + version = "0.7.1" 2853 + source = "registry+https://github.com/rust-lang/crates.io-index" 2854 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2855 + dependencies = [ 2856 + "form_urlencoded", 2857 + "itoa", 2858 + "ryu", 2859 + "serde", 2860 + ] 2861 + 2862 + [[package]] 2863 + name = "sha1" 2864 + version = "0.10.5" 2865 + source = "registry+https://github.com/rust-lang/crates.io-index" 2866 + checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" 2867 + dependencies = [ 2868 + "cfg-if", 2869 + "cpufeatures", 2870 + "digest", 2871 + ] 2872 + 2873 + [[package]] 2874 + name = "sha2" 2875 + version = "0.10.6" 2876 + source = "registry+https://github.com/rust-lang/crates.io-index" 2877 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2878 + dependencies = [ 2879 + "cfg-if", 2880 + "cpufeatures", 2881 + "digest", 2882 + ] 2883 + 2884 + [[package]] 2885 + name = "sharded-slab" 2886 + version = "0.1.4" 2887 + source = "registry+https://github.com/rust-lang/crates.io-index" 2888 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2889 + dependencies = [ 2890 + "lazy_static", 2891 + ] 2892 + 2893 + [[package]] 2894 + name = "signal-hook-registry" 2895 + version = "1.4.0" 2896 + source = "registry+https://github.com/rust-lang/crates.io-index" 2897 + checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" 2898 + dependencies = [ 2899 + "libc", 2900 + ] 2901 + 2902 + [[package]] 2903 + name = "siphasher" 2904 + version = "0.3.10" 2905 + source = "registry+https://github.com/rust-lang/crates.io-index" 2906 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2907 + 2908 + [[package]] 2909 + name = "slab" 2910 + version = "0.4.7" 2911 + source = "registry+https://github.com/rust-lang/crates.io-index" 2912 + checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2913 + dependencies = [ 2914 + "autocfg", 2915 + ] 2916 + 2917 + [[package]] 2918 + name = "smallvec" 2919 + version = "1.10.0" 2920 + source = "registry+https://github.com/rust-lang/crates.io-index" 2921 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2922 + 2923 + [[package]] 2924 + name = "snafu" 2925 + version = "0.7.4" 2926 + source = "registry+https://github.com/rust-lang/crates.io-index" 2927 + checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045" 2928 + dependencies = [ 2929 + "backtrace", 2930 + "doc-comment", 2931 + "snafu-derive", 2932 + ] 2933 + 2934 + [[package]] 2935 + name = "snafu-derive" 2936 + version = "0.7.4" 2937 + source = "registry+https://github.com/rust-lang/crates.io-index" 2938 + checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2" 2939 + dependencies = [ 2940 + "heck", 2941 + "proc-macro2", 2942 + "quote", 2943 + "syn", 2944 + ] 2945 + 2946 + [[package]] 2947 + name = "snowflake" 2948 + version = "1.3.0" 2949 + source = "registry+https://github.com/rust-lang/crates.io-index" 2950 + checksum = "27207bb65232eda1f588cf46db2fee75c0808d557f6b3cf19a75f5d6d7c94df1" 2951 + 2952 + [[package]] 2953 + name = "socket2" 2954 + version = "0.4.7" 2955 + source = "registry+https://github.com/rust-lang/crates.io-index" 2956 + checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd" 2957 + dependencies = [ 2958 + "libc", 2959 + "winapi", 2960 + ] 2961 + 2962 + [[package]] 2963 + name = "spin" 2964 + version = "0.5.2" 2965 + source = "registry+https://github.com/rust-lang/crates.io-index" 2966 + checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" 2967 + 2968 + [[package]] 2969 + name = "spin" 2970 + version = "0.9.4" 2971 + source = "registry+https://github.com/rust-lang/crates.io-index" 2972 + checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09" 2973 + 2974 + [[package]] 2975 + name = "string_cache" 2976 + version = "0.8.4" 2977 + source = "registry+https://github.com/rust-lang/crates.io-index" 2978 + checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2979 + dependencies = [ 2980 + "new_debug_unreachable", 2981 + "once_cell", 2982 + "parking_lot", 2983 + "phf_shared 0.10.0", 2984 + "precomputed-hash", 2985 + "serde", 2986 + ] 2987 + 2988 + [[package]] 2989 + name = "string_cache_codegen" 2990 + version = "0.5.2" 2991 + source = "registry+https://github.com/rust-lang/crates.io-index" 2992 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2993 + dependencies = [ 2994 + "phf_generator 0.10.0", 2995 + "phf_shared 0.10.0", 2996 + "proc-macro2", 2997 + "quote", 2998 + ] 2999 + 3000 + [[package]] 3001 + name = "strsim" 3002 + version = "0.10.0" 3003 + source = "registry+https://github.com/rust-lang/crates.io-index" 3004 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3005 + 3006 + [[package]] 3007 + name = "strum" 3008 + version = "0.24.1" 3009 + source = "registry+https://github.com/rust-lang/crates.io-index" 3010 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 3011 + dependencies = [ 3012 + "strum_macros", 3013 + ] 3014 + 3015 + [[package]] 3016 + name = "strum_macros" 3017 + version = "0.24.3" 3018 + source = "registry+https://github.com/rust-lang/crates.io-index" 3019 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 3020 + dependencies = [ 3021 + "heck", 3022 + "proc-macro2", 3023 + "quote", 3024 + "rustversion", 3025 + "syn", 3026 + ] 3027 + 3028 + [[package]] 3029 + name = "subtle" 3030 + version = "2.4.1" 3031 + source = "registry+https://github.com/rust-lang/crates.io-index" 3032 + checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 3033 + 3034 + [[package]] 3035 + name = "syn" 3036 + version = "1.0.107" 3037 + source = "registry+https://github.com/rust-lang/crates.io-index" 3038 + checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 3039 + dependencies = [ 3040 + "proc-macro2", 3041 + "quote", 3042 + "unicode-ident", 3043 + ] 3044 + 3045 + [[package]] 3046 + name = "sync_wrapper" 3047 + version = "0.1.2" 3048 + source = "registry+https://github.com/rust-lang/crates.io-index" 3049 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 3050 + 3051 + [[package]] 3052 + name = "tempfile" 3053 + version = "3.3.0" 3054 + source = "registry+https://github.com/rust-lang/crates.io-index" 3055 + checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 3056 + dependencies = [ 3057 + "cfg-if", 3058 + "fastrand", 3059 + "libc", 3060 + "redox_syscall", 3061 + "remove_dir_all", 3062 + "winapi", 3063 + ] 3064 + 3065 + [[package]] 3066 + name = "tendril" 3067 + version = "0.4.3" 3068 + source = "registry+https://github.com/rust-lang/crates.io-index" 3069 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 3070 + dependencies = [ 3071 + "futf", 3072 + "mac", 3073 + "utf-8", 3074 + ] 3075 + 3076 + [[package]] 3077 + name = "termcolor" 3078 + version = "1.1.3" 3079 + source = "registry+https://github.com/rust-lang/crates.io-index" 3080 + checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 3081 + dependencies = [ 3082 + "winapi-util", 3083 + ] 3084 + 3085 + [[package]] 3086 + name = "thiserror" 3087 + version = "1.0.37" 3088 + source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" 3090 + dependencies = [ 3091 + "thiserror-impl", 3092 + ] 3093 + 3094 + [[package]] 3095 + name = "thiserror-impl" 3096 + version = "1.0.37" 3097 + source = "registry+https://github.com/rust-lang/crates.io-index" 3098 + checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" 3099 + dependencies = [ 3100 + "proc-macro2", 3101 + "quote", 3102 + "syn", 3103 + ] 3104 + 3105 + [[package]] 3106 + name = "thread_local" 3107 + version = "1.1.4" 3108 + source = "registry+https://github.com/rust-lang/crates.io-index" 3109 + checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 3110 + dependencies = [ 3111 + "once_cell", 3112 + ] 3113 + 3114 + [[package]] 3115 + name = "time" 3116 + version = "0.1.44" 3117 + source = "registry+https://github.com/rust-lang/crates.io-index" 3118 + checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" 3119 + dependencies = [ 3120 + "libc", 3121 + "wasi 0.10.0+wasi-snapshot-preview1", 3122 + "winapi", 3123 + ] 3124 + 3125 + [[package]] 3126 + name = "time" 3127 + version = "0.3.17" 3128 + source = "registry+https://github.com/rust-lang/crates.io-index" 3129 + checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 3130 + dependencies = [ 3131 + "itoa", 3132 + "serde", 3133 + "time-core", 3134 + "time-macros", 3135 + ] 3136 + 3137 + [[package]] 3138 + name = "time-core" 3139 + version = "0.1.0" 3140 + source = "registry+https://github.com/rust-lang/crates.io-index" 3141 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3142 + 3143 + [[package]] 3144 + name = "time-macros" 3145 + version = "0.2.6" 3146 + source = "registry+https://github.com/rust-lang/crates.io-index" 3147 + checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 3148 + dependencies = [ 3149 + "time-core", 3150 + ] 3151 + 3152 + [[package]] 3153 + name = "tinystr" 3154 + version = "0.7.0" 3155 + source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "f8aeafdfd935e4a7fe16a91ab711fa52d54df84f9c8f7ca5837a9d1d902ef4c2" 3157 + dependencies = [ 3158 + "displaydoc", 3159 + ] 3160 + 3161 + [[package]] 3162 + name = "tinyvec" 3163 + version = "1.6.0" 3164 + source = "registry+https://github.com/rust-lang/crates.io-index" 3165 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3166 + dependencies = [ 3167 + "tinyvec_macros", 3168 + ] 3169 + 3170 + [[package]] 3171 + name = "tinyvec_macros" 3172 + version = "0.1.0" 3173 + source = "registry+https://github.com/rust-lang/crates.io-index" 3174 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3175 + 3176 + [[package]] 3177 + name = "tokio" 3178 + version = "1.25.0" 3179 + source = "registry+https://github.com/rust-lang/crates.io-index" 3180 + checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" 3181 + dependencies = [ 3182 + "autocfg", 3183 + "bytes", 3184 + "libc", 3185 + "memchr", 3186 + "mio", 3187 + "num_cpus", 3188 + "parking_lot", 3189 + "pin-project-lite", 3190 + "signal-hook-registry", 3191 + "socket2", 3192 + "tokio-macros", 3193 + "windows-sys", 3194 + ] 3195 + 3196 + [[package]] 3197 + name = "tokio-macros" 3198 + version = "1.8.2" 3199 + source = "registry+https://github.com/rust-lang/crates.io-index" 3200 + checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" 3201 + dependencies = [ 3202 + "proc-macro2", 3203 + "quote", 3204 + "syn", 3205 + ] 3206 + 3207 + [[package]] 3208 + name = "tokio-rustls" 3209 + version = "0.23.4" 3210 + source = "registry+https://github.com/rust-lang/crates.io-index" 3211 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 3212 + dependencies = [ 3213 + "rustls", 3214 + "tokio", 3215 + "webpki", 3216 + ] 3217 + 3218 + [[package]] 3219 + name = "tokio-socks" 3220 + version = "0.5.1" 3221 + source = "registry+https://github.com/rust-lang/crates.io-index" 3222 + checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0" 3223 + dependencies = [ 3224 + "either", 3225 + "futures-util", 3226 + "thiserror", 3227 + "tokio", 3228 + ] 3229 + 3230 + [[package]] 3231 + name = "tokio-util" 3232 + version = "0.7.4" 3233 + source = "registry+https://github.com/rust-lang/crates.io-index" 3234 + checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740" 3235 + dependencies = [ 3236 + "bytes", 3237 + "futures-core", 3238 + "futures-sink", 3239 + "pin-project-lite", 3240 + "tokio", 3241 + "tracing", 3242 + ] 3243 + 3244 + [[package]] 3245 + name = "toml" 3246 + version = "0.5.9" 3247 + source = "registry+https://github.com/rust-lang/crates.io-index" 3248 + checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" 3249 + dependencies = [ 3250 + "serde", 3251 + ] 3252 + 3253 + [[package]] 3254 + name = "tower" 3255 + version = "0.4.13" 3256 + source = "registry+https://github.com/rust-lang/crates.io-index" 3257 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 3258 + dependencies = [ 3259 + "futures-core", 3260 + "futures-util", 3261 + "pin-project", 3262 + "pin-project-lite", 3263 + "tokio", 3264 + "tower-layer", 3265 + "tower-service", 3266 + "tracing", 3267 + ] 3268 + 3269 + [[package]] 3270 + name = "tower-http" 3271 + version = "0.3.5" 3272 + source = "registry+https://github.com/rust-lang/crates.io-index" 3273 + checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" 3274 + dependencies = [ 3275 + "bitflags", 3276 + "bytes", 3277 + "futures-core", 3278 + "futures-util", 3279 + "http", 3280 + "http-body", 3281 + "http-range-header", 3282 + "pin-project-lite", 3283 + "tower", 3284 + "tower-layer", 3285 + "tower-service", 3286 + "tracing", 3287 + ] 3288 + 3289 + [[package]] 3290 + name = "tower-layer" 3291 + version = "0.3.2" 3292 + source = "registry+https://github.com/rust-lang/crates.io-index" 3293 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 3294 + 3295 + [[package]] 3296 + name = "tower-service" 3297 + version = "0.3.2" 3298 + source = "registry+https://github.com/rust-lang/crates.io-index" 3299 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 3300 + 3301 + [[package]] 3302 + name = "tracing" 3303 + version = "0.1.37" 3304 + source = "registry+https://github.com/rust-lang/crates.io-index" 3305 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 3306 + dependencies = [ 3307 + "cfg-if", 3308 + "log", 3309 + "pin-project-lite", 3310 + "tracing-attributes", 3311 + "tracing-core", 3312 + ] 3313 + 3314 + [[package]] 3315 + name = "tracing-appender" 3316 + version = "0.2.2" 3317 + source = "registry+https://github.com/rust-lang/crates.io-index" 3318 + checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e" 3319 + dependencies = [ 3320 + "crossbeam-channel", 3321 + "time 0.3.17", 3322 + "tracing-subscriber", 3323 + ] 3324 + 3325 + [[package]] 3326 + name = "tracing-attributes" 3327 + version = "0.1.23" 3328 + source = "registry+https://github.com/rust-lang/crates.io-index" 3329 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 3330 + dependencies = [ 3331 + "proc-macro2", 3332 + "quote", 3333 + "syn", 3334 + ] 3335 + 3336 + [[package]] 3337 + name = "tracing-core" 3338 + version = "0.1.30" 3339 + source = "registry+https://github.com/rust-lang/crates.io-index" 3340 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 3341 + dependencies = [ 3342 + "once_cell", 3343 + "valuable", 3344 + ] 3345 + 3346 + [[package]] 3347 + name = "tracing-log" 3348 + version = "0.1.3" 3349 + source = "registry+https://github.com/rust-lang/crates.io-index" 3350 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 3351 + dependencies = [ 3352 + "lazy_static", 3353 + "log", 3354 + "tracing-core", 3355 + ] 3356 + 3357 + [[package]] 3358 + name = "tracing-subscriber" 3359 + version = "0.3.16" 3360 + source = "registry+https://github.com/rust-lang/crates.io-index" 3361 + checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 3362 + dependencies = [ 3363 + "matchers", 3364 + "nu-ansi-term", 3365 + "once_cell", 3366 + "regex", 3367 + "sharded-slab", 3368 + "smallvec", 3369 + "thread_local", 3370 + "tracing", 3371 + "tracing-core", 3372 + "tracing-log", 3373 + ] 3374 + 3375 + [[package]] 3376 + name = "try-lock" 3377 + version = "0.2.3" 3378 + source = "registry+https://github.com/rust-lang/crates.io-index" 3379 + checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" 3380 + 3381 + [[package]] 3382 + name = "twoway" 3383 + version = "0.2.2" 3384 + source = "registry+https://github.com/rust-lang/crates.io-index" 3385 + checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47" 3386 + dependencies = [ 3387 + "memchr", 3388 + "unchecked-index", 3389 + ] 3390 + 3391 + [[package]] 3392 + name = "type-map" 3393 + version = "0.4.0" 3394 + source = "registry+https://github.com/rust-lang/crates.io-index" 3395 + checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46" 3396 + dependencies = [ 3397 + "rustc-hash", 3398 + ] 3399 + 3400 + [[package]] 3401 + name = "typenum" 3402 + version = "1.15.0" 3403 + source = "registry+https://github.com/rust-lang/crates.io-index" 3404 + checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" 3405 + 3406 + [[package]] 3407 + name = "unchecked-index" 3408 + version = "0.2.2" 3409 + source = "registry+https://github.com/rust-lang/crates.io-index" 3410 + checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" 3411 + 3412 + [[package]] 3413 + name = "unic-char-property" 3414 + version = "0.9.0" 3415 + source = "registry+https://github.com/rust-lang/crates.io-index" 3416 + checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" 3417 + dependencies = [ 3418 + "unic-char-range", 3419 + ] 3420 + 3421 + [[package]] 3422 + name = "unic-char-range" 3423 + version = "0.9.0" 3424 + source = "registry+https://github.com/rust-lang/crates.io-index" 3425 + checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" 3426 + 3427 + [[package]] 3428 + name = "unic-common" 3429 + version = "0.9.0" 3430 + source = "registry+https://github.com/rust-lang/crates.io-index" 3431 + checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" 3432 + 3433 + [[package]] 3434 + name = "unic-langid" 3435 + version = "0.9.1" 3436 + source = "registry+https://github.com/rust-lang/crates.io-index" 3437 + checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f" 3438 + dependencies = [ 3439 + "unic-langid-impl", 3440 + "unic-langid-macros", 3441 + ] 3442 + 3443 + [[package]] 3444 + name = "unic-langid-impl" 3445 + version = "0.9.1" 3446 + source = "registry+https://github.com/rust-lang/crates.io-index" 3447 + checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff" 3448 + dependencies = [ 3449 + "tinystr", 3450 + ] 3451 + 3452 + [[package]] 3453 + name = "unic-langid-macros" 3454 + version = "0.9.1" 3455 + source = "registry+https://github.com/rust-lang/crates.io-index" 3456 + checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe" 3457 + dependencies = [ 3458 + "proc-macro-hack", 3459 + "tinystr", 3460 + "unic-langid-impl", 3461 + "unic-langid-macros-impl", 3462 + ] 3463 + 3464 + [[package]] 3465 + name = "unic-langid-macros-impl" 3466 + version = "0.9.1" 3467 + source = "registry+https://github.com/rust-lang/crates.io-index" 3468 + checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8" 3469 + dependencies = [ 3470 + "proc-macro-hack", 3471 + "quote", 3472 + "syn", 3473 + "unic-langid-impl", 3474 + ] 3475 + 3476 + [[package]] 3477 + name = "unic-ucd-category" 3478 + version = "0.9.0" 3479 + source = "registry+https://github.com/rust-lang/crates.io-index" 3480 + checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0" 3481 + dependencies = [ 3482 + "matches", 3483 + "unic-char-property", 3484 + "unic-char-range", 3485 + "unic-ucd-version", 3486 + ] 3487 + 3488 + [[package]] 3489 + name = "unic-ucd-version" 3490 + version = "0.9.0" 3491 + source = "registry+https://github.com/rust-lang/crates.io-index" 3492 + checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" 3493 + dependencies = [ 3494 + "unic-common", 3495 + ] 3496 + 3497 + [[package]] 3498 + name = "unicase" 3499 + version = "2.6.0" 3500 + source = "registry+https://github.com/rust-lang/crates.io-index" 3501 + checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" 3502 + dependencies = [ 3503 + "version_check", 3504 + ] 3505 + 3506 + [[package]] 3507 + name = "unicode-bidi" 3508 + version = "0.3.8" 3509 + source = "registry+https://github.com/rust-lang/crates.io-index" 3510 + checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" 3511 + 3512 + [[package]] 3513 + name = "unicode-ident" 3514 + version = "1.0.5" 3515 + source = "registry+https://github.com/rust-lang/crates.io-index" 3516 + checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 3517 + 3518 + [[package]] 3519 + name = "unicode-normalization" 3520 + version = "0.1.22" 3521 + source = "registry+https://github.com/rust-lang/crates.io-index" 3522 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3523 + dependencies = [ 3524 + "tinyvec", 3525 + ] 3526 + 3527 + [[package]] 3528 + name = "unicode-segmentation" 3529 + version = "1.10.0" 3530 + source = "registry+https://github.com/rust-lang/crates.io-index" 3531 + checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 3532 + 3533 + [[package]] 3534 + name = "unicode-width" 3535 + version = "0.1.10" 3536 + source = "registry+https://github.com/rust-lang/crates.io-index" 3537 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3538 + 3539 + [[package]] 3540 + name = "untrusted" 3541 + version = "0.7.1" 3542 + source = "registry+https://github.com/rust-lang/crates.io-index" 3543 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 3544 + 3545 + [[package]] 3546 + name = "url" 3547 + version = "2.3.1" 3548 + source = "registry+https://github.com/rust-lang/crates.io-index" 3549 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3550 + dependencies = [ 3551 + "form_urlencoded", 3552 + "idna", 3553 + "percent-encoding", 3554 + "serde", 3555 + ] 3556 + 3557 + [[package]] 3558 + name = "urlparse" 3559 + version = "0.7.3" 3560 + source = "registry+https://github.com/rust-lang/crates.io-index" 3561 + checksum = "110352d4e9076c67839003c7788d8604e24dcded13e0b375af3efaa8cf468517" 3562 + 3563 + [[package]] 3564 + name = "utf-8" 3565 + version = "0.7.6" 3566 + source = "registry+https://github.com/rust-lang/crates.io-index" 3567 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3568 + 3569 + [[package]] 3570 + name = "utime" 3571 + version = "0.3.1" 3572 + source = "registry+https://github.com/rust-lang/crates.io-index" 3573 + checksum = "91baa0c65eabd12fcbdac8cc35ff16159cab95cae96d0222d6d0271db6193cef" 3574 + dependencies = [ 3575 + "libc", 3576 + "winapi", 3577 + ] 3578 + 3579 + [[package]] 3580 + name = "valuable" 3581 + version = "0.1.0" 3582 + source = "registry+https://github.com/rust-lang/crates.io-index" 3583 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3584 + 3585 + [[package]] 3586 + name = "value-bag" 3587 + version = "1.0.0-alpha.9" 3588 + source = "registry+https://github.com/rust-lang/crates.io-index" 3589 + checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" 3590 + dependencies = [ 3591 + "ctor", 3592 + "version_check", 3593 + ] 3594 + 3595 + [[package]] 3596 + name = "vcpkg" 3597 + version = "0.2.15" 3598 + source = "registry+https://github.com/rust-lang/crates.io-index" 3599 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3600 + 3601 + [[package]] 3602 + name = "version_check" 3603 + version = "0.9.4" 3604 + source = "registry+https://github.com/rust-lang/crates.io-index" 3605 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3606 + 3607 + [[package]] 3608 + name = "waker-fn" 3609 + version = "1.1.0" 3610 + source = "registry+https://github.com/rust-lang/crates.io-index" 3611 + checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 3612 + 3613 + [[package]] 3614 + name = "want" 3615 + version = "0.3.0" 3616 + source = "registry+https://github.com/rust-lang/crates.io-index" 3617 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 3618 + dependencies = [ 3619 + "log", 3620 + "try-lock", 3621 + ] 3622 + 3623 + [[package]] 3624 + name = "wasi" 3625 + version = "0.9.0+wasi-snapshot-preview1" 3626 + source = "registry+https://github.com/rust-lang/crates.io-index" 3627 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3628 + 3629 + [[package]] 3630 + name = "wasi" 3631 + version = "0.10.0+wasi-snapshot-preview1" 3632 + source = "registry+https://github.com/rust-lang/crates.io-index" 3633 + checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 3634 + 3635 + [[package]] 3636 + name = "wasi" 3637 + version = "0.11.0+wasi-snapshot-preview1" 3638 + source = "registry+https://github.com/rust-lang/crates.io-index" 3639 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3640 + 3641 + [[package]] 3642 + name = "wasm-bindgen" 3643 + version = "0.2.83" 3644 + source = "registry+https://github.com/rust-lang/crates.io-index" 3645 + checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 3646 + dependencies = [ 3647 + "cfg-if", 3648 + "wasm-bindgen-macro", 3649 + ] 3650 + 3651 + [[package]] 3652 + name = "wasm-bindgen-backend" 3653 + version = "0.2.83" 3654 + source = "registry+https://github.com/rust-lang/crates.io-index" 3655 + checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 3656 + dependencies = [ 3657 + "bumpalo", 3658 + "log", 3659 + "once_cell", 3660 + "proc-macro2", 3661 + "quote", 3662 + "syn", 3663 + "wasm-bindgen-shared", 3664 + ] 3665 + 3666 + [[package]] 3667 + name = "wasm-bindgen-futures" 3668 + version = "0.4.33" 3669 + source = "registry+https://github.com/rust-lang/crates.io-index" 3670 + checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 3671 + dependencies = [ 3672 + "cfg-if", 3673 + "js-sys", 3674 + "wasm-bindgen", 3675 + "web-sys", 3676 + ] 3677 + 3678 + [[package]] 3679 + name = "wasm-bindgen-macro" 3680 + version = "0.2.83" 3681 + source = "registry+https://github.com/rust-lang/crates.io-index" 3682 + checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 3683 + dependencies = [ 3684 + "quote", 3685 + "wasm-bindgen-macro-support", 3686 + ] 3687 + 3688 + [[package]] 3689 + name = "wasm-bindgen-macro-support" 3690 + version = "0.2.83" 3691 + source = "registry+https://github.com/rust-lang/crates.io-index" 3692 + checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 3693 + dependencies = [ 3694 + "proc-macro2", 3695 + "quote", 3696 + "syn", 3697 + "wasm-bindgen-backend", 3698 + "wasm-bindgen-shared", 3699 + ] 3700 + 3701 + [[package]] 3702 + name = "wasm-bindgen-shared" 3703 + version = "0.2.83" 3704 + source = "registry+https://github.com/rust-lang/crates.io-index" 3705 + checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 3706 + 3707 + [[package]] 3708 + name = "wasm-streams" 3709 + version = "0.2.3" 3710 + source = "registry+https://github.com/rust-lang/crates.io-index" 3711 + checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078" 3712 + dependencies = [ 3713 + "futures-util", 3714 + "js-sys", 3715 + "wasm-bindgen", 3716 + "wasm-bindgen-futures", 3717 + "web-sys", 3718 + ] 3719 + 3720 + [[package]] 3721 + name = "web-sys" 3722 + version = "0.3.60" 3723 + source = "registry+https://github.com/rust-lang/crates.io-index" 3724 + checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 3725 + dependencies = [ 3726 + "js-sys", 3727 + "wasm-bindgen", 3728 + ] 3729 + 3730 + [[package]] 3731 + name = "webpki" 3732 + version = "0.22.0" 3733 + source = "registry+https://github.com/rust-lang/crates.io-index" 3734 + checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" 3735 + dependencies = [ 3736 + "ring", 3737 + "untrusted", 3738 + ] 3739 + 3740 + [[package]] 3741 + name = "webpki-roots" 3742 + version = "0.22.5" 3743 + source = "registry+https://github.com/rust-lang/crates.io-index" 3744 + checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be" 3745 + dependencies = [ 3746 + "webpki", 3747 + ] 3748 + 3749 + [[package]] 3750 + name = "wepoll-ffi" 3751 + version = "0.1.2" 3752 + source = "registry+https://github.com/rust-lang/crates.io-index" 3753 + checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" 3754 + dependencies = [ 3755 + "cc", 3756 + ] 3757 + 3758 + [[package]] 3759 + name = "which" 3760 + version = "4.3.0" 3761 + source = "registry+https://github.com/rust-lang/crates.io-index" 3762 + checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b" 3763 + dependencies = [ 3764 + "either", 3765 + "libc", 3766 + "once_cell", 3767 + ] 3768 + 3769 + [[package]] 3770 + name = "winapi" 3771 + version = "0.3.9" 3772 + source = "registry+https://github.com/rust-lang/crates.io-index" 3773 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3774 + dependencies = [ 3775 + "winapi-i686-pc-windows-gnu", 3776 + "winapi-x86_64-pc-windows-gnu", 3777 + ] 3778 + 3779 + [[package]] 3780 + name = "winapi-i686-pc-windows-gnu" 3781 + version = "0.4.0" 3782 + source = "registry+https://github.com/rust-lang/crates.io-index" 3783 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3784 + 3785 + [[package]] 3786 + name = "winapi-util" 3787 + version = "0.1.5" 3788 + source = "registry+https://github.com/rust-lang/crates.io-index" 3789 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3790 + dependencies = [ 3791 + "winapi", 3792 + ] 3793 + 3794 + [[package]] 3795 + name = "winapi-x86_64-pc-windows-gnu" 3796 + version = "0.4.0" 3797 + source = "registry+https://github.com/rust-lang/crates.io-index" 3798 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3799 + 3800 + [[package]] 3801 + name = "windows" 3802 + version = "0.44.0" 3803 + source = "registry+https://github.com/rust-lang/crates.io-index" 3804 + checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b" 3805 + dependencies = [ 3806 + "windows-targets", 3807 + ] 3808 + 3809 + [[package]] 3810 + name = "windows-sys" 3811 + version = "0.42.0" 3812 + source = "registry+https://github.com/rust-lang/crates.io-index" 3813 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3814 + dependencies = [ 3815 + "windows_aarch64_gnullvm", 3816 + "windows_aarch64_msvc", 3817 + "windows_i686_gnu", 3818 + "windows_i686_msvc", 3819 + "windows_x86_64_gnu", 3820 + "windows_x86_64_gnullvm", 3821 + "windows_x86_64_msvc", 3822 + ] 3823 + 3824 + [[package]] 3825 + name = "windows-targets" 3826 + version = "0.42.1" 3827 + source = "registry+https://github.com/rust-lang/crates.io-index" 3828 + checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 3829 + dependencies = [ 3830 + "windows_aarch64_gnullvm", 3831 + "windows_aarch64_msvc", 3832 + "windows_i686_gnu", 3833 + "windows_i686_msvc", 3834 + "windows_x86_64_gnu", 3835 + "windows_x86_64_gnullvm", 3836 + "windows_x86_64_msvc", 3837 + ] 3838 + 3839 + [[package]] 3840 + name = "windows_aarch64_gnullvm" 3841 + version = "0.42.1" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 3844 + 3845 + [[package]] 3846 + name = "windows_aarch64_msvc" 3847 + version = "0.42.1" 3848 + source = "registry+https://github.com/rust-lang/crates.io-index" 3849 + checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 3850 + 3851 + [[package]] 3852 + name = "windows_i686_gnu" 3853 + version = "0.42.1" 3854 + source = "registry+https://github.com/rust-lang/crates.io-index" 3855 + checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 3856 + 3857 + [[package]] 3858 + name = "windows_i686_msvc" 3859 + version = "0.42.1" 3860 + source = "registry+https://github.com/rust-lang/crates.io-index" 3861 + checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 3862 + 3863 + [[package]] 3864 + name = "windows_x86_64_gnu" 3865 + version = "0.42.1" 3866 + source = "registry+https://github.com/rust-lang/crates.io-index" 3867 + checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 3868 + 3869 + [[package]] 3870 + name = "windows_x86_64_gnullvm" 3871 + version = "0.42.1" 3872 + source = "registry+https://github.com/rust-lang/crates.io-index" 3873 + checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 3874 + 3875 + [[package]] 3876 + name = "windows_x86_64_msvc" 3877 + version = "0.42.1" 3878 + source = "registry+https://github.com/rust-lang/crates.io-index" 3879 + checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 3880 + 3881 + [[package]] 3882 + name = "winreg" 3883 + version = "0.10.1" 3884 + source = "registry+https://github.com/rust-lang/crates.io-index" 3885 + checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 3886 + dependencies = [ 3887 + "winapi", 3888 + ] 3889 + 3890 + [[package]] 3891 + name = "workspace-hack" 3892 + version = "0.1.0" 3893 + dependencies = [ 3894 + "bytes", 3895 + "cc", 3896 + "crossbeam-utils", 3897 + "either", 3898 + "flate2", 3899 + "futures-channel", 3900 + "futures-io", 3901 + "futures-task", 3902 + "futures-util", 3903 + "getrandom 0.2.8", 3904 + "hashbrown", 3905 + "hmac", 3906 + "hyper", 3907 + "indexmap", 3908 + "itertools", 3909 + "log", 3910 + "num-traits", 3911 + "phf_shared 0.11.1", 3912 + "prost", 3913 + "rand 0.7.3", 3914 + "rand 0.8.5", 3915 + "rand_core 0.6.4", 3916 + "regex", 3917 + "regex-syntax", 3918 + "scopeguard", 3919 + "serde", 3920 + "serde_json", 3921 + "sha2", 3922 + "snafu", 3923 + "syn", 3924 + "time 0.3.17", 3925 + "time-macros", 3926 + "tokio", 3927 + "tokio-util", 3928 + "tracing", 3929 + "tracing-core", 3930 + "url", 3931 + "zip", 3932 + "zstd 0.11.2+zstd.1.5.2", 3933 + "zstd 0.12.3+zstd.1.5.2", 3934 + "zstd-safe 5.0.2+zstd.1.5.2", 3935 + "zstd-safe 6.0.3+zstd.1.5.2", 3936 + "zstd-sys", 3937 + ] 3938 + 3939 + [[package]] 3940 + name = "zip" 3941 + version = "0.6.3" 3942 + source = "registry+https://github.com/rust-lang/crates.io-index" 3943 + checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080" 3944 + dependencies = [ 3945 + "aes", 3946 + "byteorder", 3947 + "bzip2", 3948 + "constant_time_eq 0.1.5", 3949 + "crc32fast", 3950 + "crossbeam-utils", 3951 + "flate2", 3952 + "hmac", 3953 + "pbkdf2", 3954 + "sha1", 3955 + "time 0.3.17", 3956 + "zstd 0.11.2+zstd.1.5.2", 3957 + ] 3958 + 3959 + [[package]] 3960 + name = "zstd" 3961 + version = "0.11.2+zstd.1.5.2" 3962 + source = "registry+https://github.com/rust-lang/crates.io-index" 3963 + checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" 3964 + dependencies = [ 3965 + "zstd-safe 5.0.2+zstd.1.5.2", 3966 + ] 3967 + 3968 + [[package]] 3969 + name = "zstd" 3970 + version = "0.12.3+zstd.1.5.2" 3971 + source = "registry+https://github.com/rust-lang/crates.io-index" 3972 + checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" 3973 + dependencies = [ 3974 + "zstd-safe 6.0.3+zstd.1.5.2", 3975 + ] 3976 + 3977 + [[package]] 3978 + name = "zstd-safe" 3979 + version = "5.0.2+zstd.1.5.2" 3980 + source = "registry+https://github.com/rust-lang/crates.io-index" 3981 + checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" 3982 + dependencies = [ 3983 + "libc", 3984 + "zstd-sys", 3985 + ] 3986 + 3987 + [[package]] 3988 + name = "zstd-safe" 3989 + version = "6.0.3+zstd.1.5.2" 3990 + source = "registry+https://github.com/rust-lang/crates.io-index" 3991 + checksum = "68e4a3f57d13d0ab7e478665c60f35e2a613dcd527851c2c7287ce5c787e134a" 3992 + dependencies = [ 3993 + "libc", 3994 + "zstd-sys", 3995 + ] 3996 + 3997 + [[package]] 3998 + name = "zstd-sys" 3999 + version = "2.0.1+zstd.1.5.2" 4000 + source = "registry+https://github.com/rust-lang/crates.io-index" 4001 + checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b" 4002 + dependencies = [ 4003 + "cc", 4004 + "libc", 4005 + ]
+41 -57
pkgs/servers/ankisyncd/default.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , python3 4 - }: 1 + { lib, runCommand, fetchFromGitHub, rustPlatform, protobuf }: 5 2 6 - python3.pkgs.buildPythonApplication rec { 3 + let 7 4 pname = "ankisyncd"; 8 - version = "2.2.0"; 9 - src = fetchFromGitHub { 10 - owner = "ankicommunity"; 11 - repo = "anki-sync-server"; 12 - rev = version; 13 - hash = "sha256-RXrdJGJ+HMSpDGQBuVPPqsh3+uwAgE6f7ZJ0yFRMI8I="; 14 - fetchSubmodules = true; 15 - }; 16 - format = "other"; 5 + version = "1.1.4"; 17 6 18 - installPhase = '' 19 - runHook preInstall 20 - 21 - mkdir -p $out/${python3.sitePackages} 22 - 23 - cp -r ankisyncd utils ankisyncd.conf $out/${python3.sitePackages} 24 - cp -r anki-bundled/anki $out/${python3.sitePackages} 25 - mkdir $out/share 26 - cp ankisyncctl.py $out/share/ 27 - 28 - runHook postInstall 29 - ''; 30 - 31 - fixupPhase = '' 32 - PYTHONPATH="$PYTHONPATH:$out/${python3.sitePackages}" 33 - 34 - makeWrapper "${python3.interpreter}" "$out/bin/ankisyncd" \ 35 - --set PYTHONPATH $PYTHONPATH \ 36 - --add-flags "-m ankisyncd" 37 - 38 - makeWrapper "${python3.interpreter}" "$out/bin/ankisyncctl" \ 39 - --set PYTHONPATH $PYTHONPATH \ 40 - --add-flags "$out/share/ankisyncctl.py" 7 + # anki-sync-server-rs expects anki sources in the 'anki' folder 8 + # of its own source tree, with a patch applied (mostly to make 9 + # some modules public): prepare our own 'src' manually 10 + src = runCommand "anki-sync-server-rs-src" { 11 + src = fetchFromGitHub { 12 + owner = "ankicommunity"; 13 + repo = "anki-sync-server-rs"; 14 + rev = version; 15 + hash = "sha256-iL4lJJAV4SrNeRX3s0ZpJ//lrwoKjLsltlX4d2wP6O0="; 16 + }; 17 + } '' 18 + cp -r "$src/." "$out" 19 + chmod +w "$out" 20 + cp -r "${ankiSrc}" "$out/anki" 21 + chmod -R +w "$out/anki" 22 + patch -d "$out/anki" -Np1 < "$src/anki_patch/d9d36078f17a2b4b8b44fcb802eb274911ebabe7_anki_rslib.patch" 41 23 ''; 42 24 43 - nativeCheckInputs = with python3.pkgs; [ 44 - pytest 45 - webtest 46 - ]; 25 + # Note we do not use anki.src because the patch in ankisyncd's 26 + # sources expect a fixed version, so we pin it here. 27 + ankiSrc = fetchFromGitHub { 28 + owner = "ankitects"; 29 + repo = "anki"; 30 + rev = "2.1.60"; 31 + hash = "sha256-hNrf6asxF7r7QK2XO150yiRjyHAYKN8OFCFYX0SAiwA="; 32 + fetchSubmodules = true; 33 + }; 34 + in rustPlatform.buildRustPackage { 35 + inherit pname version src; 47 36 48 - buildInputs = [ ]; 49 - 50 - propagatedBuildInputs = with python3.pkgs; [ 51 - decorator 52 - requests 53 - ]; 37 + cargoLock = { 38 + lockFile = ./Cargo.lock; 39 + outputHashes = { 40 + "csv-1.1.6" = "sha256-w728ffOVkI+IfK6FbmkGhr0CjuyqgJnPB1kutMJIUYg="; 41 + }; 42 + }; 54 43 55 - checkPhase = '' 56 - # skip these tests, our files are too young: 57 - # tests/test_web_media.py::SyncAppFunctionalMediaTest::test_sync_mediaChanges ValueError: ZIP does not support timestamps before 1980 58 - pytest --ignore tests/test_web_media.py tests/ 59 - ''; 44 + nativeBuildInputs = [ protobuf ]; 60 45 61 46 meta = with lib; { 62 - description = "Self-hosted Anki sync server"; 63 - maintainers = with maintainers; [ matt-snider ]; 64 - homepage = "https://github.com/ankicommunity/anki-sync-server"; 65 - license = licenses.agpl3Only; 66 - platforms = platforms.linux; 47 + description = "Standalone unofficial anki sync server"; 48 + homepage = "https://github.com/ankicommunity/anki-sync-server-rs"; 49 + license = with licenses; [ agpl3Only ]; 50 + maintainers = with maintainers; [ martinetd ]; 67 51 }; 68 52 }
+1 -3
pkgs/top-level/all-packages.nix
··· 240 240 241 241 anders = callPackage ../applications/science/logic/anders { }; 242 242 243 - ankisyncd = callPackage ../servers/ankisyncd { 244 - python3 = python39; 245 - }; 243 + ankisyncd = callPackage ../servers/ankisyncd { }; 246 244 247 245 ariang = callPackage ../servers/ariang { }; 248 246