hoc/Cargo.lock

3224 lines
76 KiB
Plaintext
Raw Normal View History

2019-04-16 16:57:06 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-09-03 13:13:03 +02:00
version = 3
[[package]]
name = "ab_glyph"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5110f1c78cf582855d895ecd0746b653db010cec6d9f5575293f27934d980a39"
dependencies = [
"ab_glyph_rasterizer",
"owned_ttf_parser",
]
[[package]]
name = "ab_glyph_rasterizer"
2023-04-13 11:55:52 +02:00
version = "0.1.8"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046"
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-codec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
dependencies = [
"bitflags 1.3.2",
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
2022-06-16 13:34:20 +02:00
"tokio-util",
"tracing",
2020-09-12 14:01:59 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-http"
2023-04-13 11:55:52 +02:00
version = "3.3.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
2023-04-13 11:55:52 +02:00
"ahash 0.8.3",
"base64 0.21.2",
"bitflags 1.3.2",
2022-01-29 21:18:50 +01:00
"brotli",
2021-09-03 13:13:03 +02:00
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2021-02-26 16:04:58 +01:00
"h2",
"http",
"httparse",
"httpdate",
2022-02-17 12:01:16 +01:00
"itoa",
"language-tags",
2021-09-03 13:13:03 +02:00
"local-channel",
"mime",
"percent-encoding",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"rand",
2022-06-16 13:34:20 +02:00
"sha1",
2021-09-03 13:13:03 +02:00
"smallvec",
"tokio",
"tokio-util",
2022-06-16 13:34:20 +02:00
"tracing",
2021-09-03 13:13:03 +02:00
"zstd",
]
[[package]]
name = "actix-macros"
version = "0.2.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2019-04-16 16:57:06 +02:00
dependencies = [
"quote",
2023-04-13 11:55:52 +02:00
"syn 1.0.109",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-router"
2023-04-13 11:55:52 +02:00
version = "0.5.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
2019-04-16 16:57:06 +02:00
dependencies = [
"bytestring",
"http",
"regex",
"serde",
2023-04-13 11:55:52 +02:00
"tracing",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-rt"
version = "2.8.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-macros",
2021-09-03 13:13:03 +02:00
"futures-core",
2021-02-26 16:04:58 +01:00
"tokio",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-server"
2023-04-13 11:55:52 +02:00
version = "2.2.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-rt",
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
2021-09-03 13:13:03 +02:00
"futures-core",
2022-01-29 21:18:50 +01:00
"futures-util",
"mio",
"num_cpus",
2022-01-29 21:18:50 +01:00
"socket2",
2021-09-03 13:13:03 +02:00
"tokio",
2022-03-09 18:55:23 +01:00
"tracing",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-service"
2022-01-29 21:18:50 +01:00
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
2021-09-03 13:13:03 +02:00
"futures-core",
"paste",
"pin-project-lite",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-tls"
2022-02-17 12:01:16 +01:00
version = "3.0.3"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-17 12:01:16 +01:00
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
2020-09-12 14:01:59 +02:00
dependencies = [
"actix-codec",
2021-09-03 13:13:03 +02:00
"actix-rt",
2020-09-12 14:01:59 +02:00
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
2021-09-03 13:13:03 +02:00
"futures-core",
"http",
"log",
2022-01-29 21:18:50 +01:00
"pin-project-lite",
2022-06-16 13:34:20 +02:00
"tokio-util",
2020-09-12 14:01:59 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-utils"
2023-04-13 11:55:52 +02:00
version = "3.0.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"local-waker",
"pin-project-lite",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-web"
version = "4.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
"actix-web-codegen",
"ahash 0.7.6",
2021-09-03 13:13:03 +02:00
"bytes",
"bytestring",
2021-09-03 13:13:03 +02:00
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
2020-09-12 14:01:59 +02:00
"futures-core",
"futures-util",
"http",
2022-02-17 12:01:16 +01:00
"itoa",
2021-09-03 13:13:03 +02:00
"language-tags",
"log",
"mime",
2021-09-03 13:13:03 +02:00
"once_cell",
2022-01-29 21:18:50 +01:00
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
2021-09-03 13:13:03 +02:00
"smallvec",
2020-09-12 14:01:59 +02:00
"socket2",
"time",
"url",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-web-codegen"
version = "4.2.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-14 13:03:18 +02:00
"actix-router",
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 1.0.109",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "addr2line"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
dependencies = [
"gimli",
]
2021-02-26 16:28:04 +01:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-09-03 13:13:03 +02:00
[[package]]
name = "ahash"
2022-01-29 21:18:50 +01:00
version = "0.7.6"
2021-09-03 13:13:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-09-03 13:13:03 +02:00
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "ahash"
2023-04-13 11:55:52 +02:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "aho-corasick"
version = "1.0.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
2019-04-16 16:57:06 +02:00
dependencies = [
"memchr",
2019-04-16 16:57:06 +02:00
]
2022-01-29 21:18:50 +01:00
[[package]]
name = "alloc-no-stdlib"
2023-04-13 11:55:52 +02:00
version = "2.0.4"
2022-01-29 21:18:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2022-01-29 21:18:50 +01:00
[[package]]
name = "alloc-stdlib"
2023-04-13 11:55:52 +02:00
version = "0.2.2"
2022-01-29 21:18:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2022-01-29 21:18:50 +01:00
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "anyhow"
version = "1.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
2023-04-13 11:55:52 +02:00
[[package]]
name = "arc-swap"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
2019-04-16 16:57:06 +02:00
[[package]]
name = "async-trait"
version = "0.1.69"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b2d0f03b3640e3a630367e40c468cb7f309529c708ed1d88597047b0e7c6ef7"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "autocfg"
2022-02-17 12:01:16 +01:00
version = "1.1.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-17 12:01:16 +01:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2019-04-16 16:57:06 +02:00
[[package]]
name = "awc"
version = "3.1.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ef547a81796eb2dfe9b345aba34c2e08391a0502493711395b36dd64052b69"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
"actix-tls",
"actix-utils",
"ahash 0.7.6",
"base64 0.21.2",
2021-09-03 13:13:03 +02:00
"bytes",
"cfg-if",
"cookie",
"derive_more",
"futures-core",
"futures-util",
"h2",
"http",
2022-02-17 12:01:16 +01:00
"itoa",
"log",
"mime",
"percent-encoding",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"rand",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "backtrace"
version = "0.3.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "badgers"
version = "1.2.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7954c1a712ad1b82f0f719bbeee7dc5ffd3d13a66c7dfb1e1df02f79e2729441"
2019-04-16 16:57:06 +02:00
dependencies = [
"ab_glyph",
"base64 0.21.2",
"once_cell",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "base64"
2023-04-13 11:55:52 +02:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2019-04-16 16:57:06 +02:00
[[package]]
name = "bitflags"
2021-09-14 13:03:18 +02:00
version = "1.3.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-04-16 16:57:06 +02:00
[[package]]
name = "bitflags"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
[[package]]
name = "block-buffer"
2023-04-13 11:55:52 +02:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
2023-04-13 11:55:52 +02:00
"generic-array",
]
2020-09-12 14:01:59 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "brotli"
version = "3.3.4"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2020-09-12 14:01:59 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "brotli-decompressor"
version = "2.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
dependencies = [
2023-04-13 11:55:52 +02:00
"alloc-no-stdlib",
"alloc-stdlib",
2020-09-12 14:01:59 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "bstr"
version = "1.5.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5"
2019-04-16 16:57:06 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"memchr",
"once_cell",
"regex-automata",
"serde",
2019-04-16 16:57:06 +02:00
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "btoi"
version = "0.4.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad"
2019-04-16 16:57:06 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"num-traits",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "bumpalo"
version = "3.13.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
2019-04-16 16:57:06 +02:00
2019-04-23 18:19:35 +02:00
[[package]]
name = "bytecount"
2022-06-16 13:34:20 +02:00
version = "0.6.3"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
2019-04-23 18:19:35 +02:00
[[package]]
name = "bytes"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2019-04-16 16:57:06 +02:00
[[package]]
name = "bytestring"
2023-04-13 11:55:52 +02:00
version = "1.3.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "cc"
2023-04-13 11:55:52 +02:00
version = "1.0.79"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
dependencies = [
"jobserver",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-04-13 11:55:52 +02:00
[[package]]
name = "clru"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8191fa7302e03607ff0e237d4246cc043ff5b3cb9409d995172ba3bea16b807"
2019-04-21 20:44:29 +02:00
[[package]]
name = "config"
version = "0.13.3"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7"
2019-04-21 20:44:29 +02:00
dependencies = [
"async-trait",
"json5",
"lazy_static",
"nom",
"pathdiff",
"ron",
"rust-ini",
"serde",
"serde_json",
"toml",
"yaml-rust",
2019-04-21 20:44:29 +02:00
]
2021-09-14 13:03:18 +02:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-12 14:01:59 +02:00
[[package]]
name = "cookie"
2023-04-13 11:55:52 +02:00
version = "0.16.2"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2020-09-12 14:01:59 +02:00
dependencies = [
"percent-encoding",
"time",
2021-02-26 16:28:04 +01:00
"version_check",
2020-09-12 14:01:59 +02:00
]
2019-04-21 20:44:29 +02:00
[[package]]
name = "core-foundation"
2022-02-17 12:01:16 +01:00
version = "0.9.3"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-17 12:01:16 +01:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2019-04-21 20:44:29 +02:00
dependencies = [
"core-foundation-sys",
"libc",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "core-foundation-sys"
2023-04-13 11:55:52 +02:00
version = "0.8.4"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2019-04-21 20:44:29 +02:00
2020-09-12 14:01:59 +02:00
[[package]]
2021-09-14 13:03:18 +02:00
name = "cpufeatures"
version = "0.2.8"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c"
2021-09-14 13:03:18 +02:00
dependencies = [
"libc",
]
2020-09-12 14:01:59 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "crc32fast"
2022-02-17 12:01:16 +01:00
version = "1.3.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-17 12:01:16 +01:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02:00
]
2022-01-29 21:18:50 +01:00
[[package]]
name = "crypto-common"
2023-04-13 11:55:52 +02:00
version = "0.1.6"
2022-01-29 21:18:50 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-01-29 21:18:50 +01:00
dependencies = [
2023-04-13 11:55:52 +02:00
"generic-array",
2022-02-17 12:01:16 +01:00
"typenum",
2022-01-29 21:18:50 +01:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "derive_more"
2022-01-29 21:18:50 +01:00
version = "0.99.17"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-14 13:03:18 +02:00
"convert_case",
"proc-macro2",
"quote",
2022-01-29 21:18:50 +01:00
"rustc_version",
2023-04-13 11:55:52 +02:00
"syn 1.0.109",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
2023-04-13 11:55:52 +02:00
"block-buffer",
"crypto-common",
]
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
2022-08-31 11:09:23 +02:00
name = "dotenvy"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
2023-04-13 11:55:52 +02:00
[[package]]
name = "dunce"
version = "1.0.4"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
2023-04-13 11:55:52 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
2019-04-16 16:57:06 +02:00
name = "either"
2023-04-13 11:55:52 +02:00
version = "1.8.1"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2019-04-21 20:44:29 +02:00
[[package]]
name = "encoding_rs"
2023-04-13 11:55:52 +02:00
version = "0.8.32"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "errno"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "fastrand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
2021-09-14 13:03:18 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "filetime"
version = "0.2.21"
2021-09-14 13:03:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
dependencies = [
"cfg-if",
"libc",
"redox_syscall 0.2.16",
"windows-sys",
2023-04-13 11:55:52 +02:00
]
2021-09-14 13:03:18 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "flate2"
version = "1.0.26"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2019-04-16 16:57:06 +02:00
dependencies = [
"crc32fast",
"miniz_oxide",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "fnv"
2021-02-26 16:28:04 +01:00
version = "1.0.7"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2019-04-21 20:44:29 +02:00
dependencies = [
"foreign-types-shared",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "foreign-types-shared"
version = "0.1.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-04-16 16:57:06 +02:00
[[package]]
name = "form_urlencoded"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
dependencies = [
"percent-encoding",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2019-04-16 16:57:06 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "futures-channel"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2019-04-16 16:57:06 +02:00
dependencies = [
"futures-core",
"futures-sink",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "futures-core"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "futures-executor"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2019-04-21 20:44:29 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "futures-io"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2019-04-21 20:44:29 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-macro"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-sink"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-task"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-util"
2023-04-13 11:55:52 +02:00
version = "0.3.28"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"pin-utils",
"slab",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "generic-array"
2023-04-13 11:55:52 +02:00
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "gethostname"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "getrandom"
version = "0.2.10"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2023-04-13 11:55:52 +02:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "gimli"
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2023-04-13 11:55:52 +02:00
[[package]]
name = "git2"
version = "0.17.2"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 1.3.2",
2023-04-13 11:55:52 +02:00
"libc",
"libgit2-sys",
"log",
"openssl-probe",
"openssl-sys",
"url",
]
[[package]]
name = "gix"
version = "0.48.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1e74cea676de7f53a79f3c0365812b11f6814b81e671b8ee4abae6ca09c7881"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-actor",
"gix-attributes",
"gix-commitgraph",
2023-04-13 11:55:52 +02:00
"gix-config",
"gix-credentials",
"gix-date",
"gix-diff",
"gix-discover",
"gix-features",
"gix-fs",
2023-04-13 11:55:52 +02:00
"gix-glob",
"gix-hash",
"gix-hashtable",
"gix-ignore",
2023-04-13 11:55:52 +02:00
"gix-index",
"gix-lock",
"gix-mailmap",
"gix-negotiate",
2023-04-13 11:55:52 +02:00
"gix-object",
"gix-odb",
"gix-pack",
"gix-path",
"gix-prompt",
"gix-ref",
"gix-refspec",
"gix-revision",
"gix-sec",
"gix-tempfile",
"gix-trace",
2023-04-13 11:55:52 +02:00
"gix-traverse",
"gix-url",
"gix-utils",
2023-04-13 11:55:52 +02:00
"gix-validate",
"gix-worktree",
"log",
"once_cell",
"signal-hook",
"smallvec",
"thiserror",
"unicode-normalization",
]
[[package]]
name = "gix-actor"
version = "0.23.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1969b77b9ee4cc1755c841987ec6f7622aaca95e952bcafb76973ae59d1b8716"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"btoi",
"gix-date",
"itoa",
"nom",
"thiserror",
]
[[package]]
name = "gix-attributes"
version = "0.14.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3772b0129dcd1fc73e985bbd08a1482d082097d2915cb1ee31ce8092b8e4434"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-glob",
"gix-path",
"gix-quote",
"kstring",
"log",
"smallvec",
2023-04-13 11:55:52 +02:00
"thiserror",
"unicode-bom",
]
[[package]]
name = "gix-bitmap"
version = "0.2.5"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "311e2fa997be6560c564b070c5da2d56d038b645a94e1e5796d5d85a350da33c"
2023-04-13 11:55:52 +02:00
dependencies = [
"thiserror",
]
[[package]]
name = "gix-chunk"
version = "0.4.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39db5ed0fc0a2e9b1b8265993f7efdbc30379dec268f3b91b7af0c2de4672fdd"
2023-04-13 11:55:52 +02:00
dependencies = [
"thiserror",
]
[[package]]
name = "gix-command"
version = "0.2.6"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb49ab557a37b0abb2415bca2b10e541277dff0565deb5bd5e99fd95f93f51eb"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
]
[[package]]
name = "gix-commitgraph"
version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed42baa50075d41c1a0931074ce1a97c5797c7c6fe7591d9f1f2dcd448532c26"
dependencies = [
"bstr",
"gix-chunk",
"gix-features",
"gix-hash",
"memmap2",
"thiserror",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "gix-config"
version = "0.25.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "817688c7005a716d9363e267913526adea402dabd947f4ba63842d10cc5132af"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-config-value",
"gix-features",
"gix-glob",
"gix-path",
"gix-ref",
"gix-sec",
"log",
"memchr",
"nom",
"once_cell",
"smallvec",
"thiserror",
"unicode-bom",
]
[[package]]
name = "gix-config-value"
version = "0.12.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83960be5e99266bcf55dae5a24731bbd39f643bfb68f27e939d6b06836b5b87d"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.3.3",
2023-04-13 11:55:52 +02:00
"bstr",
"gix-path",
"libc",
"thiserror",
]
[[package]]
name = "gix-credentials"
version = "0.16.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75a75565e0e6e7f80cfa4eb1b05cc448c6846ddd48dcf413a28875fbc11ee9af"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-command",
"gix-config-value",
"gix-path",
"gix-prompt",
"gix-sec",
"gix-url",
"thiserror",
]
[[package]]
name = "gix-date"
version = "0.7.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9a04a1d2387c955ec91059d56b673000dd24f3c07cad08ed253e36381782bf"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"itoa",
"thiserror",
"time",
]
[[package]]
name = "gix-diff"
version = "0.32.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aaf5d9b9b521b284ebe53ee69eee33341835ec70edc314f36b2100ea81396121"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-hash",
"gix-object",
"imara-diff",
"thiserror",
]
[[package]]
name = "gix-discover"
version = "0.21.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "272aad20dc63dedba76615373dd8885fb5aebe4795e5b5b0aa2a24e63c82085c"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"dunce",
"gix-hash",
"gix-path",
"gix-ref",
"gix-sec",
"thiserror",
]
[[package]]
name = "gix-features"
version = "0.31.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06142d8cff5d17509399b04052b64d2f9b3a311d5cff0b1a32b220f62cd0d595"
2023-04-13 11:55:52 +02:00
dependencies = [
"crc32fast",
"flate2",
"gix-hash",
"gix-trace",
2023-04-13 11:55:52 +02:00
"libc",
"once_cell",
"prodash",
"sha1_smol",
"thiserror",
"walkdir",
]
[[package]]
name = "gix-fs"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb15956bc0256594c62a2399fcf6958a02a11724217eddfdc2b49b21b6292496"
dependencies = [
"gix-features",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "gix-glob"
version = "0.9.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c18bdff83143d61e7d60da6183b87542a870d026b2a2d0b30170b8e9c0cd321a"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.3.3",
2023-04-13 11:55:52 +02:00
"bstr",
"gix-features",
"gix-path",
2023-04-13 11:55:52 +02:00
]
[[package]]
name = "gix-hash"
version = "0.11.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0dd58cdbe7ffa4032fc111864c80d5f8cecd9a2c9736c97ae7e5be834188272"
2023-04-13 11:55:52 +02:00
dependencies = [
"hex",
"thiserror",
]
[[package]]
name = "gix-hashtable"
version = "0.2.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e133bc56d938eaec1c675af7c681a51de9662b0ada779f45607b967a10da77a"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-hash",
"hashbrown 0.14.0",
2023-04-13 11:55:52 +02:00
"parking_lot",
]
[[package]]
name = "gix-ignore"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca801f2d0535210f77b33e2c067d565aedecacc82f1b3dbce26da1388ebc4634"
dependencies = [
"bstr",
"gix-glob",
"gix-path",
"unicode-bom",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "gix-index"
version = "0.20.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68099abdf6ee50ae3c897e8b05de96871cbe54d52a37cdf559101f911b883562"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.3.3",
2023-04-13 11:55:52 +02:00
"bstr",
"btoi",
"filetime",
"gix-bitmap",
"gix-features",
"gix-hash",
"gix-lock",
"gix-object",
"gix-traverse",
"itoa",
"memmap2",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-lock"
version = "7.0.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "714bcb13627995ac33716e9c5e4d25612b19947845395f64d2a9cbe6007728e4"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-tempfile",
"gix-utils",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-mailmap"
version = "0.15.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1787e3c37fc43b1f7c0e3be6196c6837b3ba5f869190dfeaa444b816f0a7f34b"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-actor",
"gix-date",
"thiserror",
]
[[package]]
name = "gix-negotiate"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e7bce64d4452dd609f44d04b14b29da2e0ad2c45fcdf4ce1472a5f5f8ec21c2"
dependencies = [
"bitflags 2.3.3",
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-object",
"gix-revwalk",
"smallvec",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-object"
version = "0.32.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a953f3d7ffad16734aa3ab1d05807972c80e339d1bd9dde03e0198716b99e2a6"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"btoi",
"gix-actor",
"gix-date",
2023-04-13 11:55:52 +02:00
"gix-features",
"gix-hash",
"gix-validate",
"hex",
"itoa",
"nom",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-odb"
version = "0.49.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6418cff00ecc2713b58c8e04bff30dda808fbba1a080e7248b299d069894a01"
2023-04-13 11:55:52 +02:00
dependencies = [
"arc-swap",
"gix-date",
2023-04-13 11:55:52 +02:00
"gix-features",
"gix-hash",
"gix-object",
"gix-pack",
"gix-path",
"gix-quote",
"parking_lot",
"tempfile",
"thiserror",
]
[[package]]
name = "gix-pack"
version = "0.39.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "414935138d90043ea5898de7a93f02c2558e52652492719470e203ef26a8fd0a"
2023-04-13 11:55:52 +02:00
dependencies = [
"clru",
"gix-chunk",
"gix-diff",
"gix-features",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-path",
"gix-tempfile",
"gix-traverse",
"memmap2",
"parking_lot",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-path"
version = "0.8.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfca182d2575ded2ed38280f1ebf75cd5d3790b77e0872de07854cf085821fbe"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-trace",
"home",
"once_cell",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-prompt"
version = "0.5.2"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dfd363fd89a40c1e7bff9c9c1b136cd2002480f724b0c627c1bc771cd5480ec"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-command",
"gix-config-value",
"parking_lot",
"rustix 0.37.22",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-quote"
version = "0.4.5"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3874de636c2526de26a3405b8024b23ef1a327bebf4845d770d00d48700b6a40"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"btoi",
"thiserror",
]
[[package]]
name = "gix-ref"
version = "0.32.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39453f4e5f23cddc2e6e4cca2ba20adfdbec29379e3ca829714dfe98ae068ccd"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-actor",
"gix-date",
2023-04-13 11:55:52 +02:00
"gix-features",
"gix-fs",
2023-04-13 11:55:52 +02:00
"gix-hash",
"gix-lock",
"gix-object",
"gix-path",
"gix-tempfile",
"gix-validate",
"memmap2",
"nom",
"thiserror",
]
[[package]]
name = "gix-refspec"
version = "0.13.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e76ff1f82fba295a121e31ab02f69642994e532c45c0c899aa393f4b740302"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-hash",
"gix-revision",
"gix-validate",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-revision"
version = "0.17.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "237428a7d3978e8572964e1e45d984027c2acc94df47e594baa6c4b0da7c9922"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-revwalk",
"thiserror",
]
[[package]]
name = "gix-revwalk"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028d50fcaf8326a8f79a359490d9ca9fb4e2b51ac9ac86503560d0bcc888d2eb"
dependencies = [
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"smallvec",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-sec"
version = "0.8.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ede298863db2a0574a14070991710551e76d1f47c9783b62d4fcbca17f56371c"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.3.3",
2023-04-13 11:55:52 +02:00
"gix-path",
"libc",
"windows",
]
[[package]]
name = "gix-tempfile"
version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fac8310c17406ea619af72f42ee46dac795110f68f41b4f4fa231b69889c6a2"
dependencies = [
"gix-fs",
2023-04-13 11:55:52 +02:00
"libc",
"once_cell",
"parking_lot",
"signal-hook",
"signal-hook-registry",
"tempfile",
]
[[package]]
name = "gix-trace"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "103eac621617be3ebe0605c9065ca51a223279a23218aaf67d10daa6e452f663"
2020-09-12 14:01:59 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-traverse"
version = "0.29.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3cdfd54598db4fae57d5ae6f52958422b2d13382d2745796bfe5c8015ffa86e"
2020-09-12 14:01:59 +02:00
dependencies = [
"gix-commitgraph",
"gix-date",
2023-04-13 11:55:52 +02:00
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-revwalk",
"smallvec",
2023-04-13 11:55:52 +02:00
"thiserror",
2020-09-12 14:01:59 +02:00
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-url"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "beaede6dbc83f408b19adfd95bb52f1dbf01fb8862c3faf6c6243e2e67fcdfa1"
dependencies = [
2023-04-13 11:55:52 +02:00
"bstr",
"gix-features",
"gix-path",
"home",
"thiserror",
"url",
]
[[package]]
name = "gix-utils"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7058c94f4164fcf5b8457d35f6d8f6e1007f9f7f938c9c7684a7e01d23c6ddde"
dependencies = [
"fastrand",
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-validate"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d092b594c8af00a3a31fe526d363ee8a51a6f29d8496cdb991ed2f01ec0ec13"
dependencies = [
2023-04-13 11:55:52 +02:00
"bstr",
"thiserror",
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-worktree"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1363b9aa66b9e14412ac04e1f759827203f491729d92172535a8ce6cde02efa"
2019-04-16 16:57:06 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"bstr",
"filetime",
2023-04-13 11:55:52 +02:00
"gix-attributes",
"gix-features",
"gix-fs",
2023-04-13 11:55:52 +02:00
"gix-glob",
"gix-hash",
"gix-ignore",
2023-04-13 11:55:52 +02:00
"gix-index",
"gix-object",
"gix-path",
"io-close",
"thiserror",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "h2"
version = "0.3.20"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-02-26 16:04:58 +01:00
"tokio",
2022-06-16 13:34:20 +02:00
"tokio-util",
2021-02-26 16:28:04 +01:00
"tracing",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "hashbrown"
2023-04-13 11:55:52 +02:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
"ahash 0.7.6",
]
2021-02-26 16:28:04 +01:00
[[package]]
name = "hashbrown"
version = "0.14.0"
2021-02-26 16:28:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2021-02-26 16:28:04 +01:00
2023-04-13 11:55:52 +02:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2019-04-16 16:57:06 +02:00
[[package]]
name = "hoc"
2023-05-04 12:38:13 +02:00
version = "0.35.0"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-rt",
"actix-web",
2023-04-13 11:55:52 +02:00
"anyhow",
2021-09-03 13:13:03 +02:00
"awc",
"badgers",
2021-09-03 13:13:03 +02:00
"bytes",
"config",
2022-08-31 11:09:23 +02:00
"dotenvy",
"futures",
"git2",
"lazy_static",
"mime",
"number_prefix",
"openssl-probe",
"reqwest",
"ructe",
"serde",
"serde_derive",
"serde_json",
2020-05-15 12:15:18 +02:00
"tempfile",
"tokio",
"tracing",
"tracing-actix-web",
"tracing-bunyan-formatter",
"tracing-futures",
"tracing-log",
"tracing-subscriber",
"vergen",
2019-04-16 16:57:06 +02:00
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "home"
version = "0.5.5"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
2023-04-13 11:55:52 +02:00
dependencies = [
"windows-sys",
2023-04-13 11:55:52 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "http"
2023-04-13 11:55:52 +02:00
version = "0.2.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"fnv",
2022-02-17 12:01:16 +01:00
"itoa",
2019-05-19 13:56:23 +02:00
]
[[package]]
name = "http-body"
2022-06-16 13:34:20 +02:00
version = "0.4.5"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2019-05-19 13:56:23 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"http",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "httparse"
2023-04-13 11:55:52 +02:00
version = "1.8.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2019-04-16 16:57:06 +02:00
[[package]]
name = "httpdate"
2022-01-29 21:18:50 +01:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2019-04-21 20:44:29 +02:00
[[package]]
name = "hyper"
version = "0.14.27"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"futures-channel",
"futures-core",
"futures-util",
2021-02-26 16:04:58 +01:00
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-02-17 12:01:16 +01:00
"itoa",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"socket2",
2021-02-26 16:04:58 +01:00
"tokio",
"tower-service",
"tracing",
"want",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "hyper-tls"
2021-09-03 13:13:03 +02:00
version = "0.5.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"hyper",
"native-tls",
2021-02-26 16:04:58 +01:00
"tokio",
2021-09-03 13:13:03 +02:00
"tokio-native-tls",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "idna"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "imara-diff"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e98c1d0ad70fc91b8b9654b1f33db55e59579d3b3de2bffdced0fdb810570cb8"
dependencies = [
"ahash 0.8.3",
"hashbrown 0.12.3",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "indexmap"
2023-04-13 11:55:52 +02:00
version = "1.9.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
2023-04-13 11:55:52 +02:00
"hashbrown 0.12.3",
2021-02-26 16:28:04 +01:00
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "io-close"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
"hermit-abi",
"libc",
"windows-sys",
]
[[package]]
name = "ipnet"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2019-04-23 18:19:35 +02:00
[[package]]
name = "itertools"
version = "0.11.0"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
2019-04-23 18:19:35 +02:00
dependencies = [
"either",
2019-04-23 18:19:35 +02:00
]
[[package]]
name = "itoa"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
[[package]]
name = "jobserver"
2023-04-13 11:55:52 +02:00
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
version = "0.3.64"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
dependencies = [
"wasm-bindgen",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "json5"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
dependencies = [
"pest",
"pest_derive",
"serde",
]
[[package]]
name = "kstring"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec3066350882a1cd6d950d055997f379ac37fd39f81cd4d8ed186032eb3c5747"
dependencies = [
"static_assertions",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "language-tags"
2021-09-03 13:13:03 +02:00
version = "0.3.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2019-04-16 16:57:06 +02:00
[[package]]
name = "lazy_static"
version = "1.4.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-04-16 16:57:06 +02:00
[[package]]
name = "libc"
version = "0.2.147"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
2019-04-16 16:57:06 +02:00
[[package]]
name = "libgit2-sys"
version = "0.15.2+1.6.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"libssh2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "libssh2-sys"
version = "0.3.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "libz-sys"
version = "1.1.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "linked-hash-map"
2023-04-13 11:55:52 +02:00
version = "0.5.6"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2019-04-16 16:57:06 +02:00
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
2021-09-03 13:13:03 +02:00
[[package]]
name = "local-channel"
2022-06-16 13:34:20 +02:00
version = "0.1.3"
2021-09-03 13:13:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
2021-09-03 13:13:03 +02:00
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
2022-06-16 13:34:20 +02:00
version = "0.1.3"
2021-09-03 13:13:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2021-09-03 13:13:03 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "lock_api"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
dependencies = [
2022-06-16 13:34:20 +02:00
"autocfg",
"scopeguard",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "log"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2019-04-16 16:57:06 +02:00
[[package]]
name = "matchers"
2021-10-27 20:53:34 +02:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-27 20:53:34 +02:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
2019-04-23 18:19:35 +02:00
[[package]]
name = "md5"
version = "0.7.0"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2019-04-23 18:19:35 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "memchr"
2022-06-16 13:34:20 +02:00
version = "2.5.0"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2019-04-21 20:44:29 +02:00
2023-04-13 11:55:52 +02:00
[[package]]
name = "memmap2"
version = "0.7.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6"
2023-04-13 11:55:52 +02:00
dependencies = [
"libc",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "mime"
version = "0.3.17"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2019-04-16 16:57:06 +02:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2019-04-16 16:57:06 +02:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"adler",
2019-04-16 16:57:06 +02:00
]
2022-01-29 21:18:50 +01:00
[[package]]
name = "mio"
version = "0.8.8"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
"log",
2022-06-16 13:34:20 +02:00
"wasi",
"windows-sys",
2019-04-16 16:57:06 +02:00
]
2019-04-21 20:44:29 +02:00
[[package]]
name = "native-tls"
2023-04-13 11:55:52 +02:00
version = "0.2.11"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2019-04-21 20:44:29 +02:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "nom"
2023-04-13 11:55:52 +02:00
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
2021-09-03 13:13:03 +02:00
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "num_cpus"
version = "1.16.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2023-04-13 11:55:52 +02:00
dependencies = [
"hermit-abi",
2023-04-13 11:55:52 +02:00
"libc",
]
[[package]]
name = "num_threads"
version = "0.1.6"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2019-04-16 16:57:06 +02:00
]
2019-04-30 14:18:30 +02:00
[[package]]
name = "number_prefix"
version = "0.4.0"
2019-04-30 14:18:30 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2019-05-01 13:38:57 +02:00
[[package]]
name = "object"
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2019-04-21 20:44:29 +02:00
[[package]]
name = "openssl"
version = "0.10.55"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
2019-04-21 20:44:29 +02:00
dependencies = [
"bitflags 1.3.2",
2021-09-03 13:13:03 +02:00
"cfg-if",
"foreign-types",
"libc",
2021-09-14 13:03:18 +02:00
"once_cell",
2022-06-16 13:34:20 +02:00
"openssl-macros",
"openssl-sys",
2019-04-21 20:44:29 +02:00
]
2022-06-16 13:34:20 +02:00
[[package]]
name = "openssl-macros"
2023-04-13 11:55:52 +02:00
version = "0.1.1"
2022-06-16 13:34:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-06-16 13:34:20 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
2022-06-16 13:34:20 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2019-04-16 16:57:06 +02:00
[[package]]
name = "openssl-sys"
version = "0.9.90"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
"dlv-list",
2023-04-13 11:55:52 +02:00
"hashbrown 0.12.3",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "owned_ttf_parser"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "706de7e2214113d63a8238d1910463cfce781129a6f263d13fdb09ff64355ba4"
dependencies = [
"ttf-parser",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "parking_lot"
2022-06-16 13:34:20 +02:00
version = "0.12.1"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2019-05-19 13:56:23 +02:00
dependencies = [
"lock_api",
"parking_lot_core",
2019-05-19 13:56:23 +02:00
]
[[package]]
2019-05-19 13:56:23 +02:00
name = "parking_lot_core"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"libc",
"redox_syscall 0.3.5",
"smallvec",
"windows-targets",
]
2019-04-16 16:57:06 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "paste"
version = "1.0.13"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4b27ab7be369122c218afc2079489cdcb4b517c0a3fc386ff11e1fedfcc2b35"
2019-05-19 13:56:23 +02:00
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2019-05-19 13:56:23 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "percent-encoding"
version = "2.3.0"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
[[package]]
name = "pest"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f73935e4d55e2abf7f130186537b19e7a4abc886a0252380b59248af473a3fc9"
dependencies = [
2023-04-13 11:55:52 +02:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aef623c9bbfa0eedf5a0efba11a5ee83209c326653ca31ff019bec3a95bfff2b"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3e8cba4ec22bada7fc55ffe51e2deb6a0e0db2d0b7ab0b103acc80d2510c190"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn 2.0.25",
]
[[package]]
name = "pest_meta"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a01f71cb40bd8bb94232df14b946909e14660e33fc05db3e50ae2a82d7ea0ca0"
dependencies = [
2023-04-13 11:55:52 +02:00
"once_cell",
"pest",
2023-04-13 11:55:52 +02:00
"sha2",
]
[[package]]
name = "pin-project"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
dependencies = [
2021-09-03 13:13:03 +02:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
]
[[package]]
name = "pin-project-lite"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-04-16 16:57:06 +02:00
[[package]]
name = "pkg-config"
version = "0.3.27"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2019-04-16 16:57:06 +02:00
[[package]]
name = "ppv-lite86"
2023-04-13 11:55:52 +02:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro2"
version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
dependencies = [
2022-06-16 13:34:20 +02:00
"unicode-ident",
2019-04-21 20:44:29 +02:00
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "prodash"
version = "25.0.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3236ce1618b6da4c7b618e0143c4d5b5dc190f75f81c49f248221382f7e9e9ae"
2023-04-13 11:55:52 +02:00
[[package]]
name = "quote"
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-02-17 12:01:16 +01:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-17 12:01:16 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2021-09-03 13:13:03 +02:00
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-09-14 13:03:18 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2021-09-03 13:13:03 +02:00
"rand_core",
]
[[package]]
name = "rand_core"
2023-04-13 11:55:52 +02:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2021-09-03 13:13:03 +02:00
"getrandom",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "redox_syscall"
2023-04-13 11:55:52 +02:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags 1.3.2",
2023-04-13 11:55:52 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "regex"
version = "1.8.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
2019-04-16 16:57:06 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.7.2",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "regex-automata"
2021-09-14 13:03:18 +02:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "regex-syntax"
2023-04-13 11:55:52 +02:00
version = "0.6.29"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2019-04-16 16:57:06 +02:00
[[package]]
name = "regex-syntax"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
2019-04-21 20:44:29 +02:00
[[package]]
name = "reqwest"
version = "0.11.18"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
dependencies = [
"base64 0.21.2",
2021-09-03 13:13:03 +02:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
2021-02-26 16:04:58 +01:00
"tokio",
2021-09-03 13:13:03 +02:00
"tokio-native-tls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2021-09-03 13:13:03 +02:00
"winreg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "ron"
2022-06-16 13:34:20 +02:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
dependencies = [
2023-04-13 11:55:52 +02:00
"base64 0.13.1",
"bitflags 1.3.2",
"serde",
]
2019-04-23 18:19:35 +02:00
[[package]]
name = "ructe"
version = "0.17.0"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b0a930679d54e46fa4e66be3d9a333026da04d2b659e42aab4dfd1586452815"
2019-04-23 18:19:35 +02:00
dependencies = [
"base64 0.21.2",
"bytecount",
"itertools",
"md5",
"mime",
"nom",
2019-04-23 18:19:35 +02:00
]
[[package]]
name = "rust-ini"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
"cfg-if",
"ordered-multimap",
]
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2019-04-16 16:57:06 +02:00
[[package]]
name = "rustc_version"
2022-01-29 21:18:50 +01:00
version = "0.4.0"
2021-09-14 13:03:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-09-14 13:03:18 +02:00
dependencies = [
2022-01-29 21:18:50 +01:00
"semver",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "rustix"
version = "0.37.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8818fa822adcc98b18fedbb3632a6a33213c070556b5aa7c4c8cc21cff565c4c"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
"windows-sys",
]
[[package]]
name = "rustix"
version = "0.38.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
dependencies = [
"bitflags 2.3.3",
"errno",
"libc",
"linux-raw-sys 0.4.3",
"windows-sys",
]
[[package]]
name = "rustversion"
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc31bd9b61a32c31f9650d18add92aa83a49ba979c143eefd27fe7177b05bd5f"
[[package]]
name = "ryu"
version = "1.0.14"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
2023-04-13 11:55:52 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "schannel"
version = "0.1.22"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2019-04-21 20:44:29 +02:00
dependencies = [
"windows-sys",
2019-04-21 20:44:29 +02:00
]
2019-05-19 13:56:23 +02:00
[[package]]
name = "scopeguard"
version = "1.1.0"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-05-19 13:56:23 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "security-framework"
version = "2.9.1"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2019-04-21 20:44:29 +02:00
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "security-framework-sys"
version = "2.9.0"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2019-04-21 20:44:29 +02:00
dependencies = [
"core-foundation-sys",
2021-02-26 16:28:04 +01:00
"libc",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "semver"
2023-04-13 11:55:52 +02:00
version = "1.0.17"
2021-09-14 13:03:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2021-09-14 13:03:18 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "serde"
version = "1.0.177"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63ba2516aa6bf82e0b19ca8b50019d52df58455d3cf9bdaf6315225fdd0c560a"
dependencies = [
"serde_derive",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "serde_derive"
version = "1.0.177"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "401797fe7833d72109fedec6bfcbe67c0eed9b99772f26eb8afd261f0abc6fd3"
2019-04-16 16:57:06 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "serde_json"
version = "1.0.104"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c"
2019-04-16 16:57:06 +02:00
dependencies = [
2022-02-17 12:01:16 +01:00
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
2022-01-29 21:18:50 +01:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
2022-02-17 12:01:16 +01:00
"itoa",
"ryu",
"serde",
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "sha1"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
2023-04-13 11:55:52 +02:00
"cfg-if",
"cpufeatures",
"digest",
]
2020-09-12 14:01:59 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sha2"
version = "0.10.7"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
2020-09-12 14:01:59 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2021-09-14 13:03:18 +02:00
"cpufeatures",
2023-04-13 11:55:52 +02:00
"digest",
2020-09-12 14:01:59 +02:00
]
[[package]]
name = "sharded-slab"
2022-01-29 21:18:50 +01:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "signal-hook"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
dependencies = [
"libc",
"signal-hook-registry",
]
2019-05-01 13:38:57 +02:00
[[package]]
name = "signal-hook-registry"
2023-04-13 11:55:52 +02:00
version = "1.4.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "slab"
2023-04-13 11:55:52 +02:00
version = "0.4.8"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
dependencies = [
"autocfg",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "smallvec"
version = "1.10.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2019-04-16 16:57:06 +02:00
[[package]]
name = "socket2"
version = "0.4.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2019-04-16 16:57:06 +02:00
[[package]]
name = "syn"
2023-04-13 11:55:52 +02:00
version = "1.0.109"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2019-04-16 16:57:06 +02:00
dependencies = [
"proc-macro2",
"quote",
2022-06-16 13:34:20 +02:00
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2019-04-21 20:44:29 +02:00
[[package]]
name = "tempfile"
version = "3.7.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"fastrand",
"redox_syscall 0.3.5",
"rustix 0.38.4",
"windows-sys",
2019-04-16 16:57:06 +02:00
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "thiserror"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
2023-04-13 11:55:52 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "thread_local"
2023-04-13 11:55:52 +02:00
version = "1.1.7"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2019-04-16 16:57:06 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"cfg-if",
2021-02-26 16:28:04 +01:00
"once_cell",
2019-04-16 16:57:06 +02:00
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "time"
version = "0.3.22"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
2020-09-12 14:01:59 +02:00
dependencies = [
2022-02-17 12:01:16 +01:00
"itoa",
2023-04-13 11:55:52 +02:00
"libc",
"num_threads",
"serde",
"time-core",
2020-09-12 14:01:59 +02:00
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2020-09-12 14:01:59 +02:00
[[package]]
name = "time-macros"
version = "0.2.9"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
dependencies = [
"time-core",
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "tinyvec"
2022-06-16 13:34:20 +02:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-04-13 11:55:52 +02:00
version = "0.1.1"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-09-12 14:01:59 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "tokio"
version = "1.29.1"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
2019-04-21 20:44:29 +02:00
dependencies = [
"autocfg",
"backtrace",
2021-09-03 13:13:03 +02:00
"bytes",
"libc",
"mio",
2021-09-03 13:13:03 +02:00
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"windows-sys",
2019-04-21 20:44:29 +02:00
]
2019-05-19 13:56:23 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "tokio-native-tls"
2023-04-13 11:55:52 +02:00
version = "0.3.1"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2019-05-19 13:56:23 +02:00
dependencies = [
"native-tls",
2021-02-26 16:04:58 +01:00
"tokio",
2019-05-19 13:56:23 +02:00
]
[[package]]
name = "tokio-util"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-06-16 13:34:20 +02:00
"tracing",
]
[[package]]
name = "toml"
2023-04-13 11:55:52 +02:00
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
"serde",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "tower-service"
2023-04-13 11:55:52 +02:00
version = "0.3.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2019-04-16 16:57:06 +02:00
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
2021-02-26 16:04:58 +01:00
"log",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-actix-web"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce52ffaf2d544e317d3bef63f49a6a22022866505fa4840a4339b1756834a2a9"
dependencies = [
"actix-web",
"pin-project",
"tracing",
"uuid",
]
[[package]]
name = "tracing-attributes"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
]
[[package]]
name = "tracing-bunyan-formatter"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "464ce79ea7f689ca56d90a9c5563e803a4b61b2695e789205644ed8e8101e6bf"
dependencies = [
2023-04-13 11:55:52 +02:00
"ahash 0.8.3",
"gethostname",
"log",
"serde",
"serde_json",
"time",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-core"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
dependencies = [
2022-06-16 13:34:20 +02:00
"once_cell",
"valuable",
]
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
2021-09-03 13:13:03 +02:00
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "try-lock"
2023-04-13 11:55:52 +02:00
version = "0.2.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2019-04-16 16:57:06 +02:00
[[package]]
name = "ttf-parser"
version = "0.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a464a4b34948a5f67fddd2b823c62d9d92e44be75058b99939eae6c5b6960b33"
2020-09-12 14:01:59 +02:00
[[package]]
name = "typenum"
2023-04-13 11:55:52 +02:00
version = "1.16.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2020-09-12 14:01:59 +02:00
[[package]]
name = "ucd-trie"
2023-04-13 11:55:52 +02:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2019-04-21 20:44:29 +02:00
[[package]]
2019-04-16 16:57:06 +02:00
name = "unicode-bidi"
2023-04-13 11:55:52 +02:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
[[package]]
name = "unicode-bom"
version = "2.0.2"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98e90c70c9f0d4d1ee6d0a7d04aa06cb9bbd53d8cfbdd62a0269a7c2eb640552"
2022-06-16 13:34:20 +02:00
[[package]]
name = "unicode-ident"
version = "1.0.10"
2022-06-16 13:34:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
2019-04-21 20:44:29 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "unicode-normalization"
2023-04-13 11:55:52 +02:00
version = "0.1.22"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"tinyvec",
2019-04-16 16:57:06 +02:00
]
[[package]]
2019-04-16 16:57:06 +02:00
name = "url"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "uuid"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
dependencies = [
2021-09-03 13:13:03 +02:00
"getrandom",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2019-04-16 16:57:06 +02:00
[[package]]
name = "vcpkg"
2021-09-14 13:03:18 +02:00
version = "0.2.15"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-23 18:19:35 +02:00
name = "vergen"
version = "8.2.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbc5ad0d9d26b2c49a5ab7da76c3e79d3ee37e7821799f8223fcb8f2f391a2e7"
2019-04-16 16:57:06 +02:00
dependencies = [
"anyhow",
2023-04-13 11:55:52 +02:00
"gix",
"rustversion",
2023-04-13 11:55:52 +02:00
"time",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "version_check"
2022-01-29 21:18:50 +01:00
version = "0.9.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2019-04-16 16:57:06 +02:00
2023-04-13 11:55:52 +02:00
[[package]]
name = "walkdir"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
dependencies = [
"same-file",
"winapi-util",
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "want"
version = "0.3.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2019-04-21 20:44:29 +02:00
dependencies = [
"try-lock",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen"
version = "0.2.87"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"wasm-bindgen-macro",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
dependencies = [
"bumpalo",
"log",
2023-04-13 11:55:52 +02:00
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.25",
"wasm-bindgen-shared",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.37"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.87"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2019-04-21 20:44:29 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.25",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.87"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "web-sys"
version = "0.3.64"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2019-04-21 20:44:29 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "winapi"
2021-02-26 16:28:04 +01:00
version = "0.3.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-04-16 16:57:06 +02:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-04-16 16:57:06 +02:00
2023-04-13 11:55:52 +02:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2019-04-16 16:57:06 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.48.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2019-04-16 16:57:06 +02:00
[[package]]
name = "winreg"
version = "0.10.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
2021-09-03 13:13:03 +02:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
2021-09-03 13:13:03 +02:00
"linked-hash-map",
2019-04-16 16:57:06 +02:00
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "zstd"
2023-04-13 11:55:52 +02:00
version = "0.12.3+zstd.1.5.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"zstd-safe",
2019-04-16 16:57:06 +02:00
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "zstd-safe"
2023-04-13 11:55:52 +02:00
version = "6.0.5+zstd.1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
2021-09-03 13:13:03 +02:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "zstd-sys"
2023-04-13 11:55:52 +02:00
version = "2.0.8+zstd.1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
dependencies = [
2021-09-03 13:13:03 +02:00
"cc",
"libc",
2023-04-13 11:55:52 +02:00
"pkg-config",
]