hoc/Cargo.lock

3193 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"
2023-04-13 11:55:52 +02:00
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "fe21446ad43aa56417a767f3e2f3d7c4ca522904de1dd640529a76e9c5c3b33c"
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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
dependencies = [
"bitflags 1.3.2",
"bytes",
"futures-core",
"futures-sink",
"log",
"memchr",
"pin-project-lite",
"tokio",
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-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.0",
"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
]
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"
2023-04-13 11:55:52 +02:00
version = "0.7.20"
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 = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
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"
2023-04-13 11:55:52 +02:00
version = "1.0.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.1.68"
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 = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
dependencies = [
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 2.0.14",
]
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.0",
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 = "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.0",
"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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
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.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24a6904aef64d73cf10ab17ebace7befb918b82164785cb89907993be7f83813"
[[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.4.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 = "c3d4260bcc2e8fc9df1eac4919a720effeb63a3f0952f5bf4944adfa18897f09"
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.12.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
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"
2023-04-13 11:55:52 +02:00
version = "0.2.6"
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 = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
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"
2023-04-13 11:55:52 +02:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
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.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c"
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 0.48.0",
]
[[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"
2023-04-13 11:55:52 +02:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
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 0.48.0",
]
2021-09-14 13:03:18 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "flate2"
2023-04-13 11:55:52 +02:00
version = "1.0.25"
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 = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
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"
2023-04-13 11:55:52 +02:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
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",
2023-04-13 11:55:52 +02:00
"syn 2.0.14",
]
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.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "git2"
version = "0.17.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b7905cdfe33d31a88bb2e8419ddd054451f5432d1da9eaf2ac7804ee1ea12d5"
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.44.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bf41b61f7df395284f7a579c0fa1a7e012c5aede655174d4e91299ef1cac643"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-actor",
"gix-attributes",
"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-object",
"gix-odb",
"gix-pack",
"gix-path",
"gix-prompt",
"gix-ref",
"gix-refspec",
"gix-revision",
"gix-sec",
"gix-tempfile",
"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.20.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "848efa0f1210cea8638f95691c82a46f98a74b9e3524f01d4955ebc25a8f84f3"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"btoi",
"gix-date",
"itoa",
"nom",
"thiserror",
]
[[package]]
name = "gix-attributes"
version = "0.12.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3015baa01ad2122fbcaab7863c857a603eb7b7ec12ac8141207c42c6439805e2"
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.3"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55a95f4942360766c3880bdb2b4b57f1ef73b190fc424755e7fdf480430af618"
2023-04-13 11:55:52 +02:00
dependencies = [
"thiserror",
]
[[package]]
name = "gix-chunk"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0d39583cab06464b8bf73b3f1707458270f0e7383cb24c3c9c1a16e6f792978"
dependencies = [
"thiserror",
]
[[package]]
name = "gix-command"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2c6f75c1e0f924de39e750880a6e21307194bb1ab773efe3c7d2d787277f8ab"
dependencies = [
"bstr",
]
[[package]]
name = "gix-config"
version = "0.22.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d252a0eddb6df74600d3d8872dc9fe98835a7da43110411d705b682f49d4ac1"
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.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "786861e84a5793ad5f863d846de5eb064cd23b87e61ad708c8c402608202e7be"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.2.1",
2023-04-13 11:55:52 +02:00
"bstr",
"gix-path",
"libc",
"thiserror",
]
[[package]]
name = "gix-credentials"
version = "0.14.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4874a4fc11ffa844a3c2b87a66957bda30a73b577ef1acf15ac34df5745de5ff"
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.5.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99056f37270715f5c7584fd8b46899a2296af9cae92463bf58b8bd1f5a78e553"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"itoa",
"thiserror",
"time",
]
[[package]]
name = "gix-diff"
version = "0.29.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "644a0f2768bc42d7a69289ada80c9e15c589caefc6a315d2307202df83ed1186"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-hash",
"gix-object",
"imara-diff",
"thiserror",
]
[[package]]
name = "gix-discover"
version = "0.18.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5012710ebdecf6193c6866d6409a3b702a4aa0d78c605bc343590b44ab9962a1"
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.29.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf69b0f5c701cc3ae22d3204b671907668f6437ca88862d355eaf9bc47a4f897"
2023-04-13 11:55:52 +02:00
dependencies = [
"crc32fast",
"flate2",
"gix-hash",
"libc",
"once_cell",
"prodash",
"sha1_smol",
"thiserror",
"walkdir",
]
[[package]]
name = "gix-fs"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b37a1832f691fdc09910bd267f9a2e413737c1f9ec68c6e31f9e802616278a9"
dependencies = [
"gix-features",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "gix-glob"
version = "0.7.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c07c98204529ac3f24b34754540a852593d2a4c7349008df389240266627a72a"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.2.1",
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.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078eec3ac2808cc03f0bddd2704cb661da5c5dc33b41a9d7947b141d499c7c42"
2023-04-13 11:55:52 +02:00
dependencies = [
"hex",
"thiserror",
]
[[package]]
name = "gix-hashtable"
version = "0.2.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afebb85691c6a085b114e01a27f4a61364519298c5826cb87a45c304802299bc"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-hash",
"hashbrown 0.13.2",
"parking_lot",
]
[[package]]
name = "gix-ignore"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba205b6df563e2906768bb22834c82eb46c5fdfcd86ba2c347270bc8309a05b2"
dependencies = [
"bstr",
"gix-glob",
"gix-path",
"unicode-bom",
]
2023-04-13 11:55:52 +02:00
[[package]]
name = "gix-index"
version = "0.16.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa282756760f79c401d4f4f42588fbb4aa27bbb4b0830f3b4d3480c21a4ac5a7"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.2.1",
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 = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41b80172055c5d8017a48ddac5cc7a95421c00211047db0165c97853c4f05194"
dependencies = [
"fastrand",
"gix-tempfile",
"thiserror",
]
[[package]]
name = "gix-mailmap"
version = "0.12.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8856cec3bdc3610c06970d28b6cb20a0c6621621cf9a8ec48cbd23f2630f362"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-actor",
"thiserror",
]
[[package]]
name = "gix-object"
version = "0.29.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9bb30ce0818d37096daa29efe361a4bc6dd0b51a5726598898be7e9a40a01e1"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"btoi",
"gix-actor",
"gix-features",
"gix-hash",
"gix-validate",
"hex",
"itoa",
"nom",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-odb"
version = "0.45.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bca2f324aa67672b6d0f2c0fa93f96eb6a7029d260e4c1df5dce3c015f5e5add"
2023-04-13 11:55:52 +02:00
dependencies = [
"arc-swap",
"gix-features",
"gix-hash",
"gix-object",
"gix-pack",
"gix-path",
"gix-quote",
"parking_lot",
"tempfile",
"thiserror",
]
[[package]]
name = "gix-pack"
version = "0.35.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "164a515900a83257ae4aa80e741655bee7a2e39113fb535d7a5ac623b445ff20"
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.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fc78f47095a0c15aea0e66103838f0748f4494bf7a9555dfe0f00425400396c"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"home",
"once_cell",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-prompt"
version = "0.5.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "330d11fdf88fff3366c2491efde2f3e454958efe7d5ddf60272e8fb1d944bb01"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-command",
"gix-config-value",
"parking_lot",
"rustix",
2023-04-13 11:55:52 +02:00
"thiserror",
]
[[package]]
name = "gix-quote"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a282f5a8d9ee0b09ec47390ac727350c48f2f5c76d803cd8da6b3e7ad56e0bcb"
dependencies = [
"bstr",
"btoi",
"thiserror",
]
[[package]]
name = "gix-ref"
version = "0.29.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8212ecfe41815a2f1b059d82171d6276758cfac5506a5e0f04ad45ef0b1924a"
2023-04-13 11:55:52 +02:00
dependencies = [
"gix-actor",
"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.10.1"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a6ea733820df67e4cd7797deb12727905824d8f5b7c59d943c456d314475892"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-hash",
"gix-revision",
"gix-validate",
"smallvec",
"thiserror",
]
[[package]]
name = "gix-revision"
version = "0.13.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "810f35e9afeccca999d5d348b239f9c162353127d2e13ff3240e31b919e35476"
2023-04-13 11:55:52 +02:00
dependencies = [
"bstr",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"thiserror",
]
[[package]]
name = "gix-sec"
version = "0.8.0"
2023-04-13 11:55:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "794520043d5a024dfeac335c6e520cb616f6963e30dab995892382e998c12897"
2023-04-13 11:55:52 +02:00
dependencies = [
"bitflags 2.2.1",
2023-04-13 11:55:52 +02:00
"gix-path",
"libc",
"windows",
]
[[package]]
name = "gix-tempfile"
version = "5.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "c2ceb30a610e3f5f2d5f9a5114689fde507ba9417705a8cf3429604275b2153c"
dependencies = [
2023-04-13 11:55:52 +02:00
"libc",
"once_cell",
"parking_lot",
"signal-hook",
"signal-hook-registry",
"tempfile",
]
2020-09-12 14:01:59 +02:00
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-traverse"
version = "0.25.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5be1e807f288c33bb005075111886cceb43ed8a167b3182a0f62c186e2a0dd1"
2020-09-12 14:01:59 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"gix-hash",
"gix-hashtable",
"gix-object",
"thiserror",
2020-09-12 14:01:59 +02:00
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-url"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc77f89054297cc81491e31f1bab4027e554b5ef742a44bd7035db9a0f78b76"
dependencies = [
2023-04-13 11:55:52 +02:00
"bstr",
"gix-features",
"gix-path",
"home",
"thiserror",
"url",
]
[[package]]
name = "gix-utils"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c10b69beac219acb8df673187a1f07dde2d74092f974fb3f9eb385aeb667c909"
dependencies = [
"fastrand",
]
[[package]]
2023-04-13 11:55:52 +02:00
name = "gix-validate"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "7bd629d3680773e1785e585d76fd4295b740b559cad9141517300d99a0c8c049"
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.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10bf56a1f5037d84293ea6cece61d9f27c4866b1e13c1c95f37cf56b7da7af25"
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.17"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
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"
2023-04-13 11:55:52 +02:00
version = "0.13.2"
2021-02-26 16:28:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2021-02-26 16:28:04 +01:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "hermit-abi"
2023-04-13 11:55:52 +02:00
version = "0.2.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 = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2019-04-16 16:57:06 +02: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-04-13 12:19:38 +02:00
version = "0.34.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.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408"
dependencies = [
"winapi",
]
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"
2023-04-13 11:55:52 +02:00
version = "0.14.25"
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 = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899"
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"
2023-04-13 11:55:52 +02:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
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
]
[[package]]
name = "instant"
2022-01-29 21:18:50 +01:00
version = "0.1.12"
2021-02-26 16:28:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-29 21:18:50 +01:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-02-26 16:28:04 +01:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02: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"
2023-04-13 11:55:52 +02:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
dependencies = [
2023-04-13 11:55:52 +02:00
"hermit-abi 0.3.1",
"libc",
2023-04-13 11:55:52 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "ipnet"
2023-04-13 11:55:52 +02:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2019-04-23 18:19:35 +02:00
[[package]]
name = "itertools"
2023-04-13 11:55:52 +02:00
version = "0.10.5"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2019-04-23 18:19:35 +02:00
dependencies = [
"either",
2019-04-23 18:19:35 +02:00
]
[[package]]
name = "itoa"
2023-04-13 11:55:52 +02:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.3.61"
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 = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
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.142"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317"
2019-04-16 16:57:06 +02:00
[[package]]
name = "libgit2-sys"
version = "0.15.1+1.6.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb4577bde8cdfc7d6a2a4bcb7b049598597de33ffd337276e9c7db6cd4a2cee7"
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"
2022-06-16 13:34:20 +02:00
version = "1.1.8"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
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.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b64f40e5e03e0d54f03845c8197d0291253cdbedfb1cb46b13c2c117554a9f4c"
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"
2023-04-13 11:55:52 +02:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
2022-06-16 13:34:20 +02:00
"autocfg",
"scopeguard",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "log"
2022-06-16 13:34:20 +02:00
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
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.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
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"
2023-04-13 11:55:52 +02:00
version = "0.6.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 = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
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"
2023-04-13 11:55:52 +02:00
version = "0.8.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 = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
"log",
2022-06-16 13:34:20 +02:00
"wasi",
2023-04-13 11:55:52 +02:00
"windows-sys 0.45.0",
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"
2023-04-13 11:55:52 +02:00
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
dependencies = [
"hermit-abi 0.2.6",
"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 = "once_cell"
2023-04-13 11:55:52 +02:00
version = "1.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2019-04-21 20:44:29 +02:00
[[package]]
name = "openssl"
2023-04-13 11:55:52 +02:00
version = "0.10.50"
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 = "7e30d8bc91859781f0a943411186324d580f2bbeb71b452fe91ae344806af3f1"
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",
2023-04-13 11:55:52 +02:00
"syn 2.0.14",
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"
2023-04-13 11:55:52 +02:00
version = "0.9.85"
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 = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0"
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"
2023-04-13 11:55:52 +02:00
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e25e9fb15717794fae58ab55c26e044103aad13186fbb625893f9a3bbcc24228"
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"
2023-04-13 11:55:52 +02:00
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"libc",
2023-04-13 11:55:52 +02:00
"redox_syscall 0.2.16",
"smallvec",
2023-04-13 11:55:52 +02:00
"windows-sys 0.45.0",
]
2019-04-16 16:57:06 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "paste"
2023-04-13 11:55:52 +02:00
version = "1.0.12"
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 = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
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"
2023-04-13 11:55:52 +02:00
version = "2.2.0"
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 = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]]
name = "pest"
2023-04-13 11:55:52 +02:00
version = "2.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "7b1403e8401ad5dedea73c626b99758535b342502f8d1e361f4a2dd952749122"
dependencies = [
2023-04-13 11:55:52 +02:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
2023-04-13 11:55:52 +02:00
version = "2.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "be99c4c1d2fc2769b1d00239431d711d08f6efedcecb8b6e30707160aee99c15"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2023-04-13 11:55:52 +02:00
version = "2.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e56094789873daa36164de2e822b3888c6ae4b4f9da555a1103587658c805b1e"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 2.0.14",
]
[[package]]
name = "pest_meta"
2023-04-13 11:55:52 +02:00
version = "2.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "6733073c7cff3d8459fda0e42f13a047870242aed8b509fe98000928975f359e"
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"
2023-04-13 11:55:52 +02:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
2021-09-03 13:13:03 +02:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-04-13 11:55:52 +02:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 1.0.109",
]
[[package]]
name = "pin-project-lite"
2022-06-16 13:34:20 +02:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-16 13:34:20 +02:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.3.26"
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 = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
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"
2023-04-13 11:55:52 +02:00
version = "1.0.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
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 = "23.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9516b775656bc3e8985e19cd4b8c0c0de045095074e453d2c0a513b5f978392d"
[[package]]
name = "quote"
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
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"
2023-04-13 11:55:52 +02:00
version = "1.7.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 = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
2019-04-16 16:57:06 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
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",
]
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
2019-04-21 20:44:29 +02:00
[[package]]
name = "reqwest"
version = "0.11.17"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
dependencies = [
"base64 0.21.0",
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.16.1"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79c86c1631418815c5947a34be5872806586c65398754ec91cc2df35a8e26ba8"
2019-04-23 18:19:35 +02:00
dependencies = [
"base64 0.21.0",
"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",
]
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.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0661814f891c57c930a610266415528da53c4933e6dea5fb350cbfe048a9ece"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-04-13 11:55:52 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "rustversion"
2023-04-13 11:55:52 +02:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
[[package]]
name = "ryu"
2023-04-13 11:55:52 +02:00
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.1.21"
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 = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
2019-04-21 20:44:29 +02:00
dependencies = [
2023-04-13 11:55:52 +02:00
"windows-sys 0.42.0",
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"
2023-04-13 11:55:52 +02:00
version = "2.8.2"
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 = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
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"
2023-04-13 11:55:52 +02:00
version = "2.8.0"
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 = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
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"
2023-04-13 11:55:52 +02:00
version = "1.0.160"
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 = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
dependencies = [
"serde_derive",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "serde_derive"
2023-04-13 11:55:52 +02:00
version = "1.0.160"
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 = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
2019-04-16 16:57:06 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 2.0.14",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "serde_json"
2023-04-13 11:55:52 +02:00
version = "1.0.96"
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 = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
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.6"
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 = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
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"
2023-04-13 11:55:52 +02:00
version = "2.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "fcf316d5356ed6847742d036f8a39c3b8435cac10bd528a4bd461928a6ab34d5"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2019-04-21 20:44:29 +02:00
[[package]]
name = "tempfile"
version = "3.5.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
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",
"windows-sys 0.45.0",
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.14",
]
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"
2023-04-13 11:55:52 +02:00
version = "0.3.20"
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 = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2020-09-12 14:01:59 +02:00
[[package]]
name = "time-macros"
2023-04-13 11:55:52 +02:00
version = "0.2.8"
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 = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
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.28.0"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
2019-04-21 20:44:29 +02:00
dependencies = [
"autocfg",
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 0.48.0",
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"
2023-04-13 11:55:52 +02:00
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
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"
2023-04-13 11:55:52 +02:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e2def0ffabc0116481e14e82cf705fef814f5178171d445b6790137ff8a85a73"
dependencies = [
"actix-web",
"pin-project",
"tracing",
"uuid",
]
[[package]]
name = "tracing-attributes"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "tracing-bunyan-formatter"
2023-04-13 11:55:52 +02:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "25a348912d4e90923cb93343691d3be97e3409607363706c400fc935bb032fb0"
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.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
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"
2023-04-13 11:55:52 +02:00
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633"
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"
2023-04-13 11:55:52 +02:00
version = "1.0.8"
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 = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
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"
2023-04-13 11:55:52 +02:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "uuid"
2023-04-13 11:55:52 +02:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb"
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.1.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e03272e388fb78fc79481a493424f78d77be1d55f21bcd314b5a6716e195afe"
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.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2019-04-21 20:44:29 +02:00
dependencies = [
"log",
"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"
2023-04-13 11:55:52 +02:00
version = "0.2.84"
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 = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
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"
2023-04-13 11:55:52 +02:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
dependencies = [
"bumpalo",
"log",
2023-04-13 11:55:52 +02:00
"once_cell",
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 1.0.109",
"wasm-bindgen-shared",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-futures"
2023-04-13 11:55:52 +02:00
version = "0.4.34"
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 = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
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"
2023-04-13 11:55:52 +02:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-macro-support"
2023-04-13 11:55:52 +02:00
version = "0.2.84"
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 = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
2019-04-21 20:44:29 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-04-13 11:55:52 +02:00
"syn 1.0.109",
"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"
2023-04-13 11:55:52 +02:00
version = "0.2.84"
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 = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "web-sys"
2023-04-13 11:55:52 +02:00
version = "0.3.61"
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 = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
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 0.48.0",
]
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-04-13 11:55:52 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-13 11:55:52 +02:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
]
[[package]]
name = "windows-targets"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
2023-04-13 11:55:52 +02:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[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"
2023-04-13 11:55:52 +02:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-13 11:55:52 +02:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[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",
]