hoc/Cargo.lock

2449 lines
59 KiB
Plaintext
Raw Normal View History

2019-04-16 16:57:06 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-09-03 13:13:03 +02:00
version = 3
[[package]]
name = "ab_glyph_rasterizer"
2021-02-26 16:28:04 +01:00
version = "0.1.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "d9fe5e32de01730eb1f6b7f5b51c17e03e2325bf40a74f754f04f130043affff"
2019-04-16 16:57:06 +02:00
2020-09-12 14:01:59 +02:00
[[package]]
name = "actix-codec"
2021-09-03 13:13:03 +02:00
version = "0.4.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "1d5dbeb2d9e51344cb83ca7cc170f1217f9fe25bfc50160e6e200b5c31c1019a"
2020-09-12 14:01:59 +02:00
dependencies = [
"bitflags",
2021-09-03 13:13:03 +02:00
"bytes",
2020-09-12 14:01:59 +02:00
"futures-core",
"futures-sink",
"log",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
2021-02-26 16:04:58 +01:00
"tokio",
2021-02-26 16:28:04 +01:00
"tokio-util",
2020-09-12 14:01:59 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-http"
version = "3.0.0-beta.12"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afaeb3d3fcb06b775ac62f05d580aae4afe5a149513333a73f688fdf26c06639"
dependencies = [
2021-02-26 16:28:04 +01:00
"actix-codec",
"actix-rt",
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
2021-09-03 13:13:03 +02:00
"ahash",
"base64 0.13.0",
"bitflags",
"brotli2",
2021-09-03 13:13:03 +02:00
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"futures-util",
2021-02-26 16:04:58 +01:00
"h2",
"http",
"httparse",
"httpdate",
"itoa 0.4.8",
"language-tags",
2021-09-03 13:13:03 +02:00
"local-channel",
"log",
"mime",
"percent-encoding",
2021-09-03 13:13:03 +02:00
"pin-project",
"pin-project-lite",
"rand",
2020-09-12 14:01:59 +02:00
"sha-1",
2021-09-03 13:13:03 +02:00
"smallvec",
"zstd",
]
[[package]]
name = "actix-macros"
version = "0.2.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
2019-04-16 16:57:06 +02:00
dependencies = [
"quote",
"syn",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-router"
2021-09-14 13:03:18 +02:00
version = "0.5.0-beta.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "36b95ce0d76d1aa2f98b681702807475ade0f99bd4552546a6843a966d42ea3d"
2019-04-16 16:57:06 +02:00
dependencies = [
"bytestring",
2021-09-14 13:03:18 +02:00
"firestorm",
"http",
"log",
"regex",
"serde 1.0.136",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-rt"
version = "2.6.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdf3f2183be1241ed4dd22611850b85d38de0b08a09f1f7bcccbd0809084b359"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-macros",
2021-09-03 13:13:03 +02:00
"futures-core",
2021-02-26 16:04:58 +01:00
"tokio",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-server"
2021-09-03 13:13:03 +02:00
version = "2.0.0-beta.5"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "26369215fcc3b0176018b3b68756a8bcc275bb000e6212e454944913a1f9bf87"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-rt",
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
2021-09-03 13:13:03 +02:00
"futures-core",
"log",
2021-02-26 16:04:58 +01:00
"mio",
"num_cpus",
"slab",
2021-09-03 13:13:03 +02:00
"tokio",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-service"
2021-09-03 13:13:03 +02:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "77f5f9d66a8730d0fae62c26f3424f5751e5518086628a40b7ab6fca4a705034"
dependencies = [
2021-09-03 13:13:03 +02:00
"futures-core",
"paste",
"pin-project-lite",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-tls"
version = "3.0.0-beta.7"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4af84e13e4600829858a3e68079be710d1ada461431e1e4c5ae663479ea0a3c"
2020-09-12 14:01:59 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"actix-codec",
2021-09-03 13:13:03 +02:00
"actix-rt",
2020-09-12 14:01:59 +02:00
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
2021-09-03 13:13:03 +02:00
"derive_more",
"futures-core",
"http",
"log",
"tokio-util",
2020-09-12 14:01:59 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "actix-utils"
2021-09-03 13:13:03 +02:00
version = "3.0.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"local-waker",
"pin-project-lite",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-web"
version = "4.0.0-beta.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8a4b9d00991d8da308070a5cea7f1bbaa153a91c3fb5567937d99b9f46d601e"
dependencies = [
2021-02-26 16:28:04 +01:00
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
2021-02-26 16:28:04 +01:00
"actix-utils",
"actix-web-codegen",
2021-09-03 13:13:03 +02:00
"ahash",
"bytes",
"cfg-if",
"cookie",
"derive_more",
2021-09-03 13:13:03 +02:00
"either",
"encoding_rs",
2020-09-12 14:01:59 +02:00
"futures-core",
"futures-util",
"itoa 0.4.8",
2021-09-03 13:13:03 +02:00
"language-tags",
"log",
"mime",
2021-09-03 13:13:03 +02:00
"once_cell",
"paste",
"pin-project",
"regex",
"serde 1.0.136",
"serde_json",
"serde_urlencoded",
2021-09-03 13:13:03 +02:00
"smallvec",
2020-09-12 14:01:59 +02:00
"socket2",
"time 0.3.5",
"url",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "actix-web-codegen"
version = "0.5.0-beta.6"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30a90b7f6c2fde9a1fe3df4da758c2c3c9d620dfa3eae4da0b6925dc0a13444a"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-14 13:03:18 +02:00
"actix-router",
"proc-macro2",
"quote",
"syn",
2019-04-16 16:57:06 +02:00
]
2021-02-26 16:28:04 +01:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-09-03 13:13:03 +02:00
[[package]]
name = "ahash"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43bb833f0bf979d8475d38fbf09ed3b8a55e1885fe93ad3f93239fc6a4f17b98"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "aho-corasick"
2021-09-14 13:03:18 +02:00
version = "0.7.18"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2019-04-16 16:57:06 +02:00
dependencies = [
"memchr",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
2021-09-03 13:13:03 +02:00
"winapi",
]
[[package]]
name = "anyhow"
2021-09-14 13:03:18 +02:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
2019-04-16 16:57:06 +02:00
[[package]]
name = "arrayvec"
2021-02-26 16:28:04 +01:00
version = "0.5.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2019-04-16 16:57:06 +02:00
[[package]]
name = "autocfg"
2021-02-26 16:28:04 +01:00
version = "1.0.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2019-04-16 16:57:06 +02:00
[[package]]
name = "awc"
version = "3.0.0-beta.10"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f122bed94dc044b13a991b292ff6a3cde4c3fba890a4e3dbbec0f2eedc607f0a"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
"actix-tls",
"actix-utils",
"ahash",
"base64 0.13.0",
2021-09-03 13:13:03 +02:00
"bytes",
"cfg-if",
"cookie",
"derive_more",
"futures-core",
"futures-util",
"h2",
"http",
"itoa 0.4.8",
"log",
"mime",
"percent-encoding",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"rand",
"serde 1.0.136",
"serde_json",
"serde_urlencoded",
"tokio",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "badge"
version = "0.3.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0228ae65b89e72921e86c19c3574da63bda0628e9d7da5e164f569bbf4e477d"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"base64 0.12.3",
"once_cell",
"rusttype",
2019-04-16 16:57:06 +02:00
]
[[package]]
2020-09-12 14:01:59 +02:00
name = "base-x"
2021-02-26 16:28:04 +01:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
[[package]]
name = "base64"
2021-02-26 16:28:04 +01:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2019-04-16 16:57:06 +02:00
[[package]]
name = "bitflags"
2021-09-14 13:03:18 +02:00
version = "1.3.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-04-16 16:57:06 +02:00
[[package]]
name = "bitvec"
version = "0.19.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "brotli-sys"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "brotli2"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cb036c3eade309815c15ddbacec5b22c4d1f3983a774ab2eac2e3e9ea85568e"
2019-04-16 16:57:06 +02:00
dependencies = [
"brotli-sys",
"libc",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "bumpalo"
2021-09-14 13:03:18 +02:00
version = "3.7.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2019-04-16 16:57:06 +02:00
2019-04-23 18:19:35 +02:00
[[package]]
name = "bytecount"
2021-02-26 16:28:04 +01:00
version = "0.6.2"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "72feb31ffc86498dacdbd0fcebb56138e7177a8cc5cea4516031d15ae85a742e"
2019-04-23 18:19:35 +02:00
[[package]]
name = "bytes"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2019-04-16 16:57:06 +02:00
[[package]]
name = "bytestring"
2021-02-26 16:28:04 +01:00
version = "1.0.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "cc"
2021-09-14 13:03:18 +02:00
version = "1.0.70"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "d26a6ce4b6a484fa3edb70f7efa6fc430fd2b87285fe8b84304fd0936faa0dc0"
dependencies = [
"jobserver",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
2019-04-16 16:57:06 +02:00
name = "chrono"
2020-10-30 13:02:53 +01:00
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-30 13:02:53 +01:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
2020-10-30 13:02:53 +01:00
"libc",
"num-integer",
2021-02-26 16:28:04 +01:00
"num-traits 0.2.14",
"time 0.1.43",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "config"
version = "0.11.0"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1b9d958c2b1368a663f05538fc1b5975adce1e19f435acceae987aceeeb369"
2019-04-21 20:44:29 +02:00
dependencies = [
"lazy_static",
"nom 5.1.2",
"rust-ini",
"serde 1.0.136",
"serde-hjson",
"serde_json",
"toml",
"yaml-rust",
2019-04-21 20:44:29 +02:00
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "const_fn"
2021-09-14 13:03:18 +02:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
[[package]]
name = "convert_case"
version = "0.4.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-09-12 14:01:59 +02:00
[[package]]
name = "cookie"
2021-09-03 13:13:03 +02:00
version = "0.15.1"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "d5f1c7727e460397e56abc4bddc1d49e07a1ad78fc98eb2e1c8f032a58a2f80d"
2020-09-12 14:01:59 +02:00
dependencies = [
"percent-encoding",
2021-09-14 13:03:18 +02:00
"time 0.2.27",
2021-02-26 16:28:04 +01:00
"version_check",
2020-09-12 14:01:59 +02:00
]
2019-04-21 20:44:29 +02:00
[[package]]
name = "core-foundation"
2021-02-26 16:28:04 +01:00
version = "0.9.1"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
2019-04-21 20:44:29 +02:00
dependencies = [
"core-foundation-sys",
"libc",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "core-foundation-sys"
2021-02-26 16:28:04 +01:00
version = "0.8.2"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
2019-04-21 20:44:29 +02:00
2020-09-12 14:01:59 +02:00
[[package]]
2021-09-14 13:03:18 +02:00
name = "cpufeatures"
version = "0.2.1"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
dependencies = [
"libc",
]
2020-09-12 14:01:59 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "crc32fast"
2021-02-26 16:28:04 +01:00
version = "1.2.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "derive_more"
2021-09-14 13:03:18 +02:00
version = "0.99.16"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-14 13:03:18 +02:00
"convert_case",
"proc-macro2",
"quote",
2021-09-14 13:03:18 +02:00
"rustc_version 0.3.3",
"syn",
2019-04-16 16:57:06 +02:00
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2019-04-21 20:44:29 +02:00
[[package]]
2019-04-16 16:57:06 +02:00
name = "either"
2021-02-26 16:28:04 +01:00
version = "1.6.1"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2019-04-21 20:44:29 +02:00
[[package]]
name = "encoding_rs"
2021-02-26 16:28:04 +01:00
version = "0.8.28"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "enum-iterator"
2021-09-14 13:03:18 +02:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
dependencies = [
"enum-iterator-derive",
]
[[package]]
name = "enum-iterator-derive"
2021-09-14 13:03:18 +02:00
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "fastrand"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "779d043b6a0b90cc4c0ed7ee380a6504394cee7efd7db050e3774eee387324b2"
dependencies = [
"instant",
]
2021-09-14 13:03:18 +02:00
[[package]]
name = "firestorm"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31586bda1b136406162e381a3185a506cdfc1631708dd40cba2f6628d8634499"
2019-04-16 16:57:06 +02:00
[[package]]
name = "flate2"
2021-09-14 13:03:18 +02:00
version = "1.0.22"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"crc32fast",
"libc",
"miniz_oxide",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "fnv"
2021-02-26 16:28:04 +01:00
version = "1.0.7"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2019-04-21 20:44:29 +02:00
dependencies = [
"foreign-types-shared",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "foreign-types-shared"
version = "0.1.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-04-16 16:57:06 +02:00
[[package]]
name = "form_urlencoded"
2021-02-26 16:28:04 +01:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "funty"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4"
2019-04-16 16:57:06 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "futures-channel"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
2019-04-16 16:57:06 +02:00
dependencies = [
"futures-core",
"futures-sink",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "futures-core"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "futures-executor"
version = "0.3.19"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29d6d2ff5bb10fb95c85b8ce46538a2e5f5e7fdc755623a7d4529ab8a4ed9d2a"
2019-04-21 20:44:29 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "futures-io"
version = "0.3.19"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2"
2019-04-21 20:44:29 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-macro"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-sink"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-task"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
2019-04-16 16:57:06 +02:00
[[package]]
name = "futures-util"
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"pin-utils",
"slab",
]
2019-04-16 16:57:06 +02:00
2020-09-12 14:01:59 +02:00
[[package]]
name = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
2021-02-26 16:28:04 +01:00
"version_check",
2020-09-12 14:01:59 +02:00
]
[[package]]
name = "gethostname"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e692e296bfac1d2533ef168d0b60ff5897b8b70a4009276834014dd8924cc028"
dependencies = [
"libc",
2021-09-03 13:13:03 +02:00
"winapi",
]
[[package]]
name = "getrandom"
2021-09-14 13:03:18 +02:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"libc",
2021-09-03 13:13:03 +02:00
"wasi",
]
[[package]]
name = "getset"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24b328c01a4d71d2d8173daa93562a73ab0fe85616876f02500f53d82948c504"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "git2"
version = "0.13.25"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f29229cc1b24c0e6062f6e742aa3e256492a5323365e5ed3413599f8a5eff7d6"
2019-04-16 16:57:06 +02:00
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
"openssl-probe",
"openssl-sys",
"url",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "h2"
version = "0.3.10"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c9de88456263e249e241fcd211d3954e2c9b0ef7ccfc235a444eb367cae3689"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-02-26 16:04:58 +01:00
"tokio",
2021-02-26 16:28:04 +01:00
"tokio-util",
"tracing",
2019-04-16 16:57:06 +02:00
]
2021-02-26 16:28:04 +01:00
[[package]]
name = "hashbrown"
2021-09-14 13:03:18 +02:00
version = "0.11.2"
2021-02-26 16:28:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2021-02-26 16:28:04 +01:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "hermit-abi"
2021-09-14 13:03:18 +02:00
version = "0.1.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "hoc"
2021-12-30 12:23:55 +01:00
version = "0.20.4"
2019-04-16 16:57:06 +02:00
dependencies = [
"actix-rt",
"actix-web",
2021-09-03 13:13:03 +02:00
"awc",
"badge",
2021-09-03 13:13:03 +02:00
"bytes",
"config",
"dotenv",
"futures",
"git2",
"lazy_static",
"number_prefix",
"openssl-probe",
"reqwest",
"ructe",
"serde 1.0.136",
"serde_derive",
"serde_json",
2020-05-15 12:15:18 +02:00
"tempfile",
"tokio",
"tracing",
"tracing-actix-web",
"tracing-bunyan-formatter",
"tracing-futures",
"tracing-log",
"tracing-subscriber",
"vergen",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "http"
version = "0.2.5"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"fnv",
"itoa 0.4.8",
2019-05-19 13:56:23 +02:00
]
[[package]]
name = "http-body"
2021-09-03 13:13:03 +02:00
version = "0.4.3"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "399c583b2979440c60be0821a6199eca73bc3c8dcd9d070d75ac726e2c6186e5"
2019-05-19 13:56:23 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"http",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "httparse"
2021-09-03 13:13:03 +02:00
version = "1.5.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2019-04-16 16:57:06 +02:00
[[package]]
name = "httpdate"
2021-09-03 13:13:03 +02:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2019-04-21 20:44:29 +02:00
[[package]]
name = "hyper"
2021-09-03 13:13:03 +02:00
version = "0.14.12"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "13f67199e765030fa08fe0bd581af683f0d5bc04ea09c2b1102012c5fb90e7fd"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"futures-channel",
"futures-core",
"futures-util",
2021-02-26 16:04:58 +01:00
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa 0.4.8",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"socket2",
2021-02-26 16:04:58 +01:00
"tokio",
"tower-service",
"tracing",
"want",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "hyper-tls"
2021-09-03 13:13:03 +02:00
version = "0.5.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"hyper",
"native-tls",
2021-02-26 16:04:58 +01:00
"tokio",
2021-09-03 13:13:03 +02:00
"tokio-native-tls",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "idna"
2021-09-14 13:03:18 +02:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "indexmap"
2021-09-14 13:03:18 +02:00
version = "1.7.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
dependencies = [
"autocfg",
2021-02-26 16:28:04 +01:00
"hashbrown",
]
[[package]]
name = "instant"
2021-09-14 13:03:18 +02:00
version = "0.1.10"
2021-02-26 16:28:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
2021-02-26 16:28:04 +01:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "ipnet"
2021-09-14 13:03:18 +02:00
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
2019-04-23 18:19:35 +02:00
[[package]]
name = "itertools"
2021-09-14 13:03:18 +02:00
version = "0.10.1"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
2019-04-23 18:19:35 +02:00
dependencies = [
"either",
2019-04-23 18:19:35 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "itoa"
2021-09-14 13:03:18 +02:00
version = "0.4.8"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2019-04-16 16:57:06 +02:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "jobserver"
2021-09-14 13:03:18 +02:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2021-09-14 13:03:18 +02:00
version = "0.3.54"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "1866b355d9c878e5e607473cbe3f63282c0b7aad2db1dbebf55076c686918254"
dependencies = [
"wasm-bindgen",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "language-tags"
2021-09-03 13:13:03 +02:00
version = "0.3.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2019-04-16 16:57:06 +02:00
[[package]]
name = "lazy_static"
version = "1.4.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-04-16 16:57:06 +02:00
[[package]]
name = "lexical-core"
2021-09-14 13:03:18 +02:00
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
dependencies = [
2020-11-23 14:35:12 +01:00
"arrayvec",
2021-02-26 16:28:04 +01:00
"bitflags",
2021-09-03 13:13:03 +02:00
"cfg-if",
"ryu",
"static_assertions",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "libc"
2021-09-03 13:13:03 +02:00
version = "0.2.101"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21"
2019-04-16 16:57:06 +02:00
[[package]]
name = "libgit2-sys"
version = "0.12.26+1.3.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e1c899248e606fbfe68dcb31d8b0176ebab833b103824af31bddf4b7457494"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"libssh2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "libssh2-sys"
2021-02-26 16:28:04 +01:00
version = "0.2.21"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "e0186af0d8f171ae6b9c4c90ec51898bad5d08a2d5e470903a50d9ad8959cbee"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "libz-sys"
2021-09-14 13:03:18 +02:00
version = "1.1.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"
2019-04-16 16:57:06 +02:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "linked-hash-map"
2021-02-26 16:28:04 +01:00
version = "0.5.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2019-04-16 16:57:06 +02:00
2021-09-03 13:13:03 +02:00
[[package]]
name = "local-channel"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6246c68cf195087205a0512559c97e15eaf95198bf0e206d662092cdcb03fe9f"
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84f9a2d3e27ce99ce2c3aad0b09b1a7b916293ea9b2bf624c13fe646fadd8da4"
2019-04-16 16:57:06 +02:00
[[package]]
name = "lock_api"
2021-09-14 13:03:18 +02:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
dependencies = [
"scopeguard",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "log"
2021-02-26 16:28:04 +01:00
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "matchers"
2021-10-27 20:53:34 +02:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-27 20:53:34 +02:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "matches"
2021-09-14 13:03:18 +02:00
version = "0.1.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2019-04-16 16:57:06 +02:00
2019-04-23 18:19:35 +02:00
[[package]]
name = "md5"
version = "0.7.0"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2019-04-23 18:19:35 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "memchr"
2021-09-14 13:03:18 +02:00
version = "2.4.1"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2019-04-21 20:44:29 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "mime"
version = "0.3.16"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2019-04-16 16:57:06 +02:00
[[package]]
name = "miniz_oxide"
2021-02-26 16:28:04 +01:00
version = "0.4.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"adler",
"autocfg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "mio"
2021-09-03 13:13:03 +02:00
version = "0.7.13"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
"log",
2021-02-26 16:04:58 +01:00
"miow",
2021-09-03 13:13:03 +02:00
"ntapi",
"winapi",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "miow"
2021-09-03 13:13:03 +02:00
version = "0.3.7"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
2019-04-21 20:44:29 +02:00
[[package]]
name = "native-tls"
2021-09-14 13:03:18 +02:00
version = "0.2.8"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
2019-04-21 20:44:29 +02:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-23 18:19:35 +02:00
name = "nom"
2021-02-26 16:28:04 +01:00
version = "5.1.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
2019-04-16 16:57:06 +02:00
dependencies = [
"lexical-core",
"memchr",
2021-02-26 16:28:04 +01:00
"version_check",
2019-04-23 18:19:35 +02:00
]
[[package]]
name = "nom"
version = "6.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
dependencies = [
"bitvec",
"funty",
"lexical-core",
"memchr",
"version_check",
]
2021-09-03 13:13:03 +02:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "num-integer"
2021-02-26 16:28:04 +01:00
version = "0.1.44"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2019-04-16 16:57:06 +02:00
dependencies = [
"autocfg",
2021-02-26 16:28:04 +01:00
"num-traits 0.2.14",
]
[[package]]
name = "num-traits"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
dependencies = [
2021-02-26 16:28:04 +01:00
"num-traits 0.2.14",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "num-traits"
2021-02-26 16:28:04 +01:00
version = "0.2.14"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2019-06-12 20:05:55 +02:00
dependencies = [
"autocfg",
2019-06-12 20:05:55 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "num_cpus"
2021-02-26 16:28:04 +01:00
version = "1.13.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2019-04-16 16:57:06 +02:00
dependencies = [
"hermit-abi",
"libc",
2019-04-16 16:57:06 +02:00
]
2019-04-30 14:18:30 +02:00
[[package]]
name = "number_prefix"
version = "0.4.0"
2019-04-30 14:18:30 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2019-05-01 13:38:57 +02:00
[[package]]
name = "once_cell"
2021-09-14 13:03:18 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2020-09-12 14:01:59 +02:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2019-04-21 20:44:29 +02:00
[[package]]
name = "openssl"
2021-09-14 13:03:18 +02:00
version = "0.10.36"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "8d9facdb76fec0b73c406f125d44d86fdad818d66fef0531eec9233ca425ff4a"
2019-04-21 20:44:29 +02:00
dependencies = [
"bitflags",
2021-09-03 13:13:03 +02:00
"cfg-if",
"foreign-types",
"libc",
2021-09-14 13:03:18 +02:00
"once_cell",
"openssl-sys",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2019-04-16 16:57:06 +02:00
[[package]]
name = "openssl-sys"
2021-09-14 13:03:18 +02:00
version = "0.9.66"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "1996d2d305e561b70d1ee0c53f1542833f4e1ac6ce9a6708b6ff2738ca67dc82"
2019-04-16 16:57:06 +02:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "owned_ttf_parser"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f923fb806c46266c02ab4a5b239735c144bdeda724a50ed058e5226f594cde3"
dependencies = [
"ttf-parser",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "parking_lot"
2021-09-14 13:03:18 +02:00
version = "0.11.2"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2019-05-19 13:56:23 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"instant",
"lock_api",
"parking_lot_core",
2019-05-19 13:56:23 +02:00
]
[[package]]
2019-05-19 13:56:23 +02:00
name = "parking_lot_core"
2021-09-14 13:03:18 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2021-02-26 16:28:04 +01:00
"instant",
"libc",
2021-02-26 16:28:04 +01:00
"redox_syscall",
"smallvec",
2021-09-03 13:13:03 +02:00
"winapi",
]
2019-04-16 16:57:06 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "paste"
version = "1.0.5"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
2019-05-19 13:56:23 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "percent-encoding"
version = "2.1.0"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2021-09-14 13:03:18 +02:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pin-project"
2021-09-14 13:03:18 +02:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"
dependencies = [
2021-09-03 13:13:03 +02:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2021-09-14 13:03:18 +02:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2021-09-14 13:03:18 +02:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-04-16 16:57:06 +02:00
[[package]]
name = "pkg-config"
2021-02-26 16:28:04 +01:00
version = "0.3.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2019-04-16 16:57:06 +02:00
[[package]]
name = "ppv-lite86"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
2021-02-26 16:28:04 +01:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
2021-02-26 16:28:04 +01:00
"version_check",
]
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro2"
2021-09-14 13:03:18 +02:00
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
dependencies = [
"unicode-xid",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "quote"
2021-02-26 16:28:04 +01:00
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
dependencies = [
"proc-macro2",
]
[[package]]
name = "radium"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
[[package]]
name = "rand"
2021-09-14 13:03:18 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
2021-09-03 13:13:03 +02:00
"rand_chacha",
"rand_core",
"rand_hc",
]
[[package]]
name = "rand_chacha"
2021-09-14 13:03:18 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2021-09-03 13:13:03 +02:00
"rand_core",
]
[[package]]
name = "rand_core"
2021-09-14 13:03:18 +02:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
2021-09-03 13:13:03 +02:00
"getrandom",
]
[[package]]
name = "rand_hc"
2021-09-14 13:03:18 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
2021-09-03 13:13:03 +02:00
"rand_core",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "redox_syscall"
2021-09-14 13:03:18 +02:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
"bitflags",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "regex"
2021-09-14 13:03:18 +02:00
version = "1.5.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2019-04-16 16:57:06 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "regex-automata"
2021-09-14 13:03:18 +02:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "regex-syntax"
2021-09-14 13:03:18 +02:00
version = "0.6.25"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "remove_dir_all"
2021-02-26 16:28:04 +01:00
version = "0.5.3"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "reqwest"
version = "0.11.9"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f242f1488a539a79bac6dbe7c8609ae43b7914b7736210f239a37cccb32525"
dependencies = [
"base64 0.13.0",
2021-09-03 13:13:03 +02:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
"percent-encoding",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"serde 1.0.136",
"serde_json",
"serde_urlencoded",
2021-02-26 16:04:58 +01:00
"tokio",
2021-09-03 13:13:03 +02:00
"tokio-native-tls",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2021-09-03 13:13:03 +02:00
"winreg",
2019-04-16 16:57:06 +02:00
]
2019-04-23 18:19:35 +02:00
[[package]]
name = "ructe"
version = "0.13.4"
2019-04-23 18:19:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6fd2f3b927021cc8586d365c36d16d82d91fdae0a3839819c12c8e86e0f929e"
2019-04-23 18:19:35 +02:00
dependencies = [
"base64 0.13.0",
"bytecount",
"itertools",
"md5",
"nom 6.1.2",
2019-04-23 18:19:35 +02:00
]
[[package]]
name = "rust-ini"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2"
2019-04-16 16:57:06 +02:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-14 13:03:18 +02:00
"semver 0.9.0",
]
[[package]]
name = "rustc_version"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
dependencies = [
"semver 0.11.0",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "rusttype"
version = "0.9.2"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc7c727aded0be18c5b80c1640eae0ac8e396abf6fa8477d96cb37d18ee5ec59"
2019-04-16 16:57:06 +02:00
dependencies = [
"ab_glyph_rasterizer",
"owned_ttf_parser",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "rustversion"
2021-09-14 13:03:18 +02:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
[[package]]
name = "ryu"
2021-02-26 16:28:04 +01:00
version = "1.0.5"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "schannel"
2021-02-26 16:28:04 +01:00
version = "0.1.19"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2019-04-21 20:44:29 +02:00
dependencies = [
"lazy_static",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-21 20:44:29 +02:00
]
2019-05-19 13:56:23 +02:00
[[package]]
name = "scopeguard"
version = "1.1.0"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-05-19 13:56:23 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "security-framework"
2021-09-14 13:03:18 +02:00
version = "2.4.2"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-04-21 20:44:29 +02:00
]
[[package]]
name = "security-framework-sys"
2021-09-14 13:03:18 +02:00
version = "2.4.2"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"
2019-04-21 20:44:29 +02:00
dependencies = [
"core-foundation-sys",
2021-02-26 16:28:04 +01:00
"libc",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-14 13:03:18 +02:00
"semver-parser 0.7.0",
]
[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
"semver-parser 0.10.2",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2019-04-16 16:57:06 +02:00
2021-09-14 13:03:18 +02:00
[[package]]
name = "semver-parser"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
[[package]]
name = "serde"
version = "0.8.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8"
2019-04-16 16:57:06 +02:00
[[package]]
name = "serde"
version = "1.0.136"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
2019-04-16 16:57:06 +02:00
dependencies = [
"serde_derive",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "serde-hjson"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a3a4e0ea8a88553209f6cc6cfe8724ecad22e1acf372793c27d995290fe74f8"
dependencies = [
"lazy_static",
"num-traits 0.1.43",
"regex",
"serde 0.8.23",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "serde_derive"
version = "1.0.136"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
2019-04-16 16:57:06 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "serde_json"
version = "1.0.78"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085"
2019-04-16 16:57:06 +02:00
dependencies = [
"itoa 1.0.1",
"ryu",
"serde 1.0.136",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
dependencies = [
"form_urlencoded",
"itoa 0.4.8",
"ryu",
"serde 1.0.136",
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "sha-1"
2021-09-14 13:03:18 +02:00
version = "0.9.8"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
2020-09-12 14:01:59 +02:00
dependencies = [
"block-buffer",
2021-09-03 13:13:03 +02:00
"cfg-if",
2021-09-14 13:03:18 +02:00
"cpufeatures",
2020-09-12 14:01:59 +02:00
"digest",
"opaque-debug",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2019-05-01 13:38:57 +02:00
[[package]]
name = "sharded-slab"
2021-09-14 13:03:18 +02:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "740223c51853f3145fe7c90360d2d4232f2b62e3449489c207eccde818979982"
dependencies = [
"lazy_static",
]
2019-05-01 13:38:57 +02:00
[[package]]
name = "signal-hook-registry"
2021-09-14 13:03:18 +02:00
version = "1.4.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "slab"
2021-09-14 13:03:18 +02:00
version = "0.4.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
2019-04-16 16:57:06 +02:00
[[package]]
name = "smallvec"
2021-02-26 16:28:04 +01:00
version = "1.6.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2019-04-16 16:57:06 +02:00
[[package]]
name = "socket2"
2021-09-03 13:13:03 +02:00
version = "0.4.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "765f090f0e423d2b55843402a07915add955e7d60657db13707a159727326cad"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "standback"
2021-09-14 13:03:18 +02:00
version = "0.2.17"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2021-02-26 16:28:04 +01:00
dependencies = [
"version_check",
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "static_assertions"
2021-02-26 16:28:04 +01:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2020-09-12 14:01:59 +02:00
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
2021-09-14 13:03:18 +02:00
"rustc_version 0.2.3",
2020-09-12 14:01:59 +02:00
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote",
"serde 1.0.136",
2020-09-12 14:01:59 +02:00
"serde_derive",
"syn",
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote",
"serde 1.0.136",
2020-09-12 14:01:59 +02:00
"serde_derive",
"serde_json",
"sha1",
"syn",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2019-04-16 16:57:06 +02:00
[[package]]
name = "syn"
2021-09-14 13:03:18 +02:00
version = "1.0.76"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84"
2019-04-16 16:57:06 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2019-04-21 20:44:29 +02:00
[[package]]
name = "tempfile"
version = "3.3.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"fastrand",
"libc",
2021-02-26 16:28:04 +01:00
"redox_syscall",
"remove_dir_all",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "thiserror"
2021-09-14 13:03:18 +02:00
version = "1.0.29"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88"
2020-09-12 14:01:59 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-09-14 13:03:18 +02:00
version = "1.0.29"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
2020-09-12 14:01:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "thread_local"
version = "1.1.4"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"once_cell",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "time"
2021-02-26 16:28:04 +01:00
version = "0.1.43"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2019-04-16 16:57:06 +02:00
dependencies = [
"libc",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "time"
2021-09-14 13:03:18 +02:00
version = "0.2.27"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2020-09-12 14:01:59 +02:00
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
2021-02-26 16:28:04 +01:00
"version_check",
2021-09-03 13:13:03 +02:00
"winapi",
2020-09-12 14:01:59 +02:00
]
[[package]]
name = "time"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41effe7cfa8af36f439fac33861b66b049edc6f9a32331e2312660529c1c24ad"
dependencies = [
"itoa 0.4.8",
"libc",
]
2020-09-12 14:01:59 +02:00
[[package]]
name = "time-macros"
2021-02-26 16:28:04 +01:00
version = "0.1.1"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2020-09-12 14:01:59 +02:00
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
2021-09-14 13:03:18 +02:00
version = "0.1.2"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2020-09-12 14:01:59 +02:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
[[package]]
name = "tinyvec"
2021-09-14 13:03:18 +02:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "5241dd6f21443a3606b432718b166d3cedc962fd4b8bea54a8bc7f514ebda986"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-09-12 14:01:59 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "tokio"
version = "1.16.0"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95e99d373042c30406d317cfc5bfad7b5d604bdd31dab72cf8739abebaa64aee"
2019-04-21 20:44:29 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"libc",
"memchr",
2021-02-26 16:04:58 +01:00
"mio",
2021-09-03 13:13:03 +02:00
"once_cell",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-21 20:44:29 +02:00
]
2019-05-19 13:56:23 +02:00
[[package]]
2021-09-03 13:13:03 +02:00
name = "tokio-native-tls"
version = "0.3.0"
2019-05-19 13:56:23 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
2019-05-19 13:56:23 +02:00
dependencies = [
"native-tls",
2021-02-26 16:04:58 +01:00
"tokio",
2019-05-19 13:56:23 +02:00
]
[[package]]
name = "tokio-util"
2021-09-14 13:03:18 +02:00
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
dependencies = [
2021-09-03 13:13:03 +02:00
"bytes",
"futures-core",
"futures-sink",
"log",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
2021-02-26 16:04:58 +01:00
"tokio",
]
[[package]]
name = "toml"
2021-02-26 16:28:04 +01:00
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
"serde 1.0.136",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "tower-service"
2021-02-26 16:28:04 +01:00
version = "0.3.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2019-04-16 16:57:06 +02:00
[[package]]
name = "tracing"
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
2021-02-26 16:04:58 +01:00
"log",
2021-09-03 13:13:03 +02:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-actix-web"
version = "0.5.0-beta.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42294d195afb0ae79ea237040399179a8b5050b454c210fe4566ed383c6f0c17"
dependencies = [
"actix-web",
"pin-project",
"tracing",
"tracing-futures",
"uuid",
]
[[package]]
name = "tracing-attributes"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-bunyan-formatter"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd99ff040622c69c0fc4bd3ea5fe16630ce46400a79bd41339391b2d416ea24c"
dependencies = [
"gethostname",
"log",
"serde 1.0.136",
"serde_json",
"time 0.3.5",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-core"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
dependencies = [
"lazy_static",
]
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
2021-09-03 13:13:03 +02:00
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5312f325fe3588e277415f5a6cca1f4ccad0f248c4cd5a4bd33032d7286abc22"
dependencies = [
"ansi_term",
"lazy_static",
"matchers",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "try-lock"
2021-02-26 16:28:04 +01:00
version = "0.2.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2019-04-16 16:57:06 +02:00
[[package]]
name = "ttf-parser"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e5d7cd7ab3e47dda6e56542f4bbf3824c15234958c6e1bd6aaa347e93499fdc"
2020-09-12 14:01:59 +02:00
[[package]]
name = "typenum"
2021-09-14 13:03:18 +02:00
version = "1.14.0"
2020-09-12 14:01:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2020-09-12 14:01:59 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
2019-04-16 16:57:06 +02:00
name = "unicode-bidi"
2021-09-14 13:03:18 +02:00
version = "0.3.6"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "246f4c42e67e7a4e3c6106ff716a5d067d4132a642840b242e357e468a2a0085"
2019-04-21 20:44:29 +02:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "unicode-normalization"
2021-09-14 13:03:18 +02:00
version = "0.1.19"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-02-26 16:28:04 +01:00
"tinyvec",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "unicode-xid"
2021-09-14 13:03:18 +02:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
2019-04-16 16:57:06 +02:00
name = "url"
2021-09-14 13:03:18 +02:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "uuid"
2021-02-26 16:28:04 +01:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
2021-09-03 13:13:03 +02:00
"getrandom",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "vcpkg"
2021-09-14 13:03:18 +02:00
version = "0.2.15"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-23 18:19:35 +02:00
name = "vergen"
version = "6.0.1"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "467c706f13b7177c8a138858cbd99c774613eb8e0ff42cf592d65a82f59370c8"
2019-04-16 16:57:06 +02:00
dependencies = [
"anyhow",
2021-09-03 13:13:03 +02:00
"cfg-if",
"chrono",
"enum-iterator",
"getset",
"git2",
"rustversion",
"thiserror",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "version_check"
2021-09-14 13:03:18 +02:00
version = "0.9.3"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2019-04-16 16:57:06 +02:00
[[package]]
2019-04-21 20:44:29 +02:00
name = "want"
version = "0.3.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
2019-04-21 20:44:29 +02:00
dependencies = [
"log",
"try-lock",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
2020-10-30 13:02:53 +01:00
[[package]]
name = "wasi"
2021-02-26 16:28:04 +01:00
version = "0.10.2+wasi-snapshot-preview1"
2020-10-30 13:02:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-10-30 13:02:53 +01:00
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen"
2021-09-14 13:03:18 +02:00
version = "0.2.77"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "5e68338db6becec24d3c7977b5bf8a48be992c934b5d07177e3931f5dc9b076c"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"wasm-bindgen-macro",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "wasm-bindgen-backend"
2021-09-14 13:03:18 +02:00
version = "0.2.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "f34c405b4f0658583dba0c1c7c9b694f3cac32655db463b56c254a1c75269523"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-futures"
2021-09-14 13:03:18 +02:00
version = "0.4.27"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "a87d738d4abc4cf22f6eb142f5b9a81301331ee3c767f2fef2fda4e325492060"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "wasm-bindgen-macro"
2021-09-14 13:03:18 +02:00
version = "0.2.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "b9d5a6580be83b19dc570a8f9c324251687ab2184e57086f71625feb57ec77c8"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-macro-support"
2021-09-14 13:03:18 +02:00
version = "0.2.77"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "e3775a030dc6f5a0afd8a84981a21cc92a781eb429acef9ecce476d0c9113e92"
2019-04-21 20:44:29 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "wasm-bindgen-shared"
2021-09-14 13:03:18 +02:00
version = "0.2.77"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "c279e376c7a8e8752a8f1eaa35b7b0bee6bb9fb0cdacfa97cc3f1f289c87e2b4"
2019-04-16 16:57:06 +02:00
2019-04-21 20:44:29 +02:00
[[package]]
name = "web-sys"
2021-09-14 13:03:18 +02:00
version = "0.3.54"
2019-04-21 20:44:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 13:03:18 +02:00
checksum = "0a84d70d1ec7d2da2d26a5bd78f4bca1b8c3254805363ce743b7a05bc30d195a"
2019-04-21 20:44:29 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
2019-04-21 20:44:29 +02:00
]
2019-04-16 16:57:06 +02:00
[[package]]
name = "winapi"
2021-02-26 16:28:04 +01:00
version = "0.3.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 16:28:04 +01:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-04-16 16:57:06 +02:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-04-16 16:57:06 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-04-16 16:57:06 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2019-04-16 16:57:06 +02:00
[[package]]
name = "winreg"
2021-09-03 13:13:03 +02:00
version = "0.7.0"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"winapi",
2019-04-16 16:57:06 +02:00
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "wyz"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
2021-09-03 13:13:03 +02:00
"linked-hash-map",
2019-04-16 16:57:06 +02:00
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "zstd"
version = "0.7.0+zstd.1.4.9"
2019-04-16 16:57:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "9428752481d8372e15b1bf779ea518a179ad6c771cca2d2c60e4fbff3cc2cd52"
2019-04-16 16:57:06 +02:00
dependencies = [
2021-09-03 13:13:03 +02:00
"zstd-safe",
2019-04-16 16:57:06 +02:00
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "zstd-safe"
version = "3.1.0+zstd.1.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "5aa1926623ad7fe406e090555387daf73db555b948134b4d73eac5eb08fb666d"
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
2021-09-03 13:13:03 +02:00
name = "zstd-sys"
version = "1.5.0+zstd.1.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-03 13:13:03 +02:00
checksum = "4e6c094340240369025fc6b731b054ee2a834328fa584310ac96aa4baebdc465"
dependencies = [
2021-09-03 13:13:03 +02:00
"cc",
"libc",
]