bitwarden_rs/Cargo.lock

3421 lines
84 KiB
Plaintext
Raw Normal View History

2019-02-12 15:01:02 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-02-24 20:25:22 +01:00
version = 3
2020-05-14 00:18:18 +02:00
[[package]]
name = "addr2line"
version = "0.15.2"
2020-05-14 00:18:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7a2e47a1fbe209ee101dd6d61285226744c6c8d3c21c8dc878ba6cb9f467f3a"
2020-05-14 00:18:18 +02:00
dependencies = [
"gimli",
]
2020-06-15 23:04:52 +02:00
[[package]]
2020-07-14 16:08:11 +02:00
name = "adler"
2021-03-04 18:55:12 +01:00
version = "1.0.2"
2020-06-15 23:04:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-06-15 23:04:52 +02:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "aho-corasick"
2021-05-02 17:48:06 +02:00
version = "0.7.18"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"memchr",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "alloc-no-stdlib"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5192ec435945d87bc2f70992b4d818154b5feede43c09fb7592146374eac90a6"
[[package]]
name = "alloc-stdlib"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "async-compression"
2021-05-02 17:48:06 +02:00
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "5443ccbb270374a2b1055fc72da40e1f237809cd6bb0e97e66d264cd138473a6"
dependencies = [
"brotli",
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
]
[[package]]
name = "atty"
2020-01-10 16:22:37 +01:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2020-01-30 22:11:53 +01:00
"hermit-abi",
"libc",
"winapi 0.3.9",
]
2020-01-10 16:22:37 +01:00
[[package]]
name = "autocfg"
2020-08-28 22:11:55 +02:00
version = "1.0.1"
2020-01-10 16:22:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-28 22:11:55 +02:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-01-10 16:22:37 +01:00
[[package]]
name = "backtrace"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7815ea54e4d821e791162e078acbebfd6d8c8939cd559c9335dceb1c8ca7282"
dependencies = [
2020-05-14 00:18:18 +02:00
"addr2line",
2021-05-02 17:48:06 +02:00
"cc",
2020-10-15 23:44:35 +02:00
"cfg-if 1.0.0",
2020-01-30 22:11:53 +01:00
"libc",
2020-06-15 23:04:52 +02:00
"miniz_oxide",
2020-05-14 00:18:18 +02:00
"object",
2020-01-30 22:11:53 +01:00
"rustc-demangle",
]
[[package]]
name = "base-x"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
[[package]]
name = "base64"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
dependencies = [
2020-01-30 22:11:53 +01:00
"byteorder",
"safemem",
]
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
2020-05-03 17:41:53 +02:00
[[package]]
name = "base64"
version = "0.12.3"
2020-05-03 17:41:53 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
2020-05-03 17:41:53 +02:00
2020-10-15 23:44:35 +02:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "binascii"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72"
2018-02-10 01:00:55 +01:00
[[package]]
name = "bitflags"
version = "1.2.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2018-02-10 01:00:55 +01:00
[[package]]
name = "bitvec"
2021-03-04 18:55:12 +01:00
version = "0.19.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
2019-01-13 01:39:29 +01:00
[[package]]
name = "block-buffer"
2019-04-26 22:07:00 +02:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
2020-01-30 22:11:53 +01:00
"block-padding",
"byte-tools 0.3.1",
"byteorder",
2021-03-04 18:55:12 +01:00
"generic-array 0.12.4",
]
2021-02-06 16:49:28 +01:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array 0.14.4",
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
2020-01-30 22:11:53 +01:00
"byte-tools 0.3.1",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "brotli"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f29919120f08613aadcd4383764e00526fc9f18b6c0895814faeed0dd78613e"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1052e1c3b8d4d80eb84a8b94f0a1498797b5fb96314c001156a1c761940ef4ec"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "buf_redux"
2019-08-18 19:31:54 +02:00
version = "0.8.4"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"memchr",
"safemem",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "bumpalo"
version = "3.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2018-02-10 01:00:55 +01:00
[[package]]
name = "byte-tools"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "0919189ba800c7ffe8778278116b7e0de3905ab81c72abb69c85cbfef7991279"
2018-02-10 01:00:55 +01:00
[[package]]
name = "byte-tools"
2019-02-01 23:39:14 +01:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2018-02-10 01:00:55 +01:00
[[package]]
name = "byteorder"
version = "1.4.3"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2018-02-10 01:00:55 +01:00
[[package]]
name = "bytes"
2019-03-07 20:22:08 +01:00
version = "0.4.12"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"byteorder",
"iovec",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "bytes"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
2018-02-10 01:00:55 +01:00
[[package]]
name = "cc"
version = "1.0.68"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
2018-02-10 01:00:55 +01:00
[[package]]
name = "cfg-if"
version = "0.1.10"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2018-02-10 01:00:55 +01:00
2020-10-15 23:44:35 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chashmap"
2019-02-27 17:21:04 +01:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ff41a3c2c1e39921b9003de14bf0439c7b63a9039637c291e1a64925d8ddfa45"
dependencies = [
2020-01-30 22:11:53 +01:00
"owning_ref",
"parking_lot 0.4.8",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "chrono"
version = "0.4.19"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2018-02-10 01:00:55 +01:00
dependencies = [
"libc",
2020-01-30 22:11:53 +01:00
"num-integer",
"num-traits",
"serde",
2020-08-28 22:11:55 +02:00
"time 0.1.44",
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "chrono-tz"
2020-08-31 16:40:21 +02:00
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-31 16:40:21 +02:00
checksum = "2554a3155fec064362507487171dcc4edc3df60cb10f3a1fb10ed8094822b120"
dependencies = [
"chrono",
"parse-zoneinfo",
]
[[package]]
name = "const_fn"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
2018-02-10 01:00:55 +01:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2018-02-10 01:00:55 +01:00
[[package]]
name = "cookie"
2021-03-04 18:55:12 +01:00
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
dependencies = [
"percent-encoding 2.1.0",
2021-03-22 20:00:57 +01:00
"time 0.2.26",
"version_check 0.9.3",
]
[[package]]
name = "cookie"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffdf8865bac3d9a3bde5bde9088ca431b11f5d37c7a578b8086af77248b76627"
dependencies = [
"percent-encoding 2.1.0",
"time 0.2.26",
"version_check 0.9.3",
]
[[package]]
name = "cookie_store"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3"
dependencies = [
"cookie 0.14.4",
"idna 0.2.3",
"log 0.4.14",
"publicsuffix 1.5.6",
"serde",
"serde_json",
"time 0.2.26",
"url 2.2.2",
]
[[package]]
name = "cookie_store"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55b4ac5559dd39f7bdc516f769cb412b151585d8886d216871a8435ed7f862cd"
dependencies = [
"cookie 0.15.0",
"idna 0.2.3",
"log 0.4.14",
"publicsuffix 2.1.0",
"serde",
"serde_json",
"time 0.2.26",
"url 2.2.2",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "core-foundation"
2020-11-07 23:01:04 +01:00
version = "0.9.1"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
2018-09-19 21:43:03 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"core-foundation-sys",
"libc",
2018-09-19 21:43:03 +02:00
]
[[package]]
name = "core-foundation-sys"
2020-11-07 23:01:04 +01:00
version = "0.8.2"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
2018-09-19 21:43:03 +02:00
2021-02-06 16:49:28 +01:00
[[package]]
name = "cpufeatures"
version = "0.1.4"
2021-02-06 16:49:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8"
dependencies = [
"libc",
]
2021-02-06 16:49:28 +01:00
[[package]]
name = "crc32fast"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "cron"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e009ed0b762cf7a967a34dfdc67d5967d3f828f12901d37081432c3dd1668f8f"
dependencies = [
"chrono",
"nom 4.1.1",
"once_cell",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "crypto-mac"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "dba62c86c26dcba13c278afcaac0c7452486fe604a2668a0dfa4e0edc98d8a9e"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"constant_time_eq",
"generic-array 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "crypto-mac"
2021-02-06 16:49:28 +01:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-06 16:49:28 +01:00
checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
dependencies = [
2021-02-06 16:49:28 +01:00
"generic-array 0.14.4",
"subtle",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "data-encoding"
version = "2.3.2"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ee2393c4a91429dffb4bedf19f4d6abf27d8a732c8ce4980305d782e5426d57"
2018-02-10 01:00:55 +01:00
[[package]]
name = "data-url"
version = "0.1.0"
source = "git+https://github.com/servo/rust-url?rev=eb7330b5296c0d43816d1346211b74182bb4ae37#eb7330b5296c0d43816d1346211b74182bb4ae37"
dependencies = [
2020-01-30 22:11:53 +01:00
"matches",
]
[[package]]
name = "devise"
version = "0.3.0"
source = "git+https://github.com/SergioBenitez/Devise.git?rev=e58b3ac9a#e58b3ac9afc3b6ff10a8aaf02a3e768a8f530089"
dependencies = [
2020-01-30 22:11:53 +01:00
"devise_codegen",
"devise_core",
]
[[package]]
name = "devise_codegen"
version = "0.3.0"
source = "git+https://github.com/SergioBenitez/Devise.git?rev=e58b3ac9a#e58b3ac9afc3b6ff10a8aaf02a3e768a8f530089"
dependencies = [
2020-01-30 22:11:53 +01:00
"devise_core",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
]
[[package]]
name = "devise_core"
version = "0.3.0"
source = "git+https://github.com/SergioBenitez/Devise.git?rev=e58b3ac9a#e58b3ac9afc3b6ff10a8aaf02a3e768a8f530089"
dependencies = [
2020-01-30 22:11:53 +01:00
"bitflags",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "diesel"
version = "1.4.7"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bba51ca66f57261fd17cadf8b73e4775cc307d0521d855de3f5de91a8f074e0e"
2018-02-10 01:00:55 +01:00
dependencies = [
"bitflags",
2020-01-30 22:11:53 +01:00
"byteorder",
"chrono",
"diesel_derives",
"libsqlite3-sys",
"mysqlclient-sys",
"pq-sys",
2020-01-30 22:11:53 +01:00
"r2d2",
2020-06-15 23:04:52 +02:00
"url 1.7.2",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "diesel_derives"
version = "1.4.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
2018-02-10 01:00:55 +01:00
dependencies = [
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "diesel_migrations"
version = "1.4.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"migrations_internals",
"migrations_macros",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "digest"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "7a68d759d7a66a4f63d5bd2a2b14ad7e8cf93fe8c9be227031cd4e72ab0e9ee8"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"generic-array 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
2021-03-04 18:55:12 +01:00
"generic-array 0.12.4",
]
2021-02-06 16:49:28 +01:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array 0.14.4",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "digest-buffer"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "4eb92364e9f6d3da159257250532d448b218406d2acb149f724e8f48e9f5cb9a"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"byte-tools 0.1.3",
"generic-array 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2018-02-10 01:00:55 +01:00
[[package]]
name = "dotenv"
version = "0.15.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2018-02-10 01:00:55 +01:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encoding_rs"
2021-02-06 16:49:28 +01:00
version = "0.8.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-06 16:49:28 +01:00
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
dependencies = [
2020-11-07 23:01:04 +01:00
"cfg-if 1.0.0",
]
[[package]]
name = "error-chain"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3"
dependencies = [
2020-01-30 22:11:53 +01:00
"backtrace",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2018-02-10 01:00:55 +01:00
[[package]]
name = "fastrand"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77b705829d1e87f762c2df6da140b26af5839e1033aa84aa5f56bb688e4e1bdb"
dependencies = [
"instant",
]
[[package]]
name = "fern"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c9a4820f0ccc8a7afd67c39a0f1a0f4b07ca1725164271a64939d7aeb9af065"
dependencies = [
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"syslog",
]
[[package]]
name = "flate2"
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
dependencies = [
"cfg-if 1.0.0",
"crc32fast",
"libc",
"miniz_oxide",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "fnv"
version = "1.0.7"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-09-19 21:43:03 +02:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"foreign-types-shared",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2018-02-10 01:00:55 +01:00
2020-11-07 23:01:04 +01:00
[[package]]
name = "form_urlencoded"
2021-02-24 20:25:22 +01:00
version = "1.0.1"
2020-11-07 23:01:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-11-07 23:01:04 +01:00
dependencies = [
"matches",
"percent-encoding 2.1.0",
]
2019-02-01 23:39:14 +01:00
[[package]]
name = "fuchsia-cprng"
2019-02-12 15:01:02 +01:00
version = "0.1.1"
2019-02-01 23:39:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2019-02-01 23:39:14 +01:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"bitflags",
"fuchsia-zircon-sys",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2018-02-10 01:00:55 +01:00
[[package]]
name = "funty"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
2019-01-27 15:39:19 +01:00
[[package]]
name = "futf"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
2019-01-27 15:39:19 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"mac",
"new_debug_unreachable",
2019-01-27 15:39:19 +01:00
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "futures"
version = "0.3.15"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "futures-channel"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
2018-02-10 01:00:55 +01:00
[[package]]
name = "futures-executor"
version = "0.3.15"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79"
2018-02-10 01:00:55 +01:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "futures-io"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
[[package]]
name = "futures-macro"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
dependencies = [
"autocfg",
"proc-macro-hack",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
]
[[package]]
name = "futures-sink"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282"
[[package]]
name = "futures-task"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
[[package]]
name = "futures-util"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
dependencies = [
"autocfg",
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-02-06 16:49:28 +01:00
"pin-project-lite",
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "generic-array"
version = "0.7.3"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "dbe043cf9b85297937897087de81f590361686e1ac2d4d471b45435de5dfb6a6"
dependencies = [
2020-01-30 22:11:53 +01:00
"nodrop",
"typenum",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "generic-array"
2021-03-04 18:55:12 +01:00
version = "0.12.4"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"typenum",
2018-02-10 01:00:55 +01:00
]
2021-02-06 16:49:28 +01:00
[[package]]
name = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
2021-02-06 16:49:28 +01:00
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if 1.0.0",
2020-01-30 22:11:53 +01:00
"libc",
2020-08-28 22:11:55 +02:00
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
]
2020-05-14 00:18:18 +02:00
[[package]]
name = "gimli"
version = "0.24.0"
2020-05-14 00:18:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189"
2020-05-14 00:18:18 +02:00
2018-09-19 21:43:03 +02:00
[[package]]
name = "glob"
version = "0.3.0"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2018-09-19 21:43:03 +02:00
[[package]]
name = "h2"
2021-05-02 17:48:06 +02:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726"
dependencies = [
"bytes 1.0.1",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-02-06 16:49:28 +01:00
"tokio",
"tokio-util",
2020-07-14 16:08:11 +02:00
"tracing",
]
2019-01-13 01:39:29 +01:00
[[package]]
name = "handlebars"
version = "3.5.5"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4498fc115fa7d34de968184e473529abb40eeb6be8bc5f7faba3d08c316cb3e3"
2019-01-13 01:39:29 +01:00
dependencies = [
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"pest",
"pest_derive",
"quick-error 2.0.1",
2020-01-30 22:11:53 +01:00
"serde",
"serde_json",
"walkdir",
2019-01-13 01:39:29 +01:00
]
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2019-11-02 17:39:27 +01:00
[[package]]
name = "hermit-abi"
version = "0.1.18"
2019-11-02 17:39:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
2019-11-02 17:39:27 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"libc",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "hmac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "bdb5aa9647ba4711e9d6968dc1c810cd23989ed435443ca962e1bf6d8b8b83ff"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"crypto-mac 0.3.0",
"digest 0.5.2",
"generic-array 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "hmac"
2021-02-06 16:49:28 +01:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-06 16:49:28 +01:00
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
dependencies = [
2021-02-06 16:49:28 +01:00
"crypto-mac 0.10.0",
"digest 0.9.0",
]
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi 0.3.9",
]
2019-01-27 15:39:19 +01:00
[[package]]
name = "html5ever"
version = "0.25.1"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aafcf38a1a36118242d29b92e1b08ef84e67e4a5ed06e0a80be20e6a32bfed6b"
2019-01-27 15:39:19 +01:00
dependencies = [
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"mac",
"markup5ever",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "http"
2021-04-15 18:38:00 +02:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-15 18:38:00 +02:00
checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
dependencies = [
"bytes 1.0.1",
2020-01-30 22:11:53 +01:00
"fnv",
"itoa",
2018-09-19 21:43:03 +02:00
]
[[package]]
name = "http-body"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
dependencies = [
"bytes 1.0.1",
"http",
2021-03-22 20:00:57 +01:00
"pin-project-lite",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "httparse"
version = "1.4.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
2018-02-10 01:00:55 +01:00
[[package]]
name = "httpdate"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2018-02-10 01:00:55 +01:00
[[package]]
name = "hyper"
2019-04-26 22:07:00 +02:00
version = "0.10.16"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"base64 0.9.3",
"httparse",
"language-tags",
"log 0.3.9",
"mime 0.2.6",
"num_cpus",
2020-08-28 22:11:55 +02:00
"time 0.1.44",
2020-01-30 22:11:53 +01:00
"traitobject",
"typeable",
"unicase 1.4.2",
"url 1.7.2",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "hyper"
version = "0.14.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07d6baa1b441335f3ce5098ac421fb6547c46dda735ca1bc6d0153c838f9dd83"
dependencies = [
"bytes 1.0.1",
"futures-channel",
"futures-core",
"futures-util",
2021-02-06 16:49:28 +01:00
"h2",
"http",
2021-02-06 16:49:28 +01:00
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
2021-02-06 16:49:28 +01:00
"tokio",
"tower-service",
2020-07-14 16:08:11 +02:00
"tracing",
"want",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "hyper-sync-rustls"
version = "0.3.0-rc.17"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cb014c4ea00486e2b62860b5e15229d37516d4924177218beafbf46583de3ab"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"hyper 0.10.16",
"rustls",
"webpki",
"webpki-roots",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes 1.0.1",
"hyper 0.14.9",
"native-tls",
2021-02-06 16:49:28 +01:00
"tokio",
"tokio-native-tls",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "idna"
version = "0.1.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"matches",
"unicode-bidi",
"unicode-normalization",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "idna"
2021-05-02 17:48:06 +02:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
2020-01-30 22:11:53 +01:00
"matches",
"unicode-bidi",
"unicode-normalization",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "indexmap"
2021-03-04 18:55:12 +01:00
version = "1.6.2"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3"
dependencies = [
"autocfg",
"hashbrown 0.9.1",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "instant"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
dependencies = [
2020-11-07 23:01:04 +01:00
"cfg-if 1.0.0",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "iovec"
version = "0.1.4"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"libc",
2018-02-10 01:00:55 +01:00
]
2020-08-12 18:46:28 +02:00
[[package]]
name = "ipnet"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
2018-03-21 00:08:46 +01:00
[[package]]
name = "itoa"
version = "0.4.7"
2018-03-21 00:08:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2018-03-21 00:08:46 +01:00
[[package]]
name = "job_scheduler"
version = "1.2.1"
source = "git+https://github.com/jjlin/job_scheduler?rev=ee023418dbba2bfe1e30a5fd7d937f9e33739806#ee023418dbba2bfe1e30a5fd7d937f9e33739806"
dependencies = [
"chrono",
"cron",
"uuid",
]
[[package]]
name = "js-sys"
version = "0.3.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062"
dependencies = [
"wasm-bindgen",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "jsonwebtoken"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afabcc15e437a6484fc4f12d0fd63068fe457bf93f1c148d3d9649c60b103f32"
2018-02-10 01:00:55 +01:00
dependencies = [
"base64 0.12.3",
"pem",
2020-01-30 22:11:53 +01:00
"ring",
"serde",
"serde_json",
"simple_asn1",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"winapi 0.2.8",
"winapi-build",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "language-tags"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
2018-02-10 01:00:55 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-02-10 01:00:55 +01:00
[[package]]
name = "lazycell"
2020-08-12 18:46:28 +02:00
version = "1.3.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-12 18:46:28 +02:00
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2018-02-10 01:00:55 +01:00
[[package]]
2018-09-13 16:04:00 +02:00
name = "lettre"
version = "0.10.0-rc.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8697ded52353bdd6fec234b3135972433397e86d0493d9fc38fbf407b7c106a"
2018-09-13 16:04:00 +02:00
dependencies = [
2020-11-07 23:01:04 +01:00
"base64 0.13.0",
"fastrand",
"hostname",
"httpdate",
2021-05-02 17:48:06 +02:00
"idna 0.2.3",
2020-01-30 22:11:53 +01:00
"mime 0.3.16",
"native-tls",
"nom 6.1.2",
2020-05-03 17:41:53 +02:00
"once_cell",
"quoted_printable",
"regex",
2020-01-30 22:11:53 +01:00
"serde",
"tracing",
2018-09-13 16:04:00 +02:00
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "libc"
version = "0.2.96"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5600b4e6efc5421841a2138a6b082e07fe12f9aaa12783d50e5d13325b26b4fc"
2018-02-10 01:00:55 +01:00
[[package]]
name = "libsqlite3-sys"
version = "0.22.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
dependencies = [
2020-01-30 22:11:53 +01:00
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "lock_api"
2021-05-02 17:48:06 +02:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
dependencies = [
2020-01-30 22:11:53 +01:00
"scopeguard",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "log"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
2018-02-10 01:00:55 +01:00
dependencies = [
"log 0.4.14",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "log"
version = "0.4.14"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2018-02-10 01:00:55 +01:00
dependencies = [
"cfg-if 1.0.0",
2018-02-10 01:00:55 +01:00
]
2019-01-27 15:39:19 +01:00
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2019-01-27 15:39:19 +01:00
2019-01-13 01:39:29 +01:00
[[package]]
name = "maplit"
version = "1.0.2"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2019-01-13 01:39:29 +01:00
2019-01-27 15:39:19 +01:00
[[package]]
name = "markup5ever"
2021-05-02 17:48:06 +02:00
version = "0.10.1"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
2019-01-27 15:39:19 +01:00
dependencies = [
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "markup5ever_rcdom"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f015da43bcd8d4f144559a3423f4591d69b8ce0652c905374da7205df336ae2b"
dependencies = [
"html5ever",
"markup5ever",
"tendril",
"xml5ever",
]
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2018-02-10 01:00:55 +01:00
[[package]]
name = "memchr"
2021-05-02 17:48:06 +02:00
version = "2.4.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
2018-02-10 01:00:55 +01:00
[[package]]
name = "migrations_internals"
version = "1.4.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"diesel",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "migrations_macros"
version = "1.4.2"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"migrations_internals",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "mime"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"log 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "mime"
2020-01-10 16:22:37 +01:00
version = "0.3.16"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-02-10 01:00:55 +01:00
[[package]]
name = "mime_guess"
2020-06-15 23:04:52 +02:00
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 23:04:52 +02:00
checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
dependencies = [
2020-06-15 23:04:52 +02:00
"mime 0.3.16",
"unicase 2.6.0",
]
[[package]]
2020-06-15 23:04:52 +02:00
name = "miniz_oxide"
2021-03-04 18:55:12 +01:00
version = "0.4.4"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-07-14 16:08:11 +02:00
"adler",
"autocfg",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "mio"
version = "0.6.23"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-10-15 23:44:35 +02:00
"cfg-if 0.1.10",
2020-01-30 22:11:53 +01:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log 0.4.14",
"miow 0.2.2",
2020-01-30 22:11:53 +01:00
"net2",
"slab",
"winapi 0.2.8",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "mio"
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956"
dependencies = [
"libc",
"log 0.4.14",
"miow 0.3.7",
"ntapi",
"winapi 0.3.9",
]
[[package]]
name = "mio-extras"
2019-12-15 15:43:56 +01:00
version = "2.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
dependencies = [
2020-01-30 22:11:53 +01:00
"lazycell",
"log 0.4.14",
"mio 0.6.23",
2020-01-30 22:11:53 +01:00
"slab",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "miow"
version = "0.2.2"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi 0.3.9",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "multipart"
version = "0.17.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050aeedc89243f5347c3e237e3e13dc76fbe4ae3742a57b94dc14f69acf76d4"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"buf_redux",
"httparse",
"log 0.4.14",
2020-06-15 23:04:52 +02:00
"mime 0.3.16",
"mime_guess",
"quick-error 1.2.3",
"rand 0.7.3",
2020-01-30 22:11:53 +01:00
"safemem",
"tempfile",
"twoway",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "mysqlclient-sys"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e9637d93448044078aaafea7419aed69d301b4a12bcc4aa0ae856eb169bef85"
dependencies = [
"pkg-config",
"vcpkg",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "native-tls"
version = "0.2.7"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4"
2018-09-19 21:43:03 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"lazy_static",
"libc",
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2018-09-19 21:43:03 +02:00
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "net2"
version = "0.2.37"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-10-15 23:44:35 +02:00
"cfg-if 0.1.10",
2020-01-30 22:11:53 +01:00
"libc",
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
2019-01-27 15:39:19 +01:00
[[package]]
name = "new_debug_unreachable"
2019-12-31 02:00:05 +01:00
version = "1.0.4"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2019-01-27 15:39:19 +01:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "nodrop"
version = "0.1.14"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
2018-02-10 01:00:55 +01:00
[[package]]
name = "nom"
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c349f68f25f596b9f44cf0e7c69752a5c633b0550c3ff849518bfba0233774a"
dependencies = [
"memchr",
]
2018-09-13 16:04:00 +02:00
[[package]]
name = "nom"
2021-02-24 20:25:22 +01:00
version = "6.1.2"
2018-09-13 16:04:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
2018-09-13 16:04:00 +02:00
dependencies = [
"bitvec",
2021-02-24 20:25:22 +01:00
"funty",
2020-01-30 22:11:53 +01:00
"memchr",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
]
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "num-bigint"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-derive"
2020-11-07 23:01:04 +01:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
dependencies = [
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "num-integer"
2020-11-07 23:01:04 +01:00
version = "0.1.44"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2018-02-10 01:00:55 +01:00
dependencies = [
"autocfg",
2020-01-30 22:11:53 +01:00
"num-traits",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "num-traits"
2020-11-07 23:01:04 +01:00
version = "0.2.14"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "num_cpus"
version = "1.13.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"hermit-abi",
"libc",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "oath"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ec6405dc6afe8219020d535f9ad888a12b191bbc8ce1c55f7ee663bde5be80ca"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"digest 0.5.2",
"hmac 0.1.1",
"rustc-hex",
"sha-1 0.3.4",
"sha2",
2018-02-10 01:00:55 +01:00
]
2020-05-14 00:18:18 +02:00
[[package]]
name = "object"
version = "0.25.2"
2020-05-14 00:18:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8bc1d42047cf336f0f939c99e97183cf31551bf0f2865a2ec9c8d91fd4ffb5e"
dependencies = [
"memchr",
]
2020-05-14 00:18:18 +02:00
[[package]]
name = "once_cell"
2021-03-04 18:55:12 +01:00
version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2021-02-06 16:49:28 +01:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2018-09-19 21:43:03 +02:00
[[package]]
name = "openssl"
version = "0.10.34"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d7830286ad6a3973c0f1d9b73738f69c76b739301d0229c4b96501695cbe4c8"
2018-09-19 21:43:03 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"bitflags",
"cfg-if 1.0.0",
2020-01-30 22:11:53 +01:00
"foreign-types",
"libc",
2021-03-22 20:00:57 +01:00
"once_cell",
2020-01-30 22:11:53 +01:00
"openssl-sys",
2018-02-10 01:00:55 +01:00
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "openssl-probe"
version = "0.1.4"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
2018-09-19 21:43:03 +02:00
[[package]]
name = "openssl-src"
version = "111.15.0+1.1.1k"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a5f6ae2ac04393b217ea9f700cd04fa9bf3d93fae2872069f3d15d908af70a"
dependencies = [
"cc",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "openssl-sys"
version = "0.9.63"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6b0d6fb7d80f877617dfcb014e605e2b5ab2fb0afdf27935219bb6bd984cb98"
2018-02-10 01:00:55 +01:00
dependencies = [
"autocfg",
2020-01-30 22:11:53 +01:00
"cc",
"libc",
"openssl-src",
2020-01-30 22:11:53 +01:00
"pkg-config",
"vcpkg",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "owning_ref"
2019-02-27 17:21:04 +01:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37"
2019-02-27 17:21:04 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"stable_deref_trait",
2019-02-27 17:21:04 +01:00
]
[[package]]
name = "parity-ws"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e02a625dd75084c2a7024f07c575b61b782f729d18702dabb3cdbf31911dc61"
dependencies = [
"byteorder",
"bytes 0.4.12",
"httparse",
"log 0.4.14",
"mio 0.6.23",
"mio-extras",
"rand 0.7.3",
"sha-1 0.8.2",
"slab",
"url 2.2.2",
]
[[package]]
name = "parking_lot"
2019-02-27 17:21:04 +01:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "149d8f5b97f3c1133e3cfcd8886449959e856b557ff281e292b733d7c69e005e"
dependencies = [
2020-01-30 22:11:53 +01:00
"owning_ref",
"parking_lot_core 0.2.14",
]
2019-11-28 21:59:05 +01:00
[[package]]
name = "parking_lot"
version = "0.11.1"
2019-11-28 21:59:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
2019-11-28 21:59:05 +01:00
dependencies = [
"instant",
2020-01-30 22:11:53 +01:00
"lock_api",
2021-02-24 20:25:22 +01:00
"parking_lot_core 0.8.3",
2019-11-28 21:59:05 +01:00
]
[[package]]
name = "parking_lot_core"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa"
dependencies = [
2020-01-30 22:11:53 +01:00
"libc",
"rand 0.4.6",
"smallvec 0.6.14",
"winapi 0.3.9",
]
2019-11-28 21:59:05 +01:00
[[package]]
name = "parking_lot_core"
2021-02-24 20:25:22 +01:00
version = "0.8.3"
2019-11-28 21:59:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
2019-11-28 21:59:05 +01:00
dependencies = [
"cfg-if 1.0.0",
"instant",
2020-01-30 22:11:53 +01:00
"libc",
2021-02-24 20:25:22 +01:00
"redox_syscall",
"smallvec 1.6.1",
"winapi 0.3.9",
2019-11-28 21:59:05 +01:00
]
[[package]]
name = "parse-zoneinfo"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41"
dependencies = [
"regex",
]
[[package]]
name = "paste"
2021-03-22 20:00:57 +01:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-22 20:00:57 +01:00
checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58"
2018-02-10 01:00:55 +01:00
[[package]]
name = "pear"
2020-06-15 23:04:52 +02:00
version = "0.1.4"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 23:04:52 +02:00
checksum = "5320f212db967792b67cfe12bd469d08afd6318a249bd917d5c19bc92200ab8a"
dependencies = [
2020-01-30 22:11:53 +01:00
"pear_codegen",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "pear_codegen"
2020-06-15 23:04:52 +02:00
version = "0.1.4"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 23:04:52 +02:00
checksum = "bfc1c836fdc3d1ef87c348b237b5b5c4dff922156fb2d968f57734f9669768ca"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
2020-06-15 23:04:52 +02:00
"yansi",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "pem"
2021-02-24 20:25:22 +01:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb"
dependencies = [
"base64 0.13.0",
2020-06-15 23:04:52 +02:00
"once_cell",
"regex",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "percent-encoding"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
2018-02-10 01:00:55 +01:00
[[package]]
name = "percent-encoding"
2019-08-18 19:31:54 +02:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-01-13 01:39:29 +01:00
[[package]]
name = "pest"
2020-03-09 22:00:26 +01:00
version = "2.1.3"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-03-09 22:00:26 +01:00
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
2019-01-13 01:39:29 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"ucd-trie",
2019-01-13 01:39:29 +01:00
]
[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
2019-01-13 01:39:29 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"pest",
"pest_generator",
2019-01-13 01:39:29 +01:00
]
[[package]]
name = "pest_generator"
version = "2.1.3"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
2019-01-13 01:39:29 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"pest",
"pest_meta",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
2019-01-13 01:39:29 +01:00
]
[[package]]
name = "pest_meta"
2020-03-09 22:00:26 +01:00
version = "2.1.3"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-03-09 22:00:26 +01:00
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
2019-01-13 01:39:29 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"maplit",
"pest",
"sha-1 0.8.2",
2019-01-13 01:39:29 +01:00
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "phf"
version = "0.8.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"phf_shared",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "phf_codegen"
version = "0.8.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"phf_generator",
"phf_shared",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "phf_generator"
version = "0.8.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"phf_shared",
"rand 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "phf_shared"
version = "0.8.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"siphasher",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "pico-args"
version = "0.4.2"
2020-11-07 23:01:04 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db8bcd96cb740d03149cbad5518db9fd87126a10ab519c011893b1754134c468"
[[package]]
name = "pin-project-lite"
2021-03-04 18:55:12 +01:00
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2018-02-10 01:00:55 +01:00
[[package]]
name = "pkg-config"
2020-10-15 23:44:35 +02:00
version = "0.3.19"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-15 23:44:35 +02:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2018-02-10 01:00:55 +01:00
[[package]]
name = "ppv-lite86"
2020-11-07 23:01:04 +01:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
[[package]]
name = "pq-sys"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ac25eee5a0582f45a67e837e350d784e7003bd29a5f460796772061ca49ffda"
dependencies = [
"vcpkg",
]
2019-01-27 15:39:19 +01:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2019-01-27 15:39:19 +01:00
[[package]]
name = "proc-macro-hack"
2020-11-07 23:01:04 +01:00
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro-nested"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
[[package]]
name = "proc-macro2"
version = "0.4.30"
2018-05-21 14:20:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
2018-05-21 14:20:34 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"unicode-xid 0.1.0",
2018-05-21 14:20:34 +02:00
]
2019-08-18 19:31:54 +02:00
[[package]]
name = "proc-macro2"
version = "1.0.27"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
2019-08-18 19:31:54 +02:00
dependencies = [
2021-05-02 17:48:06 +02:00
"unicode-xid 0.2.2",
2019-08-18 19:31:54 +02:00
]
[[package]]
name = "psl-types"
version = "2.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66b398073e7cdd6f05934389a8f5961e3aabfa66675b6f440df4e2c793d51a4f"
[[package]]
name = "publicsuffix"
version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
dependencies = [
"idna 0.2.3",
"url 2.2.2",
]
[[package]]
name = "publicsuffix"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3ac055aef7cc7a1caefbc65144be879e862467dcd9b8a8d57b64a13e7dce15d"
dependencies = [
"byteorder",
"hashbrown 0.11.2",
"idna 0.2.3",
"psl-types",
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quick-error"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2018-03-21 00:08:46 +01:00
[[package]]
name = "quote"
version = "0.6.13"
2018-05-21 14:20:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
2018-05-21 14:20:34 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"proc-macro2 0.4.30",
2018-05-21 14:20:34 +02:00
]
2019-08-18 19:31:54 +02:00
[[package]]
name = "quote"
2021-02-24 20:25:22 +01:00
version = "1.0.9"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2019-08-18 19:31:54 +02:00
dependencies = [
"proc-macro2 1.0.27",
2019-08-18 19:31:54 +02:00
]
[[package]]
name = "quoted_printable"
2021-04-15 18:38:00 +02:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-15 18:38:00 +02:00
checksum = "1238256b09923649ec89b08104c4dfe9f6cb2fea734a5db5384e44916d59e9c5"
2018-02-10 01:00:55 +01:00
[[package]]
name = "r2d2"
version = "0.8.9"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545c5bc2b880973c9c10e4067418407a0ccaa3091781d1671d46eb35107cb26f"
2018-02-10 01:00:55 +01:00
dependencies = [
"log 0.4.14",
"parking_lot 0.11.1",
2020-01-30 22:11:53 +01:00
"scheduled-thread-pool",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "radium"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
2018-02-10 01:00:55 +01:00
[[package]]
name = "rand"
2019-02-01 23:39:14 +01:00
version = "0.4.6"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
2020-01-30 22:11:53 +01:00
"libc",
"rand_chacha 0.2.2",
2020-01-30 22:11:53 +01:00
"rand_core 0.5.1",
"rand_hc 0.2.0",
"rand_pcg",
]
[[package]]
name = "rand"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
dependencies = [
"libc",
"rand_chacha 0.3.0",
2021-02-24 20:25:22 +01:00
"rand_core 0.6.2",
"rand_hc 0.3.0",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2020-01-30 22:11:53 +01:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
dependencies = [
"ppv-lite86",
2021-02-24 20:25:22 +01:00
"rand_core 0.6.2",
]
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
2020-01-30 22:11:53 +01:00
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
2019-08-18 19:31:54 +02:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2021-02-24 20:25:22 +01:00
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
dependencies = [
"getrandom 0.2.3",
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2020-01-30 22:11:53 +01:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_hc"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
dependencies = [
2021-02-24 20:25:22 +01:00
"rand_core 0.6.2",
]
[[package]]
name = "rand_pcg"
version = "0.2.1"
2019-01-08 20:28:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2019-01-08 20:28:17 +01:00
dependencies = [
"rand_core 0.5.1",
2019-01-08 20:28:17 +01:00
]
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
dependencies = [
2020-01-30 22:11:53 +01:00
"rand_core 0.3.1",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "redox_syscall"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
dependencies = [
"bitflags",
]
[[package]]
name = "regex"
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
dependencies = [
2020-01-30 22:11:53 +01:00
"aho-corasick",
"memchr",
"regex-syntax",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "regex-syntax"
2021-05-02 17:48:06 +02:00
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2018-02-10 01:00:55 +01:00
[[package]]
name = "remove_dir_all"
2020-06-15 23:04:52 +02:00
version = "0.5.3"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 23:04:52 +02:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2018-02-10 01:00:55 +01:00
dependencies = [
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "reqwest"
2021-04-15 18:38:00 +02:00
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-15 18:38:00 +02:00
checksum = "2296f2fac53979e8ccbc4a1136b25dcefd37be9ed7e4a1f6b05a6029c84ff124"
dependencies = [
"async-compression",
"base64 0.13.0",
"bytes 1.0.1",
"cookie 0.14.4",
"cookie_store 0.12.0",
"encoding_rs",
"futures-core",
"futures-util",
"http",
2021-02-06 16:49:28 +01:00
"http-body",
"hyper 0.14.9",
2021-02-06 16:49:28 +01:00
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log 0.4.14",
"mime 0.3.16",
"native-tls",
"percent-encoding 2.1.0",
2021-02-06 16:49:28 +01:00
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"time 0.2.26",
2021-02-06 16:49:28 +01:00
"tokio",
"tokio-native-tls",
"tokio-socks",
"tokio-util",
"url 2.2.2",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "ring"
2021-02-06 16:49:28 +01:00
version = "0.16.20"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-06 16:49:28 +01:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"cc",
"libc",
"once_cell",
2020-01-30 22:11:53 +01:00
"spin",
"untrusted",
"web-sys",
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "rmp"
2021-02-06 16:49:28 +01:00
version = "0.8.10"
2019-12-31 02:00:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-06 16:49:28 +01:00
checksum = "4f55e5fa1446c4d5dd1f5daeed2a4fe193071771a2636274d0d7a3b082aa7ad6"
dependencies = [
2020-01-30 22:11:53 +01:00
"byteorder",
"num-traits",
]
[[package]]
name = "rmpv"
2021-02-06 16:49:28 +01:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-06 16:49:28 +01:00
checksum = "7c760afe11955e16121e36485b6b828326c3f0eaff1c31758d96dbeb5cf09fd5"
dependencies = [
2020-01-30 22:11:53 +01:00
"num-traits",
"rmp",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "rocket"
2019-05-15 18:10:25 +02:00
version = "0.5.0-dev"
source = "git+https://github.com/SergioBenitez/Rocket?rev=263e39b5b429de1913ce7e3036575a7b4d88b6d7#263e39b5b429de1913ce7e3036575a7b4d88b6d7"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"atty",
"binascii",
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"memchr",
"num_cpus",
"pear",
"rocket_codegen",
"rocket_http",
"state",
2021-03-22 20:00:57 +01:00
"time 0.2.26",
2020-01-30 22:11:53 +01:00
"toml",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
2020-06-15 23:04:52 +02:00
"yansi",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "rocket_codegen"
2019-05-15 18:10:25 +02:00
version = "0.5.0-dev"
source = "git+https://github.com/SergioBenitez/Rocket?rev=263e39b5b429de1913ce7e3036575a7b4d88b6d7#263e39b5b429de1913ce7e3036575a7b4d88b6d7"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"devise",
"glob",
2020-01-30 22:11:53 +01:00
"indexmap",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
2020-01-30 22:11:53 +01:00
"rocket_http",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
2020-06-15 23:04:52 +02:00
"yansi",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "rocket_contrib"
2019-05-15 18:10:25 +02:00
version = "0.5.0-dev"
source = "git+https://github.com/SergioBenitez/Rocket?rev=263e39b5b429de1913ce7e3036575a7b4d88b6d7#263e39b5b429de1913ce7e3036575a7b4d88b6d7"
2018-02-10 01:00:55 +01:00
dependencies = [
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"rocket",
"serde",
"serde_json",
]
[[package]]
name = "rocket_http"
2019-05-15 18:10:25 +02:00
version = "0.5.0-dev"
source = "git+https://github.com/SergioBenitez/Rocket?rev=263e39b5b429de1913ce7e3036575a7b4d88b6d7#263e39b5b429de1913ce7e3036575a7b4d88b6d7"
dependencies = [
"cookie 0.14.4",
2020-01-30 22:11:53 +01:00
"hyper 0.10.16",
"hyper-sync-rustls",
"indexmap",
"pear",
"percent-encoding 1.0.1",
"rustls",
"smallvec 1.6.1",
2020-01-30 22:11:53 +01:00
"state",
2021-03-22 20:00:57 +01:00
"time 0.2.26",
2021-05-02 17:48:06 +02:00
"unicode-xid 0.2.2",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "rustc-demangle"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "410f7acf3cb3a44527c5d9546bad4bf4e6c460915d5f9f2fc524498bfe8f70ce"
2018-02-10 01:00:55 +01:00
[[package]]
name = "rustc-hex"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "0ceb8ce7a5e520de349e1fa172baeba4a9e8d5ef06c47471863530bc4972ee1e"
2018-02-10 01:00:55 +01:00
2018-09-13 16:04:00 +02:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2018-09-13 16:04:00 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"semver",
2018-09-13 16:04:00 +02:00
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "rustls"
version = "0.17.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0d4a31f5d68413404705d6982529b0e11a9aacd4839d1d6222ee3b8cb4015e1"
2018-02-10 01:00:55 +01:00
dependencies = [
"base64 0.11.0",
"log 0.4.14",
2020-01-30 22:11:53 +01:00
"ring",
"sct",
"webpki",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "ryu"
2020-06-15 23:04:52 +02:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 23:04:52 +02:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2018-02-10 01:00:55 +01:00
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
2020-01-30 22:11:53 +01:00
"winapi-util",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "schannel"
2020-05-14 00:18:18 +02:00
version = "0.1.19"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-14 00:18:18 +02:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"lazy_static",
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "scheduled-thread-pool"
version = "0.2.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f74fd1204073fa02d5d5d68bec8021be4c38690b61264b2fdb48083d0e7d7"
2018-02-10 01:00:55 +01:00
dependencies = [
"parking_lot 0.11.1",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "scopeguard"
2020-03-09 22:00:26 +01:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-03-09 22:00:26 +01:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sct"
2021-04-15 18:38:00 +02:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-15 18:38:00 +02:00
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
2020-01-30 22:11:53 +01:00
"ring",
"untrusted",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "security-framework"
version = "2.3.1"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467"
2018-09-19 21:43:03 +02:00
dependencies = [
2020-03-09 22:00:26 +01:00
"bitflags",
2020-01-30 22:11:53 +01:00
"core-foundation",
"core-foundation-sys",
"libc",
2020-01-30 22:11:53 +01:00
"security-framework-sys",
2018-09-19 21:43:03 +02:00
]
[[package]]
name = "security-framework-sys"
version = "2.3.0"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284"
2018-09-19 21:43:03 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"core-foundation-sys",
2020-03-09 22:00:26 +01:00
"libc",
2018-09-19 21:43:03 +02:00
]
2018-09-13 16:04:00 +02:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2018-09-13 16:04:00 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"semver-parser",
2018-09-13 16:04:00 +02:00
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2018-09-13 16:04:00 +02:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "serde"
version = "1.0.126"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
dependencies = [
2020-01-30 22:11:53 +01:00
"serde_derive",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "serde_derive"
version = "1.0.126"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
2018-02-10 01:00:55 +01:00
dependencies = [
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "serde_json"
2021-03-04 18:55:12 +01:00
version = "1.0.64"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-04 18:55:12 +01:00
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"itoa",
"ryu",
"serde",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "serde_urlencoded"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "sha-1"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "8347606816471548cd60f0abd5ef0d513a81f5202dbdab9c09f17a15b5248484"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"byte-tools 0.1.3",
"digest 0.5.2",
"digest-buffer",
"fake-simd",
"generic-array 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "sha-1"
2020-01-10 16:22:37 +01:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
2021-02-06 16:49:28 +01:00
"block-buffer 0.7.3",
2020-01-30 22:11:53 +01:00
"digest 0.8.1",
"fake-simd",
2021-02-06 16:49:28 +01:00
"opaque-debug 0.2.3",
]
[[package]]
name = "sha-1"
version = "0.9.6"
2021-02-06 16:49:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16"
2021-02-06 16:49:28 +01:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if 1.0.0",
"cpufeatures",
2021-02-06 16:49:28 +01:00
"digest 0.9.0",
"opaque-debug 0.3.0",
]
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2018-02-10 01:00:55 +01:00
[[package]]
name = "sha2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "84920f9ac881e94e33ec89e1b3dcd36040523a308a92548e01217ce35d8cf6a8"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"byte-tools 0.1.3",
"digest 0.5.2",
"digest-buffer",
"fake-simd",
"generic-array 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "simple_asn1"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692ca13de57ce0613a363c8c2f1de925adebc81b04c923ac60c5488bb44abe4b"
dependencies = [
"chrono",
"num-bigint",
"num-traits",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "siphasher"
2021-03-22 20:00:57 +01:00
version = "0.3.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-22 20:00:57 +01:00
checksum = "cbce6d4507c7e4a3962091436e56e95290cb71fa302d0d270e32130b75fbff27"
2018-02-10 01:00:55 +01:00
[[package]]
name = "slab"
2021-05-02 17:48:06 +02:00
version = "0.4.3"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
2018-02-10 01:00:55 +01:00
[[package]]
name = "smallvec"
version = "0.6.14"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
dependencies = [
2020-01-30 22:11:53 +01:00
"maybe-uninit",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "smallvec"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
[[package]]
name = "socket2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
dependencies = [
"libc",
"winapi 0.3.9",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "stable_deref_trait"
2020-07-14 16:08:11 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:08:11 +02:00
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
name = "standback"
2021-03-22 20:00:57 +01:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-22 20:00:57 +01:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2020-06-15 23:04:52 +02:00
dependencies = [
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
2020-06-15 23:04:52 +02:00
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "state"
2020-11-07 23:01:04 +01:00
version = "0.4.2"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-07 23:01:04 +01:00
checksum = "3015a7d0a5fd5105c91c3710d42f9ccf0abfb287d62206484dcc67f9569a6483"
2018-02-10 01:00:55 +01:00
2018-09-19 21:43:03 +02:00
[[package]]
name = "stdweb"
version = "0.4.20"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version",
"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 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"serde",
"serde_derive",
"syn 1.0.72",
]
2018-09-19 21:43:03 +02:00
[[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 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn 1.0.72",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2019-01-27 15:39:19 +01:00
[[package]]
name = "string_cache"
version = "0.8.1"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ddb1139b5353f96e429e1a5e19fbaf663bddedaa06d1dbd49f82e352601209a"
2019-01-27 15:39:19 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"lazy_static",
"new_debug_unreachable",
"phf_shared",
"precomputed-hash",
"serde",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "string_cache_codegen"
version = "0.5.1"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f24c8e5e19d22a726626f1a5e16fe15b132dcf21d10177fa5a45ce7962996b97"
2019-01-27 15:39:19 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"phf_generator",
"phf_shared",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "subtle"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
[[package]]
name = "syn"
2019-08-18 19:31:54 +02:00
version = "0.15.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
dependencies = [
2020-01-30 22:11:53 +01:00
"proc-macro2 0.4.30",
"quote 0.6.13",
"unicode-xid 0.1.0",
2018-05-21 14:20:34 +02:00
]
2019-08-18 19:31:54 +02:00
[[package]]
name = "syn"
version = "1.0.72"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
2019-08-18 19:31:54 +02:00
dependencies = [
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
2021-05-02 17:48:06 +02:00
"unicode-xid 0.2.2",
2019-08-18 19:31:54 +02:00
]
[[package]]
name = "syslog"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "a0641142b4081d3d44beffa4eefd7346a228cdf91ed70186db2ca2cef762d327"
dependencies = [
"error-chain",
2020-01-30 22:11:53 +01:00
"libc",
"log 0.4.14",
2020-08-28 22:11:55 +02:00
"time 0.1.44",
]
[[package]]
name = "tap"
2021-02-24 20:25:22 +01:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2018-09-19 21:43:03 +02:00
[[package]]
name = "tempfile"
version = "3.2.0"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
2018-09-19 21:43:03 +02:00
dependencies = [
"cfg-if 1.0.0",
2020-01-30 22:11:53 +01:00
"libc",
"rand 0.8.3",
2021-02-24 20:25:22 +01:00
"redox_syscall",
2020-01-30 22:11:53 +01:00
"remove_dir_all",
"winapi 0.3.9",
2018-09-19 21:43:03 +02:00
]
2019-01-27 15:39:19 +01:00
[[package]]
name = "tendril"
version = "0.4.2"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33"
2019-01-27 15:39:19 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"futf",
"mac",
"utf-8",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "thiserror"
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa6f76457f59514c7eeb4e59d891395fab0b2fd1d40723ae737d64153392e9c6"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a36768c0fbf1bb15eca10defa29526bda730a2376c2ab4393ccfa16fb1a318d"
dependencies = [
"proc-macro2 1.0.27",
"quote 1.0.9",
"syn 1.0.72",
]
2018-11-16 02:34:17 +01:00
[[package]]
name = "threadpool"
2020-05-14 00:18:18 +02:00
version = "1.8.1"
2018-11-16 02:34:17 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-14 00:18:18 +02:00
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
2018-11-16 02:34:17 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"num_cpus",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "time"
2020-08-28 22:11:55 +02:00
version = "0.1.44"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-28 22:11:55 +02:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"libc",
2020-08-28 22:11:55 +02:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "time"
2021-03-22 20:00:57 +01:00
version = "0.2.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-22 20:00:57 +01:00
checksum = "08a8cbfbf47955132d0202d1662f49b2423ae35862aee471f3ba4b133358f372"
dependencies = [
"const_fn",
2020-03-09 22:00:26 +01:00
"libc",
"standback",
"stdweb",
2020-01-30 22:11:53 +01:00
"time-macros",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
"winapi 0.3.9",
]
[[package]]
name = "time-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
2020-01-30 22:11:53 +01:00
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
dependencies = [
2020-01-30 22:11:53 +01:00
"proc-macro-hack",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"standback",
"syn 1.0.72",
]
2020-06-22 17:15:20 +02:00
[[package]]
name = "tinyvec"
2021-04-15 18:38:00 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-15 18:38:00 +02:00
checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
2020-06-22 17:15:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-06-22 17:15:20 +02:00
[[package]]
name = "tokio"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a38d31d7831c6ed7aad00aa4c12d9375fd225a6dd77da1d25b707346319a975"
dependencies = [
"autocfg",
"bytes 1.0.1",
"libc",
"memchr",
"mio 0.7.11",
"num_cpus",
2021-02-06 16:49:28 +01:00
"pin-project-lite",
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
2021-02-06 16:49:28 +01:00
"tokio",
]
[[package]]
name = "tokio-socks"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
dependencies = [
"either",
"futures-util",
"thiserror",
"tokio",
]
[[package]]
name = "tokio-util"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592"
dependencies = [
"bytes 1.0.1",
"futures-core",
"futures-sink",
"log 0.4.14",
2021-02-06 16:49:28 +01:00
"pin-project-lite",
"tokio",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "toml"
2018-12-06 20:15:22 +01:00
version = "0.4.10"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"serde",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "tower-service"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2020-07-14 16:08:11 +02:00
[[package]]
name = "tracing"
2021-05-02 17:48:06 +02:00
version = "0.1.26"
2020-07-14 16:08:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
2020-07-14 16:08:11 +02:00
dependencies = [
"cfg-if 1.0.0",
"log 0.4.14",
2021-02-06 16:49:28 +01:00
"pin-project-lite",
"tracing-attributes",
2020-07-14 16:08:11 +02:00
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c42e6fa53307c8a17e4ccd4dc81cf5ec38db9209f59b222210375b54ee40d1e2"
dependencies = [
"proc-macro2 1.0.27",
"quote 1.0.9",
"syn 1.0.72",
]
2020-07-14 16:08:11 +02:00
[[package]]
name = "tracing-core"
2021-05-02 17:48:06 +02:00
version = "0.1.18"
2020-07-14 16:08:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
2020-07-14 16:08:11 +02:00
dependencies = [
"lazy_static",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "traitobject"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079"
2018-02-10 01:00:55 +01:00
2018-05-21 14:20:34 +02:00
[[package]]
name = "try-lock"
2020-07-14 16:08:11 +02:00
version = "0.2.3"
2018-05-21 14:20:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:08:11 +02:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2018-05-21 14:20:34 +02:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "twoway"
2018-03-21 00:08:46 +01:00
version = "0.1.8"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"memchr",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "typeable"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887"
2018-02-10 01:00:55 +01:00
[[package]]
name = "typenum"
version = "1.13.0"
2018-03-21 00:08:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
2018-03-21 00:08:46 +01:00
[[package]]
name = "u2f"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "e2f285392366190c4d46823458f4543ac0f35174759c78e80c5baa39e1f7aa4f"
dependencies = [
2020-01-30 22:11:53 +01:00
"base64 0.11.0",
"byteorder",
"bytes 0.4.12",
2020-01-30 22:11:53 +01:00
"chrono",
"openssl",
"serde",
"serde_derive",
"serde_json",
2020-08-28 22:11:55 +02:00
"time 0.1.44",
]
2019-01-13 01:39:29 +01:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2019-01-13 01:39:29 +01:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "unicase"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"version_check 0.1.5",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "unicase"
version = "2.6.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2018-02-10 01:00:55 +01:00
dependencies = [
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "unicode-bidi"
2021-04-15 18:38:00 +02:00
version = "0.3.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-15 18:38:00 +02:00
checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"matches",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "unicode-normalization"
version = "0.1.19"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
2020-06-22 17:15:20 +02:00
"tinyvec",
]
2018-02-10 01:00:55 +01:00
2018-03-21 00:08:46 +01:00
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2018-03-21 00:08:46 +01:00
2019-08-18 19:31:54 +02:00
[[package]]
name = "unicode-xid"
2021-05-02 17:48:06 +02:00
version = "0.2.2"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2019-08-18 19:31:54 +02:00
2018-02-10 01:00:55 +01:00
[[package]]
name = "untrusted"
version = "0.7.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2018-02-10 01:00:55 +01:00
[[package]]
name = "url"
version = "1.7.2"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"idna 0.1.5",
"matches",
"percent-encoding 1.0.1",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
2020-11-07 23:01:04 +01:00
"form_urlencoded",
2021-05-02 17:48:06 +02:00
"idna 0.2.3",
2020-01-30 22:11:53 +01:00
"matches",
"percent-encoding 2.1.0",
]
2019-01-27 15:39:19 +01:00
[[package]]
name = "utf-8"
2021-05-02 17:48:06 +02:00
version = "0.7.6"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 17:48:06 +02:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2019-01-27 15:39:19 +01:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom 0.2.3",
]
2021-04-27 23:18:32 +02:00
[[package]]
name = "vaultwarden"
version = "1.0.0"
dependencies = [
"backtrace",
"bytes 1.0.1",
2021-04-27 23:18:32 +02:00
"chashmap",
"chrono",
"chrono-tz",
"cookie 0.15.0",
"cookie_store 0.15.0",
2021-04-27 23:18:32 +02:00
"data-encoding",
"data-url",
"diesel",
"diesel_migrations",
"dotenv",
"fern",
"handlebars",
"html5ever",
2021-05-02 17:48:06 +02:00
"idna 0.2.3",
2021-04-27 23:18:32 +02:00
"job_scheduler",
"jsonwebtoken",
"lettre",
"libsqlite3-sys",
"log 0.4.14",
"markup5ever_rcdom",
"multipart",
"num-derive",
"num-traits",
"oath",
"once_cell",
"openssl",
"parity-ws",
"paste",
"percent-encoding 2.1.0",
"pico-args",
"rand 0.8.3",
"regex",
"reqwest",
"ring",
"rmpv",
"rocket",
"rocket_contrib",
"serde",
"serde_json",
"syslog",
"time 0.2.26",
"tracing",
"u2f",
"url 2.2.2",
2021-04-27 23:18:32 +02:00
"uuid",
"yubico",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "vcpkg"
version = "0.2.13"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "025ce40a007e1907e58d5bc1a594def78e5573bb0b1160bc389634e8f12e4faa"
2018-02-10 01:00:55 +01:00
[[package]]
name = "version_check"
version = "0.1.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
2018-02-10 01:00:55 +01:00
[[package]]
name = "version_check"
2021-03-22 20:00:57 +01:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-22 20:00:57 +01:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2018-05-21 14:20:34 +02:00
[[package]]
name = "walkdir"
2021-03-22 20:00:57 +01:00
version = "2.3.2"
2018-05-21 14:20:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-22 20:00:57 +01:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2018-05-21 14:20:34 +02:00
dependencies = [
2020-01-30 22:11:53 +01:00
"same-file",
"winapi 0.3.9",
2020-01-30 22:11:53 +01:00
"winapi-util",
2018-05-21 14:20:34 +02:00
]
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log 0.4.14",
"try-lock",
]
2019-08-18 19:31:54 +02:00
[[package]]
name = "wasi"
2020-01-10 16:22:37 +01:00
version = "0.9.0+wasi-snapshot-preview1"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2019-08-18 19:31:54 +02:00
2020-08-28 22:11:55 +02:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "wasm-bindgen"
version = "0.2.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd"
dependencies = [
"cfg-if 1.0.0",
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900"
dependencies = [
"bumpalo",
"lazy_static",
"log 0.4.14",
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fba7978c679d53ce2d0ac80c8c175840feb849a161664365d1287b41f2e67f1"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4"
dependencies = [
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97"
dependencies = [
"proc-macro2 1.0.27",
2021-02-24 20:25:22 +01:00
"quote 1.0.9",
"syn 1.0.72",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.74"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f"
[[package]]
name = "web-sys"
version = "0.3.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
2020-01-30 22:11:53 +01:00
"ring",
"untrusted",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "webpki-roots"
version = "0.19.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"webpki",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2018-02-10 01:00:55 +01:00
[[package]]
name = "winapi"
version = "0.3.9"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2018-02-10 01:00:55 +01:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-02-10 01:00:55 +01:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi 0.3.9",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-02-10 01:00:55 +01:00
[[package]]
name = "winreg"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
dependencies = [
"winapi 0.3.9",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2018-02-10 01:00:55 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"winapi 0.2.8",
"winapi-build",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "wyz"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
[[package]]
name = "xml5ever"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b1b52e6e8614d4a58b8e70cf51ec0cc21b256ad8206708bcff8139b5bbd6a59"
dependencies = [
"log 0.4.14",
"mac",
"markup5ever",
"time 0.1.44",
]
[[package]]
name = "yansi"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 22:11:53 +01:00
checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"
2018-11-16 02:34:17 +01:00
[[package]]
name = "yubico"
2021-02-24 20:25:22 +01:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-24 20:25:22 +01:00
checksum = "4d3c3f584739059f479ca4de114cbfe032315752abb3be60afb30db40a802169"
2018-11-16 02:34:17 +01:00
dependencies = [
2021-02-06 16:49:28 +01:00
"base64 0.13.0",
"crypto-mac 0.10.0",
2020-01-30 22:11:53 +01:00
"futures",
2021-02-06 16:49:28 +01:00
"hmac 0.10.1",
"rand 0.8.3",
"reqwest",
"sha-1 0.9.6",
2020-01-30 22:11:53 +01:00
"threadpool",
"url 1.7.2",
]