bitwarden_rs/Cargo.lock

3425 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.16.0"
2020-05-14 00:18:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e61f2b7f93d2c7d2b08263acaa4a363b3e276806c68af6134c44f523bf1aacd"
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.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
[[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"
2021-10-24 21:50:26 +02:00
version = "0.3.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "091bcdf2da9950f96aa522681ce805e6857f6ca8df73833d35736ab2dc78e152"
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.3.2"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
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",
2020-01-30 22:11:53 +01:00
"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 = [
"byte-tools",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "brotli"
version = "3.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71cb90ade945043d3d53597b2fc359bb063db8ade2bcffe7997351d0756e9d50"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
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"
2021-10-24 21:50:26 +02:00
version = "3.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c"
[[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"
2021-09-16 15:21:06 +02:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2018-02-10 01:00:55 +01:00
[[package]]
name = "cc"
2021-10-18 22:14:29 +02:00
version = "1.0.71"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd"
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"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64c01c1c607d25c71bbaa67c113d6c6b36c434744b4fd66691d711b5b1bc0c8b"
dependencies = [
"chrono",
"chrono-tz-build",
"phf 0.10.0",
]
[[package]]
name = "chrono-tz-build"
version = "0.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069"
dependencies = [
"parse-zoneinfo",
"phf 0.10.0",
"phf_codegen 0.10.0",
]
[[package]]
name = "const_fn"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
[[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",
"time 0.2.27",
2021-03-22 20:00:57 +01:00
"version_check 0.9.3",
]
[[package]]
name = "cookie"
2021-07-15 19:18:16 +02:00
version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-15 19:18:16 +02:00
checksum = "d5f1c7727e460397e56abc4bddc1d49e07a1ad78fc98eb2e1c8f032a58a2f80d"
dependencies = [
"percent-encoding 2.1.0",
"time 0.2.27",
"version_check 0.9.3",
]
[[package]]
name = "cookie_store"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55b4ac5559dd39f7bdc516f769cb412b151585d8886d216871a8435ed7f862cd"
dependencies = [
2021-07-15 19:18:16 +02:00
"cookie 0.15.1",
"idna 0.2.3",
"log 0.4.14",
2021-10-24 21:50:26 +02:00
"publicsuffix",
"serde",
"serde_json",
"time 0.2.27",
"url 2.2.2",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "core-foundation"
2021-10-18 22:14:29 +02:00
version = "0.9.2"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "6888e10551bb93e424d8df1d07f1a8b4fceb0001a3a4b048bfc47554946f47b3"
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"
2021-10-18 22:14:29 +02:00
version = "0.8.3"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2018-09-19 21:43:03 +02:00
2021-02-06 16:49:28 +01:00
[[package]]
name = "cpufeatures"
2021-09-16 15:21:06 +02:00
version = "0.2.1"
2021-02-06 16:49:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
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.10.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
2018-02-10 01:00:55 +01:00
dependencies = [
"generic-array 0.14.4",
"subtle",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "crypto-mac"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
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-10-18 22:14:29 +02:00
"quote 1.0.10",
]
[[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",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "diesel"
version = "1.4.8"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
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 = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
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.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",
]
[[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-10-18 22:14:29 +02:00
version = "0.8.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746"
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.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b394ed3d285a429378d3b384b9eb1285267e7df4b166df24b7a6939a04dc392e"
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"
2021-09-16 15:21:06 +02:00
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
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"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
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"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
2018-02-10 01:00:55 +01:00
[[package]]
name = "futures-executor"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"
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"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"
[[package]]
name = "futures-macro"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
dependencies = [
"autocfg",
"proc-macro-hack",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
]
[[package]]
name = "futures-sink"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"
[[package]]
name = "futures-task"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
[[package]]
name = "futures-util"
2021-09-16 15:21:06 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
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"
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.25.0"
2020-05-14 00:18:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7"
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-10-24 21:50:26 +02:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "7fd819562fcebdac5afc5c113c3ec36f902840b70fd4fc458799c8ce4607ae55"
dependencies = [
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
"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",
]
[[package]]
name = "half"
2021-10-24 21:50:26 +02:00
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2019-01-13 01:39:29 +01:00
[[package]]
name = "handlebars"
2021-09-16 15:21:06 +02:00
version = "4.1.3"
2019-01-13 01:39:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "66b09e2322d20d14bc2572401ce7c1d60b4748580a76c230ed9c1f8938f0c833"
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.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"
2021-06-25 19:49:22 +02:00
version = "0.1.19"
2019-11-02 17:39:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-25 19:49:22 +02:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
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.10.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
2018-02-10 01:00:55 +01:00
dependencies = [
"crypto-mac 0.10.1",
"digest 0.9.0",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "hmac"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
dependencies = [
"crypto-mac 0.11.1",
2021-02-06 16:49:28 +01:00
"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",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "http"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
dependencies = [
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
2020-01-30 22:11:53 +01:00
"fnv",
"itoa",
2018-09-19 21:43:03 +02:00
]
[[package]]
name = "http-body"
2021-10-24 21:50:26 +02:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
dependencies = [
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
"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.5.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
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"
2021-10-24 21:50:26 +02:00
version = "0.14.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "2b91bb1f221b6ea1f1e4371216b70f40748774c2fb5971b450c07773fb92d26b"
dependencies = [
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
"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 = [
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
2021-10-24 21:50:26 +02:00
"hyper 0.14.14",
"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-07-15 19:18:16 +02:00
version = "1.7.0"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-15 19:18:16 +02:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
dependencies = [
"autocfg",
2021-07-15 19:18:16 +02:00
"hashbrown",
]
2018-09-19 21:43:03 +02:00
[[package]]
name = "instant"
2021-10-18 22:14:29 +02:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
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.1"
2020-08-12 18:46:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
2020-08-12 18:46:28 +02:00
2018-03-21 00:08:46 +01:00
[[package]]
name = "itoa"
version = "0.4.8"
2018-03-21 00:08:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
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"
2021-09-16 15:21:06 +02:00
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
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"
2021-10-24 21:50:26 +02:00
version = "0.2.105"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013"
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-09-16 15:21:06 +02:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
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",
"phf 0.8.0",
"phf_codegen 0.8.0",
2020-01-30 22:11:53 +01:00
"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.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[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"
version = "2.4.1"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
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",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
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"
2021-10-18 22:14:29 +02:00
version = "0.7.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
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.18.0"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
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.8.4",
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.8"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
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
[[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 = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
]
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
]
2020-05-14 00:18:18 +02:00
[[package]]
name = "object"
2021-10-24 21:50:26 +02:00
version = "0.27.1"
2020-05-14 00:18:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "67ac1d3f9a1d3616fd9a60c8d74296f22406a238b6a72f5cc1e6f314df4ffbf9"
dependencies = [
"memchr",
]
2020-05-14 00:18:18 +02:00
[[package]]
name = "once_cell"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
[[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.36"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d9facdb76fec0b73c406f125d44d86fdad818d66fef0531eec9233ca425ff4a"
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"
2021-09-16 15:21:06 +02:00
version = "111.16.0+1.1.1l"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "7ab2173f69416cf3ec12debb5823d244127d23a9b127d5a5189aa97c5fa2859f"
dependencies = [
"cc",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "openssl-sys"
version = "0.9.67"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69df2d8dfc6ce3aaf44b40dec6f487d5a886516cf6879c49e98e0710f310a058"
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.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0ab8a461779bd022964cae2b4989fa9c99deb270bec162da2125ec03c09fcaa"
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"
2021-09-16 15:21:06 +02:00
version = "0.11.2"
2019-11-28 21:59:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2019-11-28 21:59:05 +01:00
dependencies = [
"instant",
2020-01-30 22:11:53 +01:00
"lock_api",
2021-09-16 15:21:06 +02:00
"parking_lot_core 0.8.5",
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-09-16 15:21:06 +02:00
version = "0.8.5"
2019-11-28 21:59:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
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",
2021-10-18 22:14:29 +02:00
"smallvec 1.7.0",
"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",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
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 = [
"phf_shared 0.8.0",
]
[[package]]
name = "phf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9fc3db1018c4b59d7d582a739436478b6035138b6aecbce989fc91c3e98409f"
dependencies = [
"phf_shared 0.10.0",
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 = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
]
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
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 = [
"phf_shared 0.8.0",
"rand 0.7.3",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared 0.10.0",
"rand 0.8.4",
]
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 = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
"uncased",
]
[[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-07-15 19:18:16 +02:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-15 19:18:16 +02:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
[[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"
2021-10-24 21:50:26 +02:00
version = "0.3.22"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f"
2018-02-10 01:00:55 +01:00
[[package]]
name = "ppv-lite86"
2021-10-24 21:50:26 +02:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
[[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"
2021-10-18 22:14:29 +02:00
version = "1.0.30"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "edc3358ebc67bc8b7fa0c007f945b0b18226f78437d61bec735a9eb96b61ee70"
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"
2021-09-16 15:21:06 +02:00
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "292972edad6bbecc137ab84c5e36421a4a6c979ea31d3cc73540dd04315b33e1"
dependencies = [
"byteorder",
2021-07-15 19:18:16 +02:00
"hashbrown",
"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-10-18 22:14:29 +02:00
version = "1.0.10"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
2019-08-18 19:31:54 +02:00
dependencies = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
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",
2021-09-16 15:21:06 +02:00
"parking_lot 0.11.2",
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.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.3",
"rand_hc 0.3.1",
]
[[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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.3",
]
[[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"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core 0.6.3",
]
[[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.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
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-10-24 21:50:26 +02:00
version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "66d2927ca2f685faf0fc620ac4834690d29e7abb153add10f5812eef20b5e280"
dependencies = [
"async-compression",
"base64 0.13.0",
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
2021-10-24 21:50:26 +02:00
"cookie 0.15.1",
"cookie_store",
"encoding_rs",
"futures-core",
"futures-util",
"http",
2021-02-06 16:49:28 +01:00
"http-body",
2021-10-24 21:50:26 +02:00
"hyper 0.14.14",
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.27",
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"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de8813b3a2f95c5138fe5925bfb8784175d88d6bff059ba8ce090aa891319754"
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",
"time 0.2.27",
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-10-18 22:14:29 +02:00
"quote 1.0.10",
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",
2021-10-18 22:14:29 +02:00
"smallvec 1.7.0",
2020-01-30 22:11:53 +01:00
"state",
"time 0.2.27",
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"
2021-09-16 15:21:06 +02:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
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 = [
2021-09-16 15:21:06 +02:00
"parking_lot 0.11.2",
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"
2021-09-16 15:21:06 +02:00
version = "2.4.2"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"
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"
2021-09-16 15:21:06 +02:00
version = "2.4.2"
2018-09-19 21:43:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"
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"
2021-09-16 15:21:06 +02:00
version = "1.0.130"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
dependencies = [
2020-01-30 22:11:53 +01:00
"serde_derive",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "serde_bytes"
version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
dependencies = [
"serde",
]
[[package]]
name = "serde_cbor"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
"half",
"serde",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "serde_derive"
2021-09-16 15:21:06 +02:00
version = "1.0.130"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
2018-02-10 01:00:55 +01:00
dependencies = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
2018-02-10 01:00:55 +01:00
]
[[package]]
name = "serde_json"
2021-09-16 15:21:06 +02:00
version = "1.0.68"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
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",
]
[[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"
2021-09-16 15:21:06 +02:00
version = "0.9.8"
2021-02-06 16:49:28 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
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"
2021-09-16 15:21:06 +02:00
version = "0.9.8"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"
2018-02-10 01:00:55 +01:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if 1.0.0",
"cpufeatures",
"digest 0.9.0",
"opaque-debug 0.3.0",
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-09-16 15:21:06 +02:00
version = "0.3.7"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "533494a8f9b724d33625ab53c6c4800f7cc445895924a8ef649222dcb76e938b"
2018-02-10 01:00:55 +01:00
[[package]]
name = "slab"
2021-10-18 22:14:29 +02:00
version = "0.4.5"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
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"
2021-10-18 22:14:29 +02:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
[[package]]
name = "socket2"
2021-09-16 15:21:06 +02:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
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 = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"serde",
"serde_derive",
2021-10-18 22:14:29 +02:00
"syn 1.0.80",
]
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",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"serde",
"serde_derive",
"serde_json",
"sha1",
2021-10-18 22:14:29 +02:00
"syn 1.0.80",
]
[[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"
2021-10-18 22:14:29 +02:00
version = "0.8.2"
2019-01-27 15:39:19 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "923f0f39b6267d37d23ce71ae7235602134b250ace715dd2c90421998ddac0c6"
2019-01-27 15:39:19 +01:00
dependencies = [
2020-01-30 22:11:53 +01:00
"lazy_static",
"new_debug_unreachable",
2021-10-18 22:14:29 +02:00
"parking_lot 0.11.2",
"phf_shared 0.8.0",
2020-01-30 22:11:53 +01:00
"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 = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
2019-01-27 15:39:19 +01:00
]
[[package]]
name = "subtle"
2021-07-15 19:18:16 +02:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-15 19:18:16 +02:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[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"
2021-10-18 22:14:29 +02:00
version = "1.0.80"
2019-08-18 19:31:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194"
2019-08-18 19:31:54 +02:00
dependencies = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
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.4",
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"
2021-10-18 22:14:29 +02:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-18 22:14:29 +02:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
dependencies = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
]
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"
version = "0.2.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
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.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
dependencies = [
2020-01-30 22:11:53 +01:00
"proc-macro-hack",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"standback",
2021-10-18 22:14:29 +02:00
"syn 1.0.80",
]
2020-06-22 17:15:20 +02:00
[[package]]
name = "tinyvec"
2021-10-18 22:14:29 +02:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"
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.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
dependencies = [
"autocfg",
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
"libc",
"memchr",
2021-10-18 22:14:29 +02:00
"mio 0.7.14",
"num_cpus",
2021-02-06 16:49:28 +01:00
"pin-project-lite",
"winapi 0.3.9",
]
[[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"
2021-09-16 15:21:06 +02:00
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
dependencies = [
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
"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 = "totp-lite"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b18009e8be74bfb2e2cc59a63d078d95c042858a1ca1128a294e1f9ce225148b"
dependencies = [
"digest 0.9.0",
"hmac 0.11.0",
2021-09-16 15:21:06 +02:00
"sha-1 0.9.8",
"sha2",
]
[[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-10-18 22:14:29 +02:00
version = "0.1.29"
2020-07-14 16:08:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
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"
2021-10-18 22:14:29 +02:00
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
dependencies = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
]
2020-07-14 16:08:11 +02:00
[[package]]
name = "tracing-core"
2021-10-18 22:14:29 +02:00
version = "0.1.21"
2020-07-14 16:08:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
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"
2021-09-16 15:21:06 +02:00
version = "1.14.0"
2018-03-21 00:08:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
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
[[package]]
name = "uncased"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5baeed7327e25054889b9bd4f975f32e5f4c5d434042d59ab6cd4142c0a76ed0"
dependencies = [
"version_check 0.9.3",
]
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-10-18 22:14:29 +02:00
version = "0.3.7"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-18 22:14:29 +02:00
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
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",
2021-10-24 21:50:26 +02:00
"serde",
]
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",
2021-09-16 15:21:06 +02:00
"bytes 1.1.0",
2021-04-27 23:18:32 +02:00
"chashmap",
"chrono",
"chrono-tz",
2021-07-15 19:18:16 +02:00
"cookie 0.15.1",
2021-10-24 21:50:26 +02:00
"cookie_store",
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",
"once_cell",
"openssl",
"parity-ws",
"paste",
"percent-encoding 2.1.0",
"pico-args",
"rand 0.8.4",
2021-04-27 23:18:32 +02:00
"regex",
"reqwest",
"ring",
"rmpv",
"rocket",
"rocket_contrib",
"serde",
"serde_json",
"syslog",
"time 0.2.27",
"totp-lite",
2021-04-27 23:18:32 +02:00
"tracing",
"u2f",
"url 2.2.2",
2021-04-27 23:18:32 +02:00
"uuid",
"webauthn-rs",
2021-04-27 23:18:32 +02:00
"yubico",
]
2018-02-10 01:00:55 +01:00
[[package]]
name = "vcpkg"
version = "0.2.15"
2018-02-10 01:00:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
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"
2021-09-16 15:21:06 +02:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
dependencies = [
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-09-16 15:21:06 +02:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
dependencies = [
"bumpalo",
"lazy_static",
"log 0.4.14",
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2021-09-16 15:21:06 +02:00
version = "0.4.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2021-09-16 15:21:06 +02:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
dependencies = [
2021-10-18 22:14:29 +02:00
"quote 1.0.10",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-09-16 15:21:06 +02:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
dependencies = [
2021-10-18 22:14:29 +02:00
"proc-macro2 1.0.30",
"quote 1.0.10",
"syn 1.0.80",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-09-16 15:21:06 +02:00
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
[[package]]
name = "web-sys"
2021-09-16 15:21:06 +02:00
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-16 15:21:06 +02:00
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webauthn-rs"
2021-10-24 21:50:26 +02:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "5275a4ed4cd88814475b5ec51b84886eb17691fd3171f565581eca91d3489a10"
dependencies = [
"base64 0.13.0",
"log 0.4.14",
"nom 4.1.1",
"openssl",
"rand 0.8.4",
"serde",
"serde_bytes",
"serde_cbor",
"serde_derive",
"serde_json",
"thiserror",
2021-10-24 21:50:26 +02:00
"url 2.2.2",
]
[[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"
2021-10-24 21:50:26 +02:00
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 21:50:26 +02:00
checksum = "9234163818fd8e2418fcde330655e757900d4236acd8cc70fef345ef91f6d865"
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.1",
2020-01-30 22:11:53 +01:00
"futures",
2021-02-06 16:49:28 +01:00
"hmac 0.10.1",
"rand 0.8.4",
2021-02-06 16:49:28 +01:00
"reqwest",
2021-09-16 15:21:06 +02:00
"sha-1 0.9.8",
2020-01-30 22:11:53 +01:00
"threadpool",
"url 1.7.2",
]