1
0
Fork 0
website/Cargo.lock

2680 lines
66 KiB
Text
Raw Normal View History

2022-06-16 23:44:37 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2023-11-10 19:34:00 +01:00
version = "0.21.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2022-06-16 23:44:37 +02:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2023-07-29 20:22:13 +02:00
[[package]]
name = "ahash"
2023-11-10 19:34:00 +01:00
version = "0.7.7"
2023-07-29 20:22:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
2023-07-29 20:22:13 +02:00
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2023-11-10 19:34:00 +01:00
[[package]]
name = "ahash"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
dependencies = [
"cfg-if",
"once_cell",
"version_check",
"zerocopy",
]
2023-06-18 09:51:36 +02:00
[[package]]
name = "aho-corasick"
2023-11-10 19:34:00 +01:00
version = "1.1.2"
2023-06-18 09:51:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
2023-06-18 09:51:36 +02:00
dependencies = [
"memchr",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "alloc-no-stdlib"
2023-03-22 22:39:18 +01:00
version = "2.0.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2022-06-16 23:44:37 +02:00
[[package]]
name = "alloc-stdlib"
2023-03-22 22:39:18 +01:00
version = "0.2.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2022-06-16 23:44:37 +02:00
dependencies = [
"alloc-no-stdlib",
]
2023-11-10 19:34:00 +01:00
[[package]]
name = "allocator-api2"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
2023-06-18 09:51:36 +02:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-08-31 23:20:59 +02:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "async-compression"
2023-11-10 19:34:00 +01:00
version = "0.4.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f658e2baef915ba0f26f1f7c42bfb8e12f532a01f449a090ded75ae7a07e9ba2"
2022-06-16 23:44:37 +02:00
dependencies = [
"brotli",
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
2023-03-22 22:39:18 +01:00
"zstd",
"zstd-safe",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "async-trait"
2023-11-10 19:34:00 +01:00
version = "0.1.74"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
2022-06-16 23:44:37 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "axum"
2023-11-10 19:34:00 +01:00
version = "0.6.20"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
2022-06-16 23:44:37 +02:00
dependencies = [
"async-trait",
"axum-core",
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2022-06-16 23:44:37 +02:00
"bytes",
"futures-util",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
2023-03-22 22:39:18 +01:00
"rustversion",
2022-06-16 23:44:37 +02:00
"serde",
"serde_json",
2023-03-22 22:39:18 +01:00
"serde_path_to_error",
2022-06-16 23:44:37 +02:00
"serde_urlencoded",
"sync_wrapper",
"tokio",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2023-06-18 09:51:36 +02:00
version = "0.3.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
2022-06-16 23:44:37 +02:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
2023-03-22 22:39:18 +01:00
"rustversion",
"tower-layer",
"tower-service",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "backtrace"
2023-11-10 19:34:00 +01:00
version = "0.3.69"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2022-06-16 23:44:37 +02:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2023-07-29 11:51:04 +02:00
"miniz_oxide",
2022-06-16 23:44:37 +02:00
"object",
"rustc-demangle",
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2023-06-18 11:34:08 +02:00
[[package]]
name = "base64"
2023-11-10 19:34:00 +01:00
version = "0.21.5"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
2023-06-18 11:34:08 +02:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-29 11:51:04 +02:00
[[package]]
name = "bitflags"
2023-11-10 19:34:00 +01:00
version = "2.4.1"
2023-07-29 11:51:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
2023-07-29 11:51:04 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "block-buffer"
2023-03-22 22:39:18 +01:00
version = "0.10.4"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-08-31 23:20:59 +02:00
dependencies = [
"generic-array",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "brotli"
2023-11-10 19:34:00 +01:00
version = "3.4.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
2022-06-16 23:44:37 +02:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
2023-11-10 19:34:00 +01:00
version = "2.5.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
2022-06-16 23:44:37 +02:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "bstr"
2023-11-10 19:34:00 +01:00
version = "1.8.0"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "542f33a8835a0884b006a0c3df3dadd99c0c3f296ed26c2fdc8028e01ad6230c"
2022-08-31 23:20:59 +02:00
dependencies = [
"memchr",
2023-03-22 22:39:18 +01:00
"serde",
2022-08-31 23:20:59 +02:00
]
[[package]]
name = "bumpalo"
2023-11-10 19:34:00 +01:00
version = "3.14.0"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2022-08-31 23:20:59 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "byteorder"
2023-11-10 19:34:00 +01:00
version = "1.5.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2022-06-16 23:44:37 +02:00
[[package]]
name = "bytes"
2023-11-10 19:34:00 +01:00
version = "1.5.0"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2023-03-22 22:39:18 +01:00
[[package]]
name = "cached"
2023-11-10 19:34:00 +01:00
version = "0.46.1"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c7c8c50262271cdf5abc979a5f76515c234e764fa025d1ba4862c0f0bcda0e95"
2023-03-22 22:39:18 +01:00
dependencies = [
2023-11-10 19:34:00 +01:00
"ahash 0.8.6",
2023-03-22 22:39:18 +01:00
"cached_proc_macro",
"cached_proc_macro_types",
2023-11-10 19:34:00 +01:00
"hashbrown 0.14.2",
2023-03-22 22:39:18 +01:00
"instant",
"once_cell",
"thiserror",
]
[[package]]
name = "cached_proc_macro"
2023-11-10 19:34:00 +01:00
version = "0.18.1"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c878c71c2821aa2058722038a59a67583a4240524687c6028571c9b395ded61f"
2023-03-22 22:39:18 +01:00
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "cached_proc_macro_types"
version = "0.1.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663"
2022-06-16 23:44:37 +02:00
[[package]]
name = "cc"
2023-11-10 19:34:00 +01:00
version = "1.0.83"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
2023-03-22 22:39:18 +01:00
dependencies = [
"jobserver",
2023-11-10 19:34:00 +01:00
"libc",
2023-03-22 22:39:18 +01:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-08-31 23:20:59 +02:00
[[package]]
name = "chrono"
2023-11-10 19:34:00 +01:00
version = "0.4.31"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
2022-08-31 23:20:59 +02:00
dependencies = [
2023-06-18 09:51:36 +02:00
"android-tzdata",
2022-08-31 23:20:59 +02:00
"iana-time-zone",
2023-03-25 16:14:53 +01:00
"js-sys",
2022-08-31 23:20:59 +02:00
"num-traits",
2023-03-25 16:14:53 +01:00
"serde",
"wasm-bindgen",
2023-11-10 19:34:00 +01:00
"windows-targets 0.48.5",
2022-08-31 23:20:59 +02:00
]
[[package]]
name = "chrono-tz"
2023-11-10 19:34:00 +01:00
version = "0.8.4"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e23185c0e21df6ed832a12e2bda87c7d1def6842881fb634a8511ced741b0d76"
2022-08-31 23:20:59 +02:00
dependencies = [
"chrono",
"chrono-tz-build",
"phf",
]
[[package]]
name = "chrono-tz-build"
2023-11-10 19:34:00 +01:00
version = "0.2.1"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "433e39f13c9a060046954e0592a8d0a4bcb1040125cbf91cb8ee58964cfb350f"
2022-08-31 23:20:59 +02:00
dependencies = [
"parse-zoneinfo",
"phf",
"phf_codegen",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "color-eyre"
2023-03-22 22:39:18 +01:00
version = "0.6.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
2022-06-16 23:44:37 +02:00
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "config"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7"
dependencies = [
"async-trait",
"json5",
"lazy_static",
"nom",
"pathdiff",
"ron",
"rust-ini",
"serde",
"serde_json",
"toml 0.5.11",
"yaml-rust",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "core-foundation-sys"
2023-04-10 00:46:58 +02:00
version = "0.8.4"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-10 00:46:58 +02:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-08-31 23:20:59 +02:00
[[package]]
name = "cpufeatures"
2023-11-10 19:34:00 +01:00
version = "0.2.11"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
2022-08-31 23:20:59 +02:00
dependencies = [
"libc",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
2023-04-02 15:26:20 +02:00
[[package]]
name = "crossbeam-channel"
2023-04-10 00:46:58 +02:00
version = "0.5.8"
2023-04-02 15:26:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-10 00:46:58 +02:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2023-04-02 15:26:20 +02:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-06-18 09:51:36 +02:00
version = "0.8.16"
2023-04-02 15:26:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2023-04-02 15:26:20 +02:00
dependencies = [
"cfg-if",
]
2022-06-16 23:44:37 +02:00
[[package]]
2023-03-22 22:39:18 +01:00
name = "crypto-common"
version = "0.1.6"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-03-22 22:39:18 +01:00
"generic-array",
"typenum",
2022-06-16 23:44:37 +02:00
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "darling"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 1.0.109",
]
[[package]]
name = "darling_macro"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
dependencies = [
"darling_core",
"quote",
"syn 1.0.109",
2022-08-31 23:20:59 +02:00
]
2023-04-02 15:26:20 +02:00
[[package]]
2023-11-10 19:34:00 +01:00
name = "deranged"
version = "0.3.9"
2023-04-02 15:26:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
2023-04-02 15:26:20 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"powerfmt",
2023-04-02 15:26:20 +02:00
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "deunicode"
2023-11-10 19:34:00 +01:00
version = "1.4.1"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "6a1abaf4d861455be59f64fd2b55606cb151fce304ede7165f410243ce96bde6"
2022-08-31 23:20:59 +02:00
[[package]]
name = "digest"
2023-06-18 09:51:36 +02:00
version = "0.10.7"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-08-31 23:20:59 +02:00
dependencies = [
"block-buffer",
"crypto-common",
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
2023-07-29 11:51:04 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-03-25 22:12:49 +01:00
[[package]]
name = "errno"
2023-11-10 19:34:00 +01:00
version = "0.3.6"
2023-03-25 22:12:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e"
2023-03-25 22:12:49 +01:00
dependencies = [
"libc",
2023-04-10 00:46:58 +02:00
"windows-sys 0.48.0",
2023-03-25 22:12:49 +01:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "eyre"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "flate2"
2023-11-10 19:34:00 +01:00
version = "1.0.28"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2022-06-16 23:44:37 +02:00
dependencies = [
"crc32fast",
2023-07-29 11:51:04 +02:00
"miniz_oxide",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
2023-06-18 09:51:36 +02:00
version = "1.2.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2022-06-16 23:44:37 +02:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
2022-06-16 23:44:37 +02:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
2023-04-02 15:26:20 +02:00
[[package]]
name = "futures-executor"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2023-04-02 15:26:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
2023-04-02 15:26:20 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2023-03-22 22:39:18 +01:00
2023-04-02 15:26:20 +02:00
[[package]]
name = "futures-macro"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2023-04-02 15:26:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
2023-04-02 15:26:20 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2023-04-02 15:26:20 +02:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "futures-sink"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
2022-06-16 23:44:37 +02:00
[[package]]
name = "futures-task"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
2022-06-16 23:44:37 +02:00
[[package]]
name = "futures-util"
2023-11-10 19:34:00 +01:00
version = "0.3.29"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
2022-06-16 23:44:37 +02:00
dependencies = [
"futures-core",
2023-04-02 15:26:20 +02:00
"futures-macro",
2023-03-22 22:39:18 +01:00
"futures-sink",
2022-06-16 23:44:37 +02:00
"futures-task",
"pin-project-lite",
"pin-utils",
"slab",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "generic-array"
2023-03-29 18:02:43 +02:00
version = "0.14.7"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-29 18:02:43 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2022-08-31 23:20:59 +02:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "getrandom"
2023-11-10 19:34:00 +01:00
version = "0.2.11"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
2022-06-16 23:44:37 +02:00
dependencies = [
"cfg-if",
"libc",
2023-11-10 19:34:00 +01:00
"wasi",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "gimli"
2023-11-10 19:34:00 +01:00
version = "0.28.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "glob"
2023-03-22 22:39:18 +01:00
version = "0.3.1"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2022-08-31 23:20:59 +02:00
[[package]]
name = "globset"
2023-11-10 19:34:00 +01:00
version = "0.4.13"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
2022-08-31 23:20:59 +02:00
dependencies = [
2023-07-29 11:51:04 +02:00
"aho-corasick",
2022-08-31 23:20:59 +02:00
"bstr",
"fnv",
"log",
"regex",
]
[[package]]
name = "globwalk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
dependencies = [
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2022-08-31 23:20:59 +02:00
"ignore",
"walkdir",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "h2"
2023-11-10 19:34:00 +01:00
version = "0.3.21"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
2022-06-16 23:44:37 +02:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
2023-07-29 11:51:04 +02:00
"indexmap 1.9.3",
2022-06-16 23:44:37 +02:00
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
2023-03-22 22:39:18 +01:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2023-07-29 20:22:13 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"ahash 0.7.7",
2023-07-29 20:22:13 +02:00
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "hashbrown"
2023-11-10 19:34:00 +01:00
version = "0.14.2"
2023-07-29 11:51:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
dependencies = [
"ahash 0.8.6",
"allocator-api2",
]
2023-07-29 11:51:04 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "hdrhistogram"
2023-03-22 22:39:18 +01:00
version = "7.5.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
2022-06-16 23:44:37 +02:00
dependencies = [
"byteorder",
"num-traits",
]
[[package]]
name = "hermit-abi"
2023-11-10 19:34:00 +01:00
version = "0.3.3"
2023-03-25 22:12:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-03-25 22:12:49 +01:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2022-06-16 23:44:37 +02:00
[[package]]
name = "http"
2023-11-10 19:34:00 +01:00
version = "0.2.10"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f95b9abcae896730d42b78e09c155ed4ddf82c07b4de772c64aee5b2d8b7c150"
2022-06-16 23:44:37 +02:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "http-range-header"
2023-07-29 11:51:04 +02:00
version = "0.3.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
2022-06-16 23:44:37 +02:00
[[package]]
name = "httparse"
2023-03-22 22:39:18 +01:00
version = "1.8.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2022-06-16 23:44:37 +02:00
[[package]]
name = "httpdate"
2023-11-10 19:34:00 +01:00
version = "1.0.3"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "humansize"
2023-03-22 22:39:18 +01:00
version = "2.1.3"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
dependencies = [
"libm",
]
2022-08-31 23:20:59 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "hyper"
2023-07-29 11:51:04 +02:00
version = "0.14.27"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2022-06-16 23:44:37 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2023-11-10 19:34:00 +01:00
"socket2 0.4.10",
2022-06-16 23:44:37 +02:00
"tokio",
"tower-service",
"tracing",
"want",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "iana-time-zone"
2023-11-10 19:34:00 +01:00
version = "0.1.58"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
2022-08-31 23:20:59 +02:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2023-03-22 22:39:18 +01:00
"iana-time-zone-haiku",
2022-08-31 23:20:59 +02:00
"js-sys",
"wasm-bindgen",
2023-11-10 19:34:00 +01:00
"windows-core",
2023-03-22 22:39:18 +01:00
]
[[package]]
name = "iana-time-zone-haiku"
2023-06-18 09:51:36 +02:00
version = "0.1.2"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2023-03-22 22:39:18 +01:00
dependencies = [
2023-06-18 09:51:36 +02:00
"cc",
2022-08-31 23:20:59 +02:00
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2022-08-31 23:20:59 +02:00
[[package]]
name = "ignore"
2023-03-22 22:39:18 +01:00
version = "0.4.20"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
2022-08-31 23:20:59 +02:00
dependencies = [
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
[[package]]
name = "indexmap"
2023-03-25 12:23:11 +01:00
version = "1.9.3"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 12:23:11 +01:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2022-06-16 23:44:37 +02:00
dependencies = [
"autocfg",
2023-03-22 22:39:18 +01:00
"hashbrown 0.12.3",
]
2023-07-29 11:51:04 +02:00
[[package]]
name = "indexmap"
2023-11-10 19:34:00 +01:00
version = "2.1.0"
2023-07-29 11:51:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
2023-07-29 11:51:04 +02:00
dependencies = [
"equivalent",
2023-11-10 19:34:00 +01:00
"hashbrown 0.14.2",
2023-07-29 11:51:04 +02:00
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
2022-06-16 23:44:37 +02:00
]
2023-03-25 22:12:49 +01:00
[[package]]
name = "io-lifetimes"
2023-06-18 09:51:36 +02:00
version = "1.0.11"
2023-03-25 22:12:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-03-25 22:12:49 +01:00
dependencies = [
2023-07-29 11:51:04 +02:00
"hermit-abi",
2023-03-25 22:12:49 +01:00
"libc",
2023-04-10 00:46:58 +02:00
"windows-sys 0.48.0",
2023-03-25 22:12:49 +01:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "iri-string"
2023-03-22 22:39:18 +01:00
version = "0.7.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "21859b667d66a4c1dacd9df0863b3efb65785474255face87f5bca39dd8407c0"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-03-22 22:39:18 +01:00
"memchr",
"serde",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "itoa"
2023-07-29 11:51:04 +02:00
version = "1.0.9"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2023-03-22 22:39:18 +01:00
[[package]]
name = "jobserver"
2023-11-10 19:34:00 +01:00
version = "0.1.27"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
2023-03-22 22:39:18 +01:00
dependencies = [
"libc",
]
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "js-sys"
2023-11-10 19:34:00 +01:00
version = "0.3.65"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
2022-08-31 23:20:59 +02:00
dependencies = [
"wasm-bindgen",
]
2023-07-29 20:22:13 +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",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2023-11-10 19:34:00 +01:00
version = "0.2.150"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
2023-03-22 22:39:18 +01:00
[[package]]
name = "libm"
2023-11-10 19:34:00 +01:00
version = "0.2.8"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
2022-06-16 23:44:37 +02:00
2023-06-18 11:34:08 +02:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
dependencies = [
"safemem",
]
[[package]]
name = "linked-hash-map"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2023-03-25 22:12:49 +01:00
[[package]]
name = "linux-raw-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2022-06-16 23:44:37 +02:00
[[package]]
name = "lock_api"
2023-11-10 19:34:00 +01:00
version = "0.4.11"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2022-06-16 23:44:37 +02:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-11-10 19:34:00 +01:00
version = "0.4.20"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2022-06-16 23:44:37 +02:00
2023-04-02 15:26:20 +02:00
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-07-29 11:51:04 +02:00
"regex-automata 0.1.10",
2023-04-02 15:26:20 +02:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "matchit"
2023-11-10 19:34:00 +01:00
version = "0.7.3"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2022-06-16 23:44:37 +02:00
[[package]]
name = "memchr"
2023-11-10 19:34:00 +01:00
version = "2.6.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
2022-06-16 23:44:37 +02:00
[[package]]
name = "mime"
2023-03-22 22:39:18 +01:00
version = "0.3.17"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2022-06-16 23:44:37 +02:00
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-06-18 09:51:36 +02:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "mio"
2023-11-10 19:34:00 +01:00
version = "0.8.9"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
2022-06-16 23:44:37 +02:00
dependencies = [
"libc",
2023-11-10 19:34:00 +01:00
"wasi",
2023-06-18 09:51:36 +02:00
"windows-sys 0.48.0",
2022-06-16 23:44:37 +02:00
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2022-06-16 23:44:37 +02:00
[[package]]
2023-03-22 22:39:18 +01:00
name = "nu-ansi-term"
version = "0.46.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-03-22 22:39:18 +01:00
"overload",
"winapi",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "num-traits"
2023-11-10 19:34:00 +01:00
version = "0.2.17"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2022-06-16 23:44:37 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2023-07-29 11:51:04 +02:00
version = "1.16.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-07-29 11:51:04 +02:00
"hermit-abi",
2022-06-16 23:44:37 +02:00
"libc",
]
[[package]]
name = "object"
2023-11-10 19:34:00 +01:00
version = "0.32.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
2022-06-16 23:44:37 +02:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-06-18 09:51:36 +02:00
version = "1.18.0"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2023-03-22 22:39:18 +01:00
2023-06-18 11:34:08 +02:00
[[package]]
name = "onig"
version = "6.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
dependencies = [
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2023-06-18 11:34:08 +02:00
"libc",
"once_cell",
"onig_sys",
]
[[package]]
name = "onig_sys"
version = "69.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
dependencies = [
"cc",
"pkg-config",
]
2023-06-18 09:51:36 +02:00
[[package]]
name = "opentelemetry"
2023-11-10 19:34:00 +01:00
version = "0.21.0"
2023-06-18 09:51:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a"
2023-06-18 09:51:36 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"futures-core",
"futures-sink",
"indexmap 2.1.0",
"js-sys",
2023-06-18 09:51:36 +02:00
"once_cell",
"pin-project-lite",
"thiserror",
"urlencoding",
]
[[package]]
name = "opentelemetry_sdk"
2023-11-10 19:34:00 +01:00
version = "0.21.0"
2023-06-18 09:51:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "a5b3ce3f5705e2ae493be467a0b23be4bc563c193cdb7713e55372c89a906b34"
2023-06-18 09:51:36 +02:00
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
2023-11-10 19:34:00 +01:00
"glob",
2023-06-18 09:51:36 +02:00
"once_cell",
2023-11-10 19:34:00 +01:00
"opentelemetry",
"ordered-float",
2023-04-02 15:26:20 +02:00
"percent-encoding",
"rand",
"thiserror",
]
2023-11-10 19:34:00 +01:00
[[package]]
name = "ordered-float"
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "536900a8093134cf9ccf00a27deb3532421099e958d9dd431135d0c7543ca1e8"
dependencies = [
"num-traits",
]
2023-07-29 20:22:13 +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",
"hashbrown 0.12.3",
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "overload"
version = "0.1.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-06-16 23:44:37 +02:00
[[package]]
name = "owo-colors"
2023-03-22 22:39:18 +01:00
version = "3.5.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2022-06-16 23:44:37 +02:00
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2023-11-10 19:34:00 +01:00
version = "0.9.9"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2022-06-16 23:44:37 +02:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2023-11-10 19:34:00 +01:00
"windows-targets 0.48.5",
2022-06-16 23:44:37 +02:00
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "parse-zoneinfo"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
dependencies = [
"regex",
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2022-06-16 23:44:37 +02:00
[[package]]
name = "percent-encoding"
2023-06-18 09:51:36 +02:00
version = "2.3.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "pest"
2023-11-10 19:34:00 +01:00
version = "2.7.5"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5"
2022-08-31 23:20:59 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"memchr",
2022-08-31 23:20:59 +02:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
2023-11-10 19:34:00 +01:00
version = "2.7.5"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2"
2022-08-31 23:20:59 +02:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2023-11-10 19:34:00 +01:00
version = "2.7.5"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227"
2022-08-31 23:20:59 +02:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-08-31 23:20:59 +02:00
]
[[package]]
name = "pest_meta"
2023-11-10 19:34:00 +01:00
version = "2.7.5"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6"
2022-08-31 23:20:59 +02:00
dependencies = [
"once_cell",
"pest",
2023-03-22 22:39:18 +01:00
"sha2",
2022-08-31 23:20:59 +02:00
]
[[package]]
name = "phf"
2023-11-10 19:34:00 +01:00
version = "0.11.2"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2022-08-31 23:20:59 +02:00
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
2023-11-10 19:34:00 +01:00
version = "0.11.2"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
2022-08-31 23:20:59 +02:00
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
2023-11-10 19:34:00 +01:00
version = "0.11.2"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2022-08-31 23:20:59 +02:00
dependencies = [
"phf_shared",
"rand",
]
[[package]]
name = "phf_shared"
2023-11-10 19:34:00 +01:00
version = "0.11.2"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2022-08-31 23:20:59 +02:00
dependencies = [
"siphasher",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "pin-project"
2023-11-10 19:34:00 +01:00
version = "1.1.3"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2022-06-16 23:44:37 +02:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-11-10 19:34:00 +01:00
version = "1.1.3"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2022-06-16 23:44:37 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "pin-project-lite"
2023-11-10 19:34:00 +01:00
version = "0.2.13"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2022-06-16 23:44:37 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-03-22 22:39:18 +01:00
[[package]]
name = "pkg-config"
2023-06-18 09:51:36 +02:00
version = "0.3.27"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2023-03-22 22:39:18 +01:00
2023-06-18 11:34:08 +02:00
[[package]]
name = "plist"
2023-11-10 19:34:00 +01:00
version = "1.6.0"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e5699cc8a63d1aa2b1ee8e12b9ad70ac790d65788cd36101fa37f87ea46c4cef"
2023-06-18 11:34:08 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"base64 0.21.5",
"indexmap 2.1.0",
2023-06-18 11:34:08 +02:00
"line-wrap",
"quick-xml",
"serde",
2023-11-10 19:34:00 +01:00
"time",
2023-06-18 11:34:08 +02:00
]
2023-11-10 19:34:00 +01:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2022-06-16 23:44:37 +02:00
[[package]]
name = "ppv-lite86"
2023-03-22 22:39:18 +01:00
version = "0.2.17"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-06-16 23:44:37 +02:00
[[package]]
name = "proc-macro2"
2023-11-10 19:34:00 +01:00
version = "1.0.69"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
2022-06-16 23:44:37 +02:00
dependencies = [
"unicode-ident",
]
2023-03-25 22:12:49 +01:00
[[package]]
name = "procfs"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69"
dependencies = [
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2023-03-25 22:12:49 +01:00
"byteorder",
"hex",
"lazy_static",
"rustix",
]
[[package]]
name = "prometheus"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c"
dependencies = [
"cfg-if",
"fnv",
"lazy_static",
"libc",
"memchr",
"parking_lot",
"procfs",
"protobuf",
"thiserror",
]
[[package]]
name = "protobuf"
version = "2.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2022-08-31 23:20:59 +02:00
[[package]]
name = "pulldown-cmark"
2023-06-18 09:51:36 +02:00
version = "0.9.3"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
2022-08-31 23:20:59 +02:00
dependencies = [
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2022-08-31 23:20:59 +02:00
"getopts",
"memchr",
"unicase",
]
2023-06-18 11:34:08 +02:00
[[package]]
name = "quick-xml"
2023-11-10 19:34:00 +01:00
version = "0.31.0"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
2023-06-18 11:34:08 +02:00
dependencies = [
"memchr",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "quote"
2023-11-10 19:34:00 +01:00
version = "1.0.33"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2022-06-16 23:44:37 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2023-03-22 22:39:18 +01:00
version = "0.6.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-06-16 23:44:37 +02:00
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
2023-11-10 19:34:00 +01:00
version = "0.4.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2022-06-16 23:44:37 +02:00
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "regex"
2023-11-10 19:34:00 +01:00
version = "1.10.2"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
2022-08-31 23:20:59 +02:00
dependencies = [
2023-07-29 11:51:04 +02:00
"aho-corasick",
2022-08-31 23:20:59 +02:00
"memchr",
2023-11-10 19:34:00 +01:00
"regex-automata 0.4.3",
"regex-syntax 0.8.2",
2022-08-31 23:20:59 +02:00
]
2023-04-02 15:26:20 +02:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-06-18 09:51:36 +02:00
"regex-syntax 0.6.29",
2023-04-02 15:26:20 +02:00
]
2023-07-29 11:51:04 +02:00
[[package]]
name = "regex-automata"
2023-11-10 19:34:00 +01:00
version = "0.4.3"
2023-07-29 11:51:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
2023-07-29 11:51:04 +02:00
dependencies = [
"aho-corasick",
"memchr",
2023-11-10 19:34:00 +01:00
"regex-syntax 0.8.2",
2023-07-29 11:51:04 +02:00
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "regex-syntax"
2023-03-22 22:39:18 +01:00
version = "0.6.29"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-08-31 23:20:59 +02:00
2023-06-18 09:51:36 +02:00
[[package]]
name = "regex-syntax"
2023-11-10 19:34:00 +01:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
[[package]]
name = "regex-syntax"
version = "0.8.2"
2023-06-18 09:51:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2023-06-18 09:51:36 +02:00
2023-07-29 20:22:13 +02:00
[[package]]
name = "ron"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
dependencies = [
"base64 0.13.1",
"bitflags 1.3.2",
"serde",
]
[[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",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "rustc-demangle"
2023-06-18 09:51:36 +02:00
version = "0.1.23"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2022-06-16 23:44:37 +02:00
2023-03-25 22:12:49 +01:00
[[package]]
name = "rustix"
2023-11-10 19:34:00 +01:00
version = "0.36.17"
2023-03-25 22:12:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed"
2023-03-25 22:12:49 +01:00
dependencies = [
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2023-03-25 22:12:49 +01:00
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-04-10 00:46:58 +02:00
"windows-sys 0.45.0",
2023-03-25 22:12:49 +01:00
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "rustversion"
2023-07-29 11:51:04 +02:00
version = "1.0.14"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2023-03-22 22:39:18 +01:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "ryu"
2023-07-29 11:51:04 +02:00
version = "1.0.15"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2022-06-16 23:44:37 +02:00
2023-06-18 11:34:08 +02:00
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2022-08-31 23:20:59 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "scopeguard"
2023-07-29 11:51:04 +02:00
version = "1.2.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2022-06-16 23:44:37 +02:00
[[package]]
name = "serde"
2023-11-10 19:34:00 +01:00
version = "1.0.192"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
2023-03-22 22:39:18 +01:00
dependencies = [
"serde_derive",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "serde_derive"
2023-11-10 19:34:00 +01:00
version = "1.0.192"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
2022-08-31 23:20:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-08-31 23:20:59 +02:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "serde_json"
2023-11-10 19:34:00 +01:00
version = "1.0.108"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2022-06-16 23:44:37 +02:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "serde_path_to_error"
2023-07-29 11:51:04 +02:00
version = "0.1.14"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335"
2023-03-22 22:39:18 +01:00
dependencies = [
2023-07-29 11:51:04 +02:00
"itoa",
2023-03-22 22:39:18 +01:00
"serde",
]
2023-03-25 12:23:11 +01:00
[[package]]
name = "serde_spanned"
2023-11-10 19:34:00 +01:00
version = "0.6.4"
2023-03-25 12:23:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"
2023-03-25 12:23:11 +01:00
dependencies = [
"serde",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2022-08-31 23:20:59 +02:00
[[package]]
2023-03-22 22:39:18 +01:00
name = "sha2"
2023-11-10 19:34:00 +01:00
version = "0.10.8"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2022-08-31 23:20:59 +02:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "sharded-slab"
2023-11-10 19:34:00 +01:00
version = "0.1.7"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2022-06-16 23:44:37 +02:00
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
2023-03-22 22:39:18 +01:00
version = "1.4.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-06-16 23:44:37 +02:00
dependencies = [
"libc",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "siphasher"
2023-11-10 19:34:00 +01:00
version = "0.3.11"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2022-08-31 23:20:59 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "slab"
2023-11-10 19:34:00 +01:00
version = "0.4.9"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-03-22 22:39:18 +01:00
dependencies = [
"autocfg",
]
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "slug"
2023-11-10 19:34:00 +01:00
version = "0.1.5"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4"
2022-08-31 23:20:59 +02:00
dependencies = [
"deunicode",
2023-11-10 19:34:00 +01:00
"wasm-bindgen",
2022-08-31 23:20:59 +02:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "smallvec"
2023-11-10 19:34:00 +01:00
version = "1.11.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
2022-06-16 23:44:37 +02:00
[[package]]
name = "socket2"
2023-11-10 19:34:00 +01:00
version = "0.4.10"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
2022-06-16 23:44:37 +02:00
dependencies = [
"libc",
"winapi",
]
2023-11-10 19:34:00 +01:00
[[package]]
name = "socket2"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-06-16 23:44:37 +02:00
[[package]]
name = "syn"
2023-03-22 22:39:18 +01:00
version = "1.0.109"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2023-11-10 19:34:00 +01:00
version = "2.0.39"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
2022-06-16 23:44:37 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
2023-03-22 22:39:18 +01:00
version = "0.1.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2022-06-16 23:44:37 +02:00
2023-06-18 11:34:08 +02:00
[[package]]
name = "syntect"
2023-11-10 19:34:00 +01:00
version = "5.1.0"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91"
2023-06-18 11:34:08 +02:00
dependencies = [
"bincode",
2023-07-29 11:51:04 +02:00
"bitflags 1.3.2",
2023-06-18 11:34:08 +02:00
"flate2",
"fnv",
"once_cell",
"onig",
"plist",
2023-11-10 19:34:00 +01:00
"regex-syntax 0.7.5",
2023-06-18 11:34:08 +02:00
"serde",
"serde_json",
"thiserror",
"walkdir",
"yaml-rust",
]
2022-08-31 23:20:59 +02:00
[[package]]
name = "tera"
2023-11-10 19:34:00 +01:00
version = "1.19.1"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "970dff17c11e884a4a09bc76e3a17ef71e01bb13447a11e85226e254fe6d10b8"
2022-08-31 23:20:59 +02:00
dependencies = [
"chrono",
"chrono-tz",
"globwalk",
"humansize",
"lazy_static",
"percent-encoding",
"pest",
"pest_derive",
"rand",
"regex",
"serde",
"serde_json",
"slug",
"unic-segment",
]
[[package]]
name = "thiserror"
2023-11-10 19:34:00 +01:00
version = "1.0.50"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
2022-08-31 23:20:59 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-11-10 19:34:00 +01:00
version = "1.0.50"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
2022-08-31 23:20:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-08-31 23:20:59 +02:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "thread_local"
2023-11-10 19:34:00 +01:00
version = "1.1.7"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"cfg-if",
2022-06-16 23:44:37 +02:00
"once_cell",
]
2023-03-25 16:14:53 +01:00
[[package]]
name = "time"
2023-11-10 19:34:00 +01:00
version = "0.3.30"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
2023-06-18 11:34:08 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"deranged",
2023-06-18 11:34:08 +02:00
"itoa",
2023-11-10 19:34:00 +01:00
"powerfmt",
2023-06-18 11:34:08 +02:00
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-11-10 19:34:00 +01:00
version = "0.1.2"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2023-06-18 11:34:08 +02:00
[[package]]
name = "time-macros"
2023-11-10 19:34:00 +01:00
version = "0.2.15"
2023-06-18 11:34:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
2023-06-18 11:34:08 +02:00
dependencies = [
"time-core",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "tokio"
2023-11-10 19:34:00 +01:00
version = "1.34.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-07-29 11:51:04 +02:00
"backtrace",
2022-06-16 23:44:37 +02:00
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2023-11-10 19:34:00 +01:00
"socket2 0.5.5",
2022-06-16 23:44:37 +02:00
"tokio-macros",
2023-06-18 09:51:36 +02:00
"windows-sys 0.48.0",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "tokio-macros"
2023-11-10 19:34:00 +01:00
version = "2.2.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2022-06-16 23:44:37 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "tokio-util"
2023-11-10 19:34:00 +01:00
version = "0.7.10"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
2022-06-16 23:44:37 +02:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2023-07-29 20:22:13 +02:00
[[package]]
name = "toml"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
"serde",
]
2023-03-25 12:23:11 +01:00
[[package]]
name = "toml"
2023-11-10 19:34:00 +01:00
version = "0.8.8"
2023-03-25 12:23:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
2023-03-25 12:23:11 +01:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
2023-11-10 19:34:00 +01:00
version = "0.6.5"
2023-03-25 12:23:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
2023-03-25 12:23:11 +01:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2023-11-10 19:34:00 +01:00
version = "0.21.0"
2023-03-25 12:23:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
2023-03-25 12:23:11 +01:00
dependencies = [
2023-11-10 19:34:00 +01:00
"indexmap 2.1.0",
2023-03-25 12:23:11 +01:00
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "tower"
2023-03-22 22:39:18 +01:00
version = "0.4.13"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2022-06-16 23:44:37 +02:00
dependencies = [
"futures-core",
"futures-util",
"hdrhistogram",
2023-07-29 11:51:04 +02:00
"indexmap 1.9.3",
2022-06-16 23:44:37 +02:00
"pin-project",
"pin-project-lite",
"rand",
"slab",
"tokio",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-http"
2023-11-10 19:34:00 +01:00
version = "0.4.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
2022-06-16 23:44:37 +02:00
dependencies = [
"async-compression",
2023-11-10 19:34:00 +01:00
"base64 0.21.5",
"bitflags 2.4.1",
2022-06-16 23:44:37 +02:00
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"httpdate",
"iri-string",
"mime",
"mime_guess",
"percent-encoding",
"pin-project-lite",
"tokio",
"tokio-util",
"tower",
"tower-layer",
"tower-service",
"tracing",
"uuid",
]
[[package]]
name = "tower-layer"
2023-03-22 22:39:18 +01:00
version = "0.3.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2022-06-16 23:44:37 +02:00
[[package]]
name = "tower-service"
2023-03-22 22:39:18 +01:00
version = "0.3.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2022-06-16 23:44:37 +02:00
[[package]]
name = "tracing"
2023-11-10 19:34:00 +01:00
version = "0.1.40"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2022-06-16 23:44:37 +02:00
dependencies = [
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-11-10 19:34:00 +01:00
version = "0.1.27"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2022-06-16 23:44:37 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "tracing-core"
2023-11-10 19:34:00 +01:00
version = "0.1.32"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2022-06-16 23:44:37 +02:00
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-error"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
2023-11-10 19:34:00 +01:00
version = "0.1.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2"
dependencies = [
"log",
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2022-06-16 23:44:37 +02:00
dependencies = [
"log",
2023-11-10 19:34:00 +01:00
"once_cell",
2022-06-16 23:44:37 +02:00
"tracing-core",
]
2023-04-02 15:26:20 +02:00
[[package]]
name = "tracing-opentelemetry"
2023-11-10 19:34:00 +01:00
version = "0.22.0"
2023-04-02 15:26:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c67ac25c5407e7b961fafc6f7e9aa5958fd297aada2d20fa2ae1737357e55596"
2023-04-02 15:26:20 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"js-sys",
2023-04-02 15:26:20 +02:00
"once_cell",
2023-07-29 11:51:04 +02:00
"opentelemetry",
2023-11-10 19:34:00 +01:00
"opentelemetry_sdk",
"smallvec",
2023-04-02 15:26:20 +02:00
"tracing",
"tracing-core",
2023-11-10 19:34:00 +01:00
"tracing-log 0.2.0",
2023-04-02 15:26:20 +02:00
"tracing-subscriber",
2023-11-10 19:34:00 +01:00
"web-time",
2023-04-02 15:26:20 +02:00
]
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "tracing-subscriber"
2023-06-18 09:51:36 +02:00
version = "0.3.17"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-04-02 15:26:20 +02:00
"matchers",
2023-03-22 22:39:18 +01:00
"nu-ansi-term",
2023-04-02 15:26:20 +02:00
"once_cell",
"regex",
"serde",
"serde_json",
2022-06-16 23:44:37 +02:00
"sharded-slab",
"smallvec",
"thread_local",
2023-04-02 15:26:20 +02:00
"tracing",
2022-06-16 23:44:37 +02:00
"tracing-core",
2023-11-10 19:34:00 +01:00
"tracing-log 0.1.4",
2023-04-02 15:26:20 +02:00
"tracing-serde",
2022-06-16 23:44:37 +02:00
]
[[package]]
name = "try-lock"
2023-03-22 22:39:18 +01:00
version = "0.2.4"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "typenum"
2023-11-10 19:34:00 +01:00
version = "1.17.0"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2022-08-31 23:20:59 +02:00
[[package]]
name = "ucd-trie"
2023-07-29 11:51:04 +02:00
version = "0.1.6"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
2022-08-31 23:20:59 +02:00
[[package]]
name = "unic-char-property"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
dependencies = [
"unic-char-range",
]
[[package]]
name = "unic-char-range"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
[[package]]
name = "unic-common"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
[[package]]
name = "unic-segment"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23"
dependencies = [
"unic-ucd-segment",
]
[[package]]
name = "unic-ucd-segment"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700"
dependencies = [
"unic-char-property",
"unic-char-range",
"unic-ucd-version",
]
[[package]]
name = "unic-ucd-version"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
dependencies = [
"unic-common",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "unicase"
2023-11-10 19:34:00 +01:00
version = "2.7.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2022-06-16 23:44:37 +02:00
dependencies = [
"version_check",
]
[[package]]
name = "unicode-ident"
2023-11-10 19:34:00 +01:00
version = "1.0.12"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-06-16 23:44:37 +02:00
2022-08-31 23:20:59 +02:00
[[package]]
name = "unicode-width"
2023-11-10 19:34:00 +01:00
version = "0.1.11"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2022-08-31 23:20:59 +02:00
2023-06-18 09:51:36 +02:00
[[package]]
name = "urlencoding"
2023-07-29 11:51:04 +02:00
version = "2.1.3"
2023-06-18 09:51:36 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 11:51:04 +02:00
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2023-06-18 09:51:36 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "uuid"
2023-11-10 19:34:00 +01:00
version = "1.5.0"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc"
2022-06-16 23:44:37 +02:00
dependencies = [
"getrandom",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-08-31 23:20:59 +02:00
[[package]]
name = "walkdir"
2023-11-10 19:34:00 +01:00
version = "2.4.0"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
2022-08-31 23:20:59 +02:00
dependencies = [
"same-file",
"winapi-util",
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "want"
2023-06-18 09:51:36 +02:00
version = "0.3.1"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-18 09:51:36 +02:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2022-06-16 23:44:37 +02:00
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-08-31 23:20:59 +02:00
[[package]]
name = "wasm-bindgen"
2023-11-10 19:34:00 +01:00
version = "0.2.88"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
2022-08-31 23:20:59 +02:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-11-10 19:34:00 +01:00
version = "0.2.88"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
2022-08-31 23:20:59 +02:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-08-31 23:20:59 +02:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2023-11-10 19:34:00 +01:00
version = "0.2.88"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
2022-08-31 23:20:59 +02:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-11-10 19:34:00 +01:00
version = "0.2.88"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
2022-08-31 23:20:59 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-10 19:34:00 +01:00
"syn 2.0.39",
2022-08-31 23:20:59 +02:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-11-10 19:34:00 +01:00
version = "0.2.88"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
[[package]]
name = "web-time"
version = "0.2.3"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "57099a701fb3a8043f993e8228dc24229c7b942e2b009a1b962e54489ba1d3bf"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-08-31 23:20:59 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "website"
version = "0.1.0"
dependencies = [
"axum",
2023-03-22 22:39:18 +01:00
"cached",
2023-03-25 16:14:53 +01:00
"chrono",
2022-06-16 23:44:37 +02:00
"color-eyre",
2023-07-29 20:22:13 +02:00
"config",
2022-08-31 23:20:59 +02:00
"glob",
2023-07-29 11:51:04 +02:00
"opentelemetry",
2023-03-25 22:12:49 +01:00
"prometheus",
2022-08-31 23:20:59 +02:00
"pulldown-cmark",
2023-03-25 12:23:11 +01:00
"regex",
2022-08-31 23:20:59 +02:00
"serde",
"serde_derive",
"serde_json",
2023-06-18 11:34:08 +02:00
"syntect",
2022-08-31 23:20:59 +02:00
"tera",
2022-06-16 23:44:37 +02:00
"tokio",
2023-11-10 19:34:00 +01:00
"toml 0.8.8",
2022-06-16 23:44:37 +02:00
"tower",
"tower-http",
"tracing",
2023-04-02 15:26:20 +02:00
"tracing-opentelemetry",
2022-06-16 23:44:37 +02:00
"tracing-subscriber",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2022-08-31 23:20:59 +02:00
[[package]]
name = "winapi-util"
2023-11-10 19:34:00 +01:00
version = "0.1.6"
2022-08-31 23:20:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2022-08-31 23:20:59 +02:00
dependencies = [
"winapi",
]
2022-06-16 23:44:37 +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"
2023-03-22 22:39:18 +01:00
[[package]]
2023-11-10 19:34:00 +01:00
name = "windows-core"
version = "0.51.1"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
2023-03-22 22:39:18 +01:00
dependencies = [
2023-11-10 19:34:00 +01:00
"windows-targets 0.48.5",
2023-03-22 22:39:18 +01:00
]
2022-06-16 23:44:37 +02:00
[[package]]
name = "windows-sys"
2023-03-22 22:39:18 +01:00
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-10 00:46:58 +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 = [
2023-11-10 19:34:00 +01:00
"windows-targets 0.48.5",
2023-03-22 22:39:18 +01:00
]
[[package]]
name = "windows-targets"
version = "0.42.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2022-06-16 23:44:37 +02:00
dependencies = [
2023-04-10 00:46:58 +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"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-04-10 00:46:58 +02:00
dependencies = [
2023-11-10 19:34:00 +01:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
2022-06-16 23:44:37 +02:00
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-04-10 00:46:58 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-22 22:39:18 +01:00
version = "0.42.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-06-16 23:44:37 +02:00
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_aarch64_msvc"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-04-10 00:46:58 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "windows_i686_gnu"
2023-03-22 22:39:18 +01:00
version = "0.42.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-06-16 23:44:37 +02:00
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_i686_gnu"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-04-10 00:46:58 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "windows_i686_msvc"
2023-03-22 22:39:18 +01:00
version = "0.42.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-06-16 23:44:37 +02:00
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_i686_msvc"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-04-10 00:46:58 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-22 22:39:18 +01:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_x86_64_gnu"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-04-10 00:46:58 +02:00
2023-03-22 22:39:18 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-06-16 23:44:37 +02:00
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-04-10 00:46:58 +02:00
2022-06-16 23:44:37 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-22 22:39:18 +01:00
version = "0.42.2"
2022-06-16 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 22:39:18 +01:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-04-10 00:46:58 +02:00
[[package]]
name = "windows_x86_64_msvc"
2023-11-10 19:34:00 +01:00
version = "0.48.5"
2023-04-10 00:46:58 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-04-10 00:46:58 +02:00
2023-03-25 12:23:11 +01:00
[[package]]
name = "winnow"
2023-11-10 19:34:00 +01:00
version = "0.5.19"
2023-03-25 12:23:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b"
2023-03-25 12:23:11 +01:00
dependencies = [
"memchr",
]
2023-06-18 11:34:08 +02:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]
2023-11-10 19:34:00 +01:00
[[package]]
name = "zerocopy"
version = "0.7.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cd369a67c0edfef15010f980c3cbe45d7f651deac2cd67ce097cd801de16557"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2f140bda219a26ccc0cdb03dba58af72590c53b22642577d88a927bc5c87d6b"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
]
2023-03-22 22:39:18 +01:00
[[package]]
name = "zstd"
2023-11-10 19:34:00 +01:00
version = "0.13.0"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
2023-03-22 22:39:18 +01:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2023-11-10 19:34:00 +01:00
version = "7.0.0"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
2023-03-22 22:39:18 +01:00
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2023-11-10 19:34:00 +01:00
version = "2.0.9+zstd.1.5.5"
2023-03-22 22:39:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-10 19:34:00 +01:00
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
2023-03-22 22:39:18 +01:00
dependencies = [
"cc",
"pkg-config",
]