polaris/Cargo.lock

2505 lines
62 KiB
Text
Raw Normal View History

2019-02-20 02:02:09 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2020-07-24 07:13:40 +00:00
[[package]]
name = "adler"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
2020-07-24 07:13:40 +00:00
2017-06-04 21:23:29 +00:00
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2020-05-30 23:32:34 +00:00
[[package]]
name = "aead"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cf01b9b56e767bb57b94ebf91a58b338002963785cdd7013e21c0d4679471e4"
2020-05-30 23:32:34 +00:00
dependencies = [
"generic-array 0.12.3",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "aes"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54eb1d8fe354e5fc611daf4f2ea97dd45a765f4f1e4512306ec183ae2e8f20c9"
2020-05-30 23:32:34 +00:00
dependencies = [
"aes-soft",
"aesni",
"block-cipher-trait",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "aes-gcm"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "834a6bda386024dbb7c8fc51322856c10ffe69559f972261c868485f5759c638"
2020-05-30 23:32:34 +00:00
dependencies = [
"aead",
"aes",
"block-cipher-trait",
"ghash",
"subtle 2.3.0",
"zeroize",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "aes-soft"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d"
2020-05-30 23:32:34 +00:00
dependencies = [
"block-cipher-trait",
"byteorder",
"opaque-debug 0.2.3",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "aesni"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100"
2020-05-30 23:32:34 +00:00
dependencies = [
"block-cipher-trait",
"opaque-debug 0.2.3",
2020-05-30 23:32:34 +00:00
]
2017-06-26 01:36:54 +00:00
[[package]]
name = "aho-corasick"
version = "0.7.15"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
2017-06-26 01:36:54 +00:00
dependencies = [
"memchr",
2017-06-26 01:36:54 +00:00
]
2020-01-05 00:42:28 +00:00
[[package]]
name = "anyhow"
2020-12-08 07:30:00 +00:00
version = "1.0.35"
2020-01-05 00:42:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 07:30:00 +00:00
checksum = "2c0df63cb2955042487fad3aefd2c6e3ae7389ac5dc1beb28921de0b69f779d4"
2020-01-05 00:42:28 +00:00
2016-11-14 00:45:12 +00:00
[[package]]
name = "ape"
2020-05-30 23:56:20 +00:00
version = "0.3.0"
2016-11-14 00:45:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ced866a80cef5e2218c00bea8f7cbcc6d3a9b1d358250f8a098b6a3e8db110ed"
2016-11-14 00:45:12 +00:00
dependencies = [
"byteorder",
2016-11-14 00:45:12 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "atty"
2020-01-23 05:27:01 +00:00
version = "0.2.14"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-08-06 07:44:04 +00:00
dependencies = [
"hermit-abi",
"libc",
"winapi 0.3.9",
2019-08-06 07:44:04 +00:00
]
2020-01-23 05:27:01 +00:00
[[package]]
name = "autocfg"
version = "1.0.1"
2020-01-23 05:27:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-01-23 05:27:01 +00:00
2020-05-30 23:47:44 +00:00
[[package]]
name = "base-x"
version = "0.2.8"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
2020-05-30 23:47:44 +00:00
[[package]]
name = "base64"
2018-10-07 00:03:06 +00:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
dependencies = [
"byteorder",
"safemem",
]
2020-05-30 23:32:34 +00:00
[[package]]
name = "base64"
2020-07-24 07:13:40 +00:00
version = "0.12.3"
2020-05-30 23:32:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
2020-05-30 23:32:34 +00:00
2020-12-08 07:30:51 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2017-12-07 03:44:54 +00:00
[[package]]
name = "bitflags"
2019-10-19 07:41:22 +00:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
"generic-array 0.12.3",
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2020-07-24 07:13:40 +00:00
dependencies = [
"generic-array 0.14.4",
2020-07-24 07:13:40 +00:00
]
2020-05-30 23:32:34 +00:00
[[package]]
name = "block-cipher-trait"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774"
2020-05-30 23:32:34 +00:00
dependencies = [
"generic-array 0.12.3",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "block-padding"
2019-11-28 21:54:17 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
2020-05-30 23:47:44 +00:00
[[package]]
name = "bumpalo"
2020-07-24 07:13:40 +00:00
version = "3.4.0"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
2020-05-30 23:47:44 +00:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2020-05-31 00:05:41 +00:00
[[package]]
name = "bytemuck"
version = "1.4.1"
2020-05-31 00:05:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41aa2ec95ca3b5c54cf73c91acf06d24f4495d5f1b1c12506ae3483d646177ac"
2020-05-31 00:05:41 +00:00
[[package]]
name = "byteorder"
2020-05-31 00:30:02 +00:00
version = "1.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
2020-01-14 07:56:46 +00:00
[[package]]
name = "bytes"
2020-07-24 07:13:40 +00:00
version = "0.5.6"
2020-01-14 07:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2020-01-14 07:56:46 +00:00
2017-12-07 03:44:54 +00:00
[[package]]
name = "cc"
2020-12-08 08:22:16 +00:00
version = "1.0.66"
2017-12-07 03:44:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
2017-12-07 03:44:54 +00:00
[[package]]
name = "cfg-if"
2019-09-28 22:39:33 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"time 0.1.44",
"winapi 0.3.9",
]
2017-07-07 03:49:34 +00:00
[[package]]
name = "chunked_transfer"
version = "1.3.0"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7477065d45a8fe57167bf3cf8bcd3729b54cfcb81cca49bda2d038ea89ae82ca"
2017-07-07 03:49:34 +00:00
2016-10-23 22:12:49 +00:00
[[package]]
name = "color_quant"
version = "1.1.0"
2016-10-23 22:12:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
[[package]]
name = "const_fn"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"
2016-10-23 22:12:49 +00:00
2018-10-27 21:03:56 +00:00
[[package]]
name = "cookie"
2020-05-30 23:32:34 +00:00
version = "0.11.3"
2018-10-27 21:03:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5795cda0897252e34380a27baf884c53aa7ad9990329cdad96d4c5d027015d44"
2018-10-27 21:03:56 +00:00
dependencies = [
"aes-gcm",
"base64 0.12.3",
"hkdf",
"hmac 0.7.1",
"percent-encoding 2.1.0",
"rand",
"sha2 0.8.2",
"time 0.1.44",
]
2020-01-23 05:45:11 +00:00
[[package]]
name = "cookie"
version = "0.14.3"
2020-01-23 05:45:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "784ad0fbab4f3e9cef09f20e0aea6000ae08d2cb98ac4c0abc53df18803d702f"
2020-01-23 05:45:11 +00:00
dependencies = [
"percent-encoding 2.1.0",
"time 0.2.23",
"version_check 0.9.2",
2020-01-23 05:45:11 +00:00
]
2019-02-20 02:02:09 +00:00
[[package]]
2019-08-06 07:44:04 +00:00
name = "cookie_store"
version = "0.12.0"
2019-02-20 02:02:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3"
2019-02-20 02:02:09 +00:00
dependencies = [
"cookie 0.14.3",
"idna 0.2.0",
"log 0.4.11",
"publicsuffix",
"serde",
"serde_json",
"time 0.2.23",
"url 2.2.0",
2019-02-20 02:02:09 +00:00
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "cpuid-bool"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
2020-07-24 07:13:40 +00:00
[[package]]
2019-08-06 07:44:04 +00:00
name = "crc32fast"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
"cfg-if 1.0.0",
2018-10-07 00:03:06 +00:00
]
[[package]]
name = "crossbeam-channel"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
dependencies = [
"cfg-if 1.0.0",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2020-12-08 08:22:16 +00:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
dependencies = [
"cfg-if 1.0.0",
"const_fn",
"crossbeam-utils",
2020-12-08 04:10:10 +00:00
"lazy_static",
"memoffset",
"scopeguard",
2018-10-07 00:03:06 +00:00
]
[[package]]
name = "crossbeam-utils"
2020-12-08 08:22:16 +00:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
dependencies = [
"autocfg",
"cfg-if 1.0.0",
2020-12-08 04:10:10 +00:00
"lazy_static",
2019-11-28 21:54:17 +00:00
]
[[package]]
name = "crypto-mac"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
dependencies = [
"generic-array 0.12.3",
"subtle 1.0.0",
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "crypto-mac"
2020-12-08 07:35:33 +00:00
version = "0.10.0"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 07:35:33 +00:00
checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
2020-07-24 07:13:40 +00:00
dependencies = [
"generic-array 0.14.4",
"subtle 2.3.0",
2020-07-24 07:13:40 +00:00
]
2017-06-04 21:23:29 +00:00
[[package]]
name = "deflate"
2020-07-24 07:13:40 +00:00
version = "0.8.6"
2017-06-04 21:23:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
2017-06-04 21:23:29 +00:00
dependencies = [
"adler32",
"byteorder",
2017-06-04 21:23:29 +00:00
]
2018-10-27 21:03:56 +00:00
[[package]]
2018-11-11 07:44:20 +00:00
name = "devise"
2019-02-20 02:02:09 +00:00
version = "0.2.0"
2018-11-11 07:44:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74e04ba2d03c5fa0d954c061fc8c9c288badadffc272ebb87679a89846de3ed3"
2018-10-27 21:03:56 +00:00
dependencies = [
"devise_codegen",
"devise_core",
2018-10-27 21:03:56 +00:00
]
[[package]]
2018-11-11 07:44:20 +00:00
name = "devise_codegen"
2019-02-20 02:02:09 +00:00
version = "0.2.0"
2018-11-11 07:44:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "066ceb7928ca93a9bedc6d0e612a8a0424048b0ab1f75971b203d01420c055d7"
2018-10-27 21:03:56 +00:00
dependencies = [
"devise_core",
"quote 0.6.13",
2018-10-27 21:03:56 +00:00
]
[[package]]
2018-11-11 07:44:20 +00:00
name = "devise_core"
2019-02-20 02:02:09 +00:00
version = "0.2.0"
2018-11-11 07:44:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf41c59b22b5e3ec0ea55c7847e5f358d340f3a8d6d53a5cf4f1564967f96487"
2018-10-27 21:03:56 +00:00
dependencies = [
"bitflags",
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
2018-10-27 21:03:56 +00:00
]
[[package]]
name = "diesel"
2020-07-24 07:13:40 +00:00
version = "1.4.5"
2017-12-11 04:41:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2de9deab977a153492a1468d1b1c0662c1cf39e5ea87d0c060ecd59ef18d8c"
dependencies = [
"byteorder",
"diesel_derives",
"libsqlite3-sys",
"r2d2",
]
2017-06-26 01:36:54 +00:00
[[package]]
2017-12-11 04:41:52 +00:00
name = "diesel_derives"
2019-10-19 07:41:22 +00:00
version = "1.4.1"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
2017-06-26 01:36:54 +00:00
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
2017-06-26 01:36:54 +00:00
]
[[package]]
2017-12-11 04:41:52 +00:00
name = "diesel_migrations"
2019-02-20 02:02:09 +00:00
version = "1.4.0"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
2017-06-26 01:36:54 +00:00
dependencies = [
"migrations_internals",
"migrations_macros",
2017-06-26 01:36:54 +00:00
]
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
"generic-array 0.12.3",
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2020-07-24 07:13:40 +00:00
dependencies = [
"generic-array 0.14.4",
2020-07-24 07:13:40 +00:00
]
2020-05-30 23:47:44 +00:00
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2020-05-30 23:47:44 +00:00
2017-07-07 03:49:34 +00:00
[[package]]
name = "either"
version = "1.6.1"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2017-07-07 03:49:34 +00:00
2016-09-15 06:33:38 +00:00
[[package]]
name = "encoding"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
2016-09-15 06:33:38 +00:00
dependencies = [
"encoding-index-japanese",
"encoding-index-korean",
"encoding-index-simpchinese",
"encoding-index-singlebyte",
"encoding-index-tradchinese",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "encoding-index-japanese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
2016-09-15 06:33:38 +00:00
dependencies = [
"encoding_index_tests",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "encoding-index-korean"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
2016-09-15 06:33:38 +00:00
dependencies = [
"encoding_index_tests",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "encoding-index-simpchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
2016-09-15 06:33:38 +00:00
dependencies = [
"encoding_index_tests",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "encoding-index-singlebyte"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
2016-09-15 06:33:38 +00:00
dependencies = [
"encoding_index_tests",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "encoding-index-tradchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
2016-09-15 06:33:38 +00:00
dependencies = [
"encoding_index_tests",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "encoding_index_tests"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
2016-09-15 06:33:38 +00:00
2017-09-22 04:32:42 +00:00
[[package]]
name = "error-chain"
version = "0.12.4"
2017-09-22 04:32:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
dependencies = [
"version_check 0.9.2",
]
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2018-10-27 21:33:28 +00:00
[[package]]
name = "filetime"
version = "0.2.13"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c122a393ea57648015bf06fbd3d372378992e86b9ff5a7a497b076a28c79efe"
2018-10-27 21:33:28 +00:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"redox_syscall",
"winapi 0.3.9",
2018-10-27 21:33:28 +00:00
]
2016-09-15 06:33:38 +00:00
[[package]]
name = "flate2"
version = "1.0.19"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
2016-09-15 06:33:38 +00:00
dependencies = [
"cfg-if 1.0.0",
"crc32fast",
"libc",
"miniz_oxide 0.4.3",
2016-09-15 06:33:38 +00:00
]
2018-10-07 00:30:01 +00:00
[[package]]
name = "fnv"
2020-05-31 00:30:02 +00:00
version = "1.0.7"
2018-10-07 00:30:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-10-07 00:30:01 +00:00
[[package]]
name = "form_urlencoded"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
dependencies = [
"matches",
"percent-encoding 2.1.0",
]
2017-12-07 03:44:54 +00:00
2018-10-27 21:33:28 +00:00
[[package]]
name = "fsevent"
2019-08-06 07:44:04 +00:00
version = "0.4.0"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
2018-10-27 21:33:28 +00:00
dependencies = [
"bitflags",
"fsevent-sys",
2018-10-27 21:33:28 +00:00
]
[[package]]
name = "fsevent-sys"
2019-08-06 07:44:04 +00:00
version = "2.0.1"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
2018-10-27 21:33:28 +00:00
dependencies = [
"libc",
2018-10-27 21:33:28 +00:00
]
2017-12-07 03:44:54 +00:00
[[package]]
name = "fuchsia-zircon"
2018-10-07 00:03:06 +00:00
version = "0.3.3"
2017-12-07 03:44:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2017-12-07 03:44:54 +00:00
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
2017-12-07 03:44:54 +00:00
]
[[package]]
name = "fuchsia-zircon-sys"
2018-10-07 00:03:06 +00:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "generic-array"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
dependencies = [
"typenum",
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "generic-array"
version = "0.14.4"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
2020-07-24 07:13:40 +00:00
dependencies = [
"typenum",
"version_check 0.9.2",
2020-07-24 07:13:40 +00:00
]
[[package]]
name = "getopts"
2019-09-28 22:39:33 +00:00
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
2018-10-07 00:03:06 +00:00
dependencies = [
"unicode-width",
2018-10-07 00:03:06 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "getrandom"
version = "0.1.15"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
2019-08-06 07:44:04 +00:00
dependencies = [
"cfg-if 0.1.10",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
2019-08-06 07:44:04 +00:00
]
2020-05-30 23:32:34 +00:00
[[package]]
name = "ghash"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f0930ed19a7184089ea46d2fedead2f6dc2b674c5db4276b7da336c7cd83252"
2020-05-30 23:32:34 +00:00
dependencies = [
"polyval",
2020-05-30 23:32:34 +00:00
]
2016-10-23 22:12:49 +00:00
[[package]]
name = "gif"
version = "0.11.1"
2016-10-23 22:12:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02efba560f227847cb41463a7395c514d127d4f74fff12ef0137fff1b84b96c4"
2016-10-23 22:12:49 +00:00
dependencies = [
"color_quant",
"weezl",
2016-10-23 22:12:49 +00:00
]
2020-05-30 23:32:34 +00:00
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2020-05-30 23:32:34 +00:00
2020-07-24 07:13:40 +00:00
[[package]]
name = "hashbrown"
version = "0.9.1"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2020-07-24 07:13:40 +00:00
[[package]]
name = "headers"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed18eb2459bf1a09ad2d6b1547840c3e5e62882fa09b9a6a20b1de8e3228848f"
dependencies = [
"base64 0.12.3",
"bitflags",
"bytes",
"headers-core",
"http",
"mime 0.3.16",
"sha-1",
"time 0.1.44",
]
[[package]]
name = "headers-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
dependencies = [
"http",
]
2019-11-28 21:54:17 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.17"
2019-11-28 21:54:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
2019-11-28 21:54:17 +00:00
dependencies = [
"libc",
2019-11-28 21:54:17 +00:00
]
2019-10-19 07:41:22 +00:00
[[package]]
name = "hex"
2020-05-31 00:30:02 +00:00
version = "0.4.2"
2019-10-19 07:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
2019-10-19 07:41:22 +00:00
2020-05-30 23:32:34 +00:00
[[package]]
name = "hkdf"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fa08a006102488bd9cd5b8013aabe84955cf5ae22e304c2caf655b633aefae3"
2020-05-30 23:32:34 +00:00
dependencies = [
"digest 0.8.1",
"hmac 0.7.1",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "hmac"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
dependencies = [
"crypto-mac 0.7.0",
"digest 0.8.1",
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "hmac"
2020-12-08 07:35:33 +00:00
version = "0.10.1"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 07:35:33 +00:00
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
2020-07-24 07:13:40 +00:00
dependencies = [
2020-12-08 07:35:33 +00:00
"crypto-mac 0.10.0",
"digest 0.9.0",
2020-07-24 07:13:40 +00:00
]
[[package]]
name = "http"
2020-05-31 00:07:25 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "httparse"
2019-08-06 07:44:04 +00:00
version = "1.3.4"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
2016-09-15 06:33:38 +00:00
[[package]]
name = "hyper"
2019-08-06 07:44:04 +00:00
version = "0.10.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273"
dependencies = [
"base64 0.9.3",
"httparse",
"language-tags",
"log 0.3.9",
"mime 0.2.6",
"num_cpus",
"time 0.1.44",
"traitobject",
"typeable",
"unicase",
"url 1.7.2",
2017-07-07 03:49:34 +00:00
]
[[package]]
2016-09-15 06:33:38 +00:00
name = "id3"
2020-05-30 23:56:20 +00:00
version = "0.5.1"
2016-12-02 01:18:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02c11bb50ce1568516aefbe4b6564c3feaf15a8e5ccbea90fa652012446ae9bf"
dependencies = [
"bitflags",
"byteorder",
"encoding",
"flate2",
2020-12-08 04:10:10 +00:00
"lazy_static",
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "idna"
2018-10-07 00:03:06 +00:00
version = "0.1.5"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
2016-08-14 08:30:40 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
2016-08-14 08:30:40 +00:00
]
2019-09-28 22:39:33 +00:00
[[package]]
name = "idna"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
2019-09-28 22:39:33 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
2019-09-28 22:39:33 +00:00
]
2016-10-23 22:12:49 +00:00
[[package]]
name = "image"
version = "0.23.12"
2016-10-23 22:12:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ce04077ead78e39ae8610ad26216aed811996b043d47beed5090db674f9e9b5"
2016-10-23 22:12:49 +00:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"gif",
"jpeg-decoder",
"num-iter",
"num-rational",
"num-traits",
"png",
2016-10-23 22:12:49 +00:00
]
2018-10-07 00:30:01 +00:00
[[package]]
name = "indexmap"
version = "1.6.0"
2018-10-07 00:30:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
2019-10-19 07:41:22 +00:00
dependencies = [
"autocfg",
"hashbrown",
2018-10-07 00:03:06 +00:00
]
2016-10-23 22:12:49 +00:00
2018-10-27 21:33:28 +00:00
[[package]]
name = "inotify"
2020-07-24 07:13:40 +00:00
version = "0.7.1"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
2018-10-27 21:33:28 +00:00
dependencies = [
"bitflags",
"inotify-sys",
"libc",
2018-10-27 21:33:28 +00:00
]
[[package]]
name = "inotify-sys"
version = "0.1.4"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4563555856585ab3180a5bf0b2f9f8d301a728462afffc8195b3f5394229c55"
2018-10-27 21:33:28 +00:00
dependencies = [
"libc",
2018-10-27 21:33:28 +00:00
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "instant"
version = "0.1.9"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
dependencies = [
"cfg-if 1.0.0",
]
2020-07-24 07:13:40 +00:00
2017-07-07 03:49:34 +00:00
[[package]]
name = "iovec"
2019-10-19 07:41:22 +00:00
version = "0.1.4"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2017-07-07 03:49:34 +00:00
dependencies = [
"libc",
2017-07-07 03:49:34 +00:00
]
[[package]]
name = "itoa"
2020-07-24 07:13:40 +00:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
2016-10-23 22:12:49 +00:00
[[package]]
name = "jpeg-decoder"
2020-07-24 07:13:40 +00:00
version = "0.1.20"
2016-10-23 22:12:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc797adac5f083b8ff0ca6f6294a999393d76e197c36488e2ef732c4715f6fa3"
2016-10-23 22:12:49 +00:00
dependencies = [
"byteorder",
]
[[package]]
name = "js-sys"
version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf3d7383929f7c9c7c2d0fa596f325832df98c3704f2c60553080f7127a58175"
dependencies = [
"wasm-bindgen",
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2016-08-14 08:30:40 +00:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2016-08-14 08:30:40 +00:00
]
[[package]]
name = "language-tags"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
2016-08-14 08:30:40 +00:00
2016-09-15 06:33:38 +00:00
[[package]]
name = "lazy_static"
2019-09-28 22:39:33 +00:00
version = "1.4.0"
2017-12-07 03:44:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2017-12-07 03:44:54 +00:00
2017-07-07 03:49:34 +00:00
[[package]]
name = "lazycell"
version = "1.3.0"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2017-07-07 03:49:34 +00:00
2016-11-17 00:34:36 +00:00
[[package]]
name = "lewton"
2020-05-30 23:56:20 +00:00
version = "0.10.1"
2016-11-17 00:34:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be42bea7971f4ba0ea1e215730c29bc1ff9bd2a9c10013912f42a8dcf8d77c0d"
2016-11-17 00:34:36 +00:00
dependencies = [
"byteorder",
"ogg",
"tinyvec 0.3.4",
2016-11-17 00:34:36 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "libc"
2020-12-08 08:22:16 +00:00
version = "0.2.81"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
2016-08-14 08:30:40 +00:00
2017-06-26 01:36:54 +00:00
[[package]]
name = "libsqlite3-sys"
2020-12-08 08:22:16 +00:00
version = "0.18.0"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "1e704a02bcaecd4a08b93a23f6be59d0bd79cd161e0963e9499165a0a35df7bd"
2017-06-26 01:36:54 +00:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
2017-06-26 01:36:54 +00:00
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "lock_api"
version = "0.4.2"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
2020-07-24 07:13:40 +00:00
dependencies = [
"scopeguard",
2020-07-24 07:13:40 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "log"
2018-10-07 00:03:06 +00:00
version = "0.3.9"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
2018-10-07 00:03:06 +00:00
dependencies = [
"log 0.4.11",
2018-10-07 00:03:06 +00:00
]
[[package]]
name = "log"
2020-07-24 07:13:40 +00:00
version = "0.4.11"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
2018-10-07 00:03:06 +00:00
dependencies = [
"cfg-if 0.1.10",
2018-10-07 00:03:06 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "matches"
2018-10-07 00:03:06 +00:00
version = "0.1.8"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2016-08-14 08:30:40 +00:00
2020-01-23 05:45:11 +00:00
[[package]]
name = "md5"
version = "0.7.0"
2020-01-23 05:45:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2020-01-23 05:45:11 +00:00
2017-06-26 01:36:54 +00:00
[[package]]
name = "memchr"
version = "2.3.4"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2017-06-26 01:36:54 +00:00
2020-12-08 08:22:16 +00:00
[[package]]
name = "memoffset"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
dependencies = [
"autocfg",
2020-12-08 08:22:16 +00:00
]
2016-11-17 01:27:53 +00:00
[[package]]
name = "metaflac"
version = "0.2.4"
2019-10-19 07:41:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4685bf0039a9d2919c2dbb281cba1c58d168dce58f519cbd70c468ce2c36a748"
2016-11-17 01:27:53 +00:00
dependencies = [
"byteorder",
"hex",
"log 0.4.11",
2016-11-17 01:27:53 +00:00
]
2017-12-11 04:41:52 +00:00
[[package]]
name = "migrations_internals"
2020-05-31 00:30:02 +00:00
version = "1.4.1"
2017-12-11 04:41:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
2017-12-11 04:41:52 +00:00
dependencies = [
"diesel",
2017-12-11 04:41:52 +00:00
]
[[package]]
name = "migrations_macros"
2020-05-31 00:30:02 +00:00
version = "1.4.2"
2017-12-11 04:41:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
2017-12-11 04:41:52 +00:00
dependencies = [
"migrations_internals",
"proc-macro2 1.0.24",
"quote 1.0.7",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
2017-12-11 04:41:52 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "mime"
version = "0.2.6"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0"
2016-08-14 08:30:40 +00:00
dependencies = [
"log 0.3.9",
2016-08-14 08:30:40 +00:00
]
2017-07-07 03:49:34 +00:00
[[package]]
name = "mime"
2020-01-23 05:27:01 +00:00
version = "0.3.16"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2017-07-07 03:49:34 +00:00
2018-10-27 17:56:04 +00:00
[[package]]
name = "miniz_oxide"
2020-07-24 07:13:40 +00:00
version = "0.3.7"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
2016-09-15 06:33:38 +00:00
dependencies = [
"adler32",
2020-07-24 07:13:40 +00:00
]
[[package]]
name = "miniz_oxide"
version = "0.4.3"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
2020-07-24 07:13:40 +00:00
dependencies = [
"adler",
"autocfg",
2017-07-07 03:49:34 +00:00
]
[[package]]
name = "mio"
2020-12-08 08:22:16 +00:00
version = "0.6.23"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2017-07-07 03:49:34 +00:00
dependencies = [
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log 0.4.11",
"miow",
"net2",
"slab",
"winapi 0.2.8",
2017-07-07 03:49:34 +00:00
]
2018-10-27 21:33:28 +00:00
[[package]]
name = "mio-extras"
2019-12-17 22:40:27 +00:00
version = "2.0.6"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
2018-10-27 21:33:28 +00:00
dependencies = [
"lazycell",
"log 0.4.11",
"mio",
"slab",
2018-10-07 00:03:06 +00:00
]
2017-07-07 03:49:34 +00:00
[[package]]
name = "miow"
2020-12-08 08:22:16 +00:00
version = "0.2.2"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2017-07-07 03:49:34 +00:00
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "mp3-duration"
2020-07-24 07:13:40 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "348bdc7300502f0801e5b57c448815713cd843b744ef9bda252a2698fdf90a0f"
dependencies = [
"thiserror",
]
[[package]]
name = "mp4ameta"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d43d4114a72b4a4a1196473852cd4fb592b45968c57a78be63a98b28749ae31"
dependencies = [
2020-12-08 04:10:10 +00:00
"lazy_static",
"mp4ameta_proc",
]
[[package]]
name = "mp4ameta_proc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b78760a249b7611363d02cfbd56974e1957faf2caa4fce36d4207b7edc803b1"
2017-07-07 03:49:34 +00:00
[[package]]
name = "net2"
2020-12-08 08:22:16 +00:00
version = "0.2.36"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "d7cf75f38f16cb05ea017784dc6dbfd354f76c223dba37701734c4f5a9337d02"
2017-07-07 03:49:34 +00:00
dependencies = [
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
2017-07-07 03:49:34 +00:00
]
2018-10-27 21:33:28 +00:00
[[package]]
name = "notify"
2020-01-23 05:27:01 +00:00
version = "4.0.15"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80ae4a7688d1fab81c5bf19c64fc8db920be8d519ce6336ed4e7efe024724dbd"
2018-10-27 21:33:28 +00:00
dependencies = [
"bitflags",
"filetime",
"fsevent",
"fsevent-sys",
"inotify",
"libc",
"mio",
"mio-extras",
"walkdir",
"winapi 0.3.9",
2018-10-27 21:33:28 +00:00
]
2016-09-15 06:33:38 +00:00
[[package]]
name = "num-integer"
version = "0.1.44"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2016-09-15 06:33:38 +00:00
dependencies = [
"autocfg",
"num-traits",
2016-09-15 06:33:38 +00:00
]
[[package]]
name = "num-iter"
version = "0.1.42"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
2016-09-15 06:33:38 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
2016-09-15 06:33:38 +00:00
]
2018-10-07 00:03:06 +00:00
[[package]]
name = "num-rational"
version = "0.3.2"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
2018-10-07 00:03:06 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
2018-10-07 00:03:06 +00:00
]
[[package]]
name = "num-traits"
version = "0.2.14"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2019-08-06 07:44:04 +00:00
dependencies = [
"autocfg",
2019-08-06 07:44:04 +00:00
]
2016-09-15 06:33:38 +00:00
2016-12-02 01:18:40 +00:00
[[package]]
name = "num_cpus"
2020-05-31 00:30:02 +00:00
version = "1.13.0"
2016-12-02 01:18:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2016-12-02 01:18:40 +00:00
dependencies = [
"hermit-abi",
"libc",
2016-09-15 06:33:38 +00:00
]
2016-11-17 00:34:36 +00:00
[[package]]
name = "ogg"
version = "0.7.1"
2016-11-17 00:34:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13e571c3517af9e1729d4c63571a27edd660ade0667973bfc74a67c660c2b651"
2016-11-17 00:34:36 +00:00
dependencies = [
"byteorder",
2016-11-17 00:34:36 +00:00
]
[[package]]
name = "once_cell"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2020-07-24 07:13:40 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2020-07-24 07:13:40 +00:00
2018-10-07 00:30:01 +00:00
[[package]]
name = "opus_headers"
2018-10-07 00:30:01 +00:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afbb993947f111397c2bc536944f8dac7f54a4e73383d478efe1990b56404b60"
2018-10-07 00:30:01 +00:00
2016-09-15 06:33:38 +00:00
[[package]]
name = "parking_lot"
version = "0.11.1"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
2020-01-14 07:56:46 +00:00
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
2018-10-07 00:03:06 +00:00
]
2020-01-14 07:56:46 +00:00
[[package]]
name = "parking_lot_core"
2020-12-08 08:22:16 +00:00
version = "0.8.1"
2020-01-14 07:56:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "d7c6d9b8427445284a09c55be860a15855ab580a417ccad9da88f5a06787ced0"
2020-01-14 07:56:46 +00:00
dependencies = [
2020-12-08 08:22:16 +00:00
"cfg-if 1.0.0",
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi 0.3.9",
2020-01-14 07:56:46 +00:00
]
[[package]]
name = "pbkdf2"
2020-12-08 07:35:33 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 07:35:33 +00:00
checksum = "b3b8c0d71734018084da0c0354193a5edfb81b20d2d57a92c5b154aefc554a4a"
dependencies = [
2020-12-08 07:35:33 +00:00
"base64 0.13.0",
"crypto-mac 0.10.0",
"hmac 0.10.1",
"rand",
"rand_core",
"sha2 0.9.2",
"subtle 2.3.0",
]
2018-10-27 21:03:56 +00:00
[[package]]
name = "pear"
2020-07-20 13:30:13 +00:00
version = "0.1.4"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5320f212db967792b67cfe12bd469d08afd6318a249bd917d5c19bc92200ab8a"
2018-10-27 21:03:56 +00:00
dependencies = [
"pear_codegen",
2018-10-27 21:03:56 +00:00
]
[[package]]
name = "pear_codegen"
2020-07-20 13:30:13 +00:00
version = "0.1.4"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfc1c836fdc3d1ef87c348b237b5b5c4dff922156fb2d968f57734f9669768ca"
2018-10-27 21:03:56 +00:00
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
"version_check 0.9.2",
"yansi",
2018-10-27 21:03:56 +00:00
]
2017-07-07 03:49:34 +00:00
[[package]]
name = "percent-encoding"
2017-12-07 03:44:54 +00:00
version = "1.0.1"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
2017-07-07 03:49:34 +00:00
2019-09-28 22:39:33 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-09-28 22:39:33 +00:00
2016-09-15 06:33:38 +00:00
[[package]]
name = "pkg-config"
version = "0.3.19"
2016-09-15 06:33:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2016-09-15 06:33:38 +00:00
2016-10-23 22:12:49 +00:00
[[package]]
name = "png"
2020-07-24 07:13:40 +00:00
version = "0.16.7"
2016-10-23 22:12:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfe7f9f1c730833200b134370e1d5098964231af8450bce9b78ee3ab5278b970"
2016-10-23 22:12:49 +00:00
dependencies = [
"bitflags",
"crc32fast",
"deflate",
"miniz_oxide 0.3.7",
2016-10-23 22:12:49 +00:00
]
2017-12-03 21:40:54 +00:00
[[package]]
name = "polaris"
2020-08-05 06:13:06 +00:00
version = "0.12.4"
2017-12-03 21:40:54 +00:00
dependencies = [
"anyhow",
"ape",
2020-12-08 07:30:51 +00:00
"base64 0.13.0",
"cookie 0.14.3",
2020-12-08 07:33:37 +00:00
"crossbeam-channel",
"diesel",
"diesel_migrations",
"getopts",
"headers",
"http",
"id3",
"image",
"lewton",
"libsqlite3-sys",
"log 0.4.11",
"metaflac",
"mp3-duration",
"mp4ameta",
"num_cpus",
"opus_headers",
"pbkdf2",
"percent-encoding 2.1.0",
"rand",
"rayon",
"regex",
"rocket",
"rocket_contrib",
"rustfm-scrobble",
"sd-notify",
"serde",
"serde_derive",
"serde_json",
"simplelog",
"thiserror",
"time 0.1.44",
"toml 0.5.7",
"unix-daemonize",
"ureq",
"url 2.2.0",
"uuid",
"winapi 0.3.9",
2018-10-07 00:03:06 +00:00
]
2020-05-30 23:32:34 +00:00
[[package]]
name = "polyval"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ec3341498978de3bfd12d1b22f1af1de22818f5473a11e8a6ef997989e3a212"
2020-05-30 23:32:34 +00:00
dependencies = [
"cfg-if 0.1.10",
"universal-hash",
2020-05-30 23:32:34 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.10"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2019-08-06 07:44:04 +00:00
2020-01-23 05:45:11 +00:00
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
2020-01-23 05:45:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-01-23 05:45:11 +00:00
2018-10-07 01:13:44 +00:00
[[package]]
name = "proc-macro2"
2019-08-06 07:44:04 +00:00
version = "0.4.30"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
2018-10-07 00:03:06 +00:00
dependencies = [
"unicode-xid 0.1.0",
2017-12-03 21:40:54 +00:00
]
2019-09-28 22:39:33 +00:00
[[package]]
name = "proc-macro2"
version = "1.0.24"
2019-09-28 22:39:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2019-09-28 22:39:33 +00:00
dependencies = [
"unicode-xid 0.2.1",
2019-09-28 22:39:33 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "publicsuffix"
2019-11-28 21:54:17 +00:00
version = "1.5.4"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bbaa49075179162b49acac1c6aa45fb4dafb5f13cf6794276d77bc7fd95757b"
2019-08-06 07:44:04 +00:00
dependencies = [
"error-chain",
"idna 0.2.0",
2020-12-08 04:10:10 +00:00
"lazy_static",
"regex",
"url 2.2.0",
2019-08-06 07:44:04 +00:00
]
[[package]]
name = "qstring"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e"
dependencies = [
"percent-encoding 2.1.0",
]
[[package]]
name = "quote"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
2018-10-07 01:13:44 +00:00
[[package]]
name = "quote"
2019-08-06 07:44:04 +00:00
version = "0.6.13"
2018-10-07 01:13:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
2018-10-07 01:13:44 +00:00
dependencies = [
"proc-macro2 0.4.30",
2018-10-07 01:13:44 +00:00
]
2019-09-28 22:39:33 +00:00
[[package]]
name = "quote"
2020-07-24 07:13:40 +00:00
version = "1.0.7"
2019-09-28 22:39:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2019-09-28 22:39:33 +00:00
dependencies = [
"proc-macro2 1.0.24",
2019-09-28 22:39:33 +00:00
]
2020-01-16 05:58:37 +00:00
[[package]]
name = "r2d2"
2020-07-24 07:13:40 +00:00
version = "0.8.9"
2020-01-16 05:58:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545c5bc2b880973c9c10e4067418407a0ccaa3091781d1671d46eb35107cb26f"
2020-01-16 05:58:37 +00:00
dependencies = [
"log 0.4.11",
"parking_lot",
"scheduled-thread-pool",
2020-01-16 05:58:37 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "rand"
2020-01-23 05:27:01 +00:00
version = "0.7.3"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2019-08-06 07:44:04 +00:00
dependencies = [
"getrandom",
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
2019-02-20 02:02:09 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "rand_chacha"
2020-05-31 00:30:02 +00:00
version = "0.2.2"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2019-08-06 07:44:04 +00:00
dependencies = [
"ppv-lite86",
"rand_core",
2018-10-07 00:03:06 +00:00
]
2019-08-06 07:44:04 +00:00
[[package]]
name = "rand_core"
2019-09-28 22:39:33 +00:00
version = "0.5.1"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2019-08-06 07:44:04 +00:00
dependencies = [
"getrandom",
2019-08-06 07:44:04 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2019-08-06 07:44:04 +00:00
dependencies = [
"rand_core",
2019-02-20 02:02:09 +00:00
]
2018-10-07 00:03:06 +00:00
2017-07-07 03:49:34 +00:00
[[package]]
name = "rayon"
version = "1.5.0"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
2017-07-07 03:49:34 +00:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
dependencies = [
2020-12-08 07:33:37 +00:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
2020-12-08 04:10:10 +00:00
"lazy_static",
"num_cpus",
2019-02-20 02:02:09 +00:00
]
[[package]]
name = "redox_syscall"
2020-07-24 07:13:40 +00:00
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2018-10-07 00:03:06 +00:00
[[package]]
name = "regex"
version = "1.4.2"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38cf2c13ed4745de91a5eb834e11c00bcc3709e773173b2ce4c56c9fbde04b9c"
2017-06-26 01:36:54 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
"thread_local",
2017-06-26 01:36:54 +00:00
]
2018-10-07 00:03:06 +00:00
[[package]]
name = "regex-syntax"
version = "0.6.21"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
2018-10-07 00:03:06 +00:00
[[package]]
name = "ring"
version = "0.16.19"
2017-12-07 03:44:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "024a1e66fea74c66c66624ee5622a7ff0e4b73a13b4f5c326ddb50c708944226"
2017-12-07 03:44:54 +00:00
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi 0.3.9",
2017-12-07 03:44:54 +00:00
]
2018-10-27 21:03:56 +00:00
[[package]]
name = "rocket"
version = "0.4.6"
2019-02-20 02:02:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fc7e5d6aaa32ace6893ae8a1875688ca7b07d6c2428ae88e704c3623c8866e9"
2018-10-27 21:03:56 +00:00
dependencies = [
"atty",
"base64 0.12.3",
"log 0.4.11",
"memchr",
"num_cpus",
"pear",
"rocket_codegen",
"rocket_http",
"state",
"time 0.1.44",
"toml 0.4.10",
"version_check 0.9.2",
"yansi",
2018-10-27 21:03:56 +00:00
]
[[package]]
name = "rocket_codegen"
version = "0.4.6"
2019-02-20 02:02:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "519154b16df5fe552a8f9cd76a97793a9f5d58e34f186ab79c7b29ce1d009358"
2018-10-27 21:03:56 +00:00
dependencies = [
"devise",
"glob",
"indexmap",
"quote 0.6.13",
"rocket_http",
"version_check 0.9.2",
"yansi",
2018-10-27 21:03:56 +00:00
]
2018-10-27 21:33:28 +00:00
[[package]]
name = "rocket_contrib"
version = "0.4.6"
2019-02-20 02:02:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9465babd59cfb360669b60431db510f3dc3268d51ccd69fc9264e626681e596a"
2018-10-27 21:33:28 +00:00
dependencies = [
"log 0.4.11",
"notify",
"rocket",
"serde",
"serde_json",
2018-10-27 21:33:28 +00:00
]
2018-10-27 21:03:56 +00:00
[[package]]
name = "rocket_http"
version = "0.4.6"
2019-02-20 02:02:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9d087de7203c7a60a0ed5cd3a135b552dbfbed9932c52d49d083e8629935257"
2018-10-27 21:03:56 +00:00
dependencies = [
"cookie 0.11.3",
"hyper",
"indexmap",
"pear",
"percent-encoding 1.0.1",
"smallvec",
"state",
"time 0.1.44",
"unicode-xid 0.1.0",
2018-10-27 21:03:56 +00:00
]
2018-10-07 00:03:06 +00:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2018-10-07 00:03:06 +00:00
dependencies = [
"semver",
2018-10-07 00:03:06 +00:00
]
[[package]]
name = "rustfm-scrobble"
version = "1.1.0"
2019-08-29 05:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d90702f7f49119bcec6ef26efd3f0e9ce600b2e430dc5fb65238132bd9e0f0d9"
dependencies = [
"md5",
"serde",
"serde_json",
"ureq",
"wrapped-vec",
]
[[package]]
name = "rustls"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "064fd21ff87c6e87ed4506e68beb42459caa4a0e2eb144932e6776768556980b"
dependencies = [
"base64 0.13.0",
"log 0.4.11",
"ring",
"sct",
"webpki",
]
2017-07-07 03:49:34 +00:00
[[package]]
2018-10-07 00:03:06 +00:00
name = "ryu"
2020-07-24 07:13:40 +00:00
version = "1.0.5"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2017-07-07 03:49:34 +00:00
2018-10-07 00:03:06 +00:00
[[package]]
name = "safemem"
2019-10-19 07:41:22 +00:00
version = "0.3.3"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2018-10-07 00:03:06 +00:00
2018-10-27 21:33:28 +00:00
[[package]]
name = "same-file"
2020-01-23 05:27:01 +00:00
version = "1.0.6"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2018-10-27 21:33:28 +00:00
dependencies = [
"winapi-util",
2018-10-27 21:33:28 +00:00
]
2020-01-16 05:58:37 +00:00
[[package]]
name = "scheduled-thread-pool"
2020-07-24 07:13:40 +00:00
version = "0.2.5"
2020-01-16 05:58:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f74fd1204073fa02d5d5d68bec8021be4c38690b61264b2fdb48083d0e7d7"
2020-01-16 05:58:37 +00:00
dependencies = [
"parking_lot",
2020-01-16 05:58:37 +00:00
]
2017-07-07 03:49:34 +00:00
[[package]]
name = "scopeguard"
2020-05-31 00:30:02 +00:00
version = "1.1.0"
2017-07-07 03:49:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2017-07-07 03:49:34 +00:00
2019-08-06 07:44:04 +00:00
[[package]]
name = "sct"
version = "0.6.0"
2018-10-07 00:30:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
2018-10-07 00:30:01 +00:00
dependencies = [
"ring",
"untrusted",
2018-10-07 00:30:01 +00:00
]
[[package]]
name = "sd-notify"
version = "0.1.1"
2018-10-07 00:30:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aef40838bbb143707f8309b1e92e6ba3225287592968ba6f6e3b6de4a9816486"
2018-10-07 00:30:01 +00:00
2018-10-07 00:03:06 +00:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2018-10-07 00:03:06 +00:00
dependencies = [
"semver-parser",
]
2018-10-07 00:03:06 +00:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2018-10-07 00:03:06 +00:00
[[package]]
name = "serde"
2020-12-08 08:22:16 +00:00
version = "1.0.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "06c64263859d87aa2eb554587e2d23183398d617427327cf2b3d0ed8c69e4800"
2019-08-06 07:44:04 +00:00
dependencies = [
"serde_derive",
2019-08-06 07:44:04 +00:00
]
[[package]]
2017-07-07 03:49:34 +00:00
name = "serde_derive"
2020-12-08 08:22:16 +00:00
version = "1.0.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "c84d3526699cd55261af4b941e4e725444df67aa4f9e6a3564f18030d12672df"
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
]
[[package]]
name = "serde_json"
2020-12-08 08:22:16 +00:00
version = "1.0.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "1500e84d27fe482ed1dc791a56eddc2f230046a040fa908c08bda1d9fb615779"
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
"opaque-debug 0.2.3",
]
2020-05-30 23:47:44 +00:00
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2020-05-30 23:47:44 +00:00
[[package]]
name = "sha2"
2020-05-30 23:32:34 +00:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
dependencies = [
"block-buffer 0.7.3",
"digest 0.8.1",
"fake-simd",
"opaque-debug 0.2.3",
]
2020-07-24 07:13:40 +00:00
[[package]]
name = "sha2"
version = "0.9.2"
2020-07-24 07:13:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e7aab86fe2149bad8c507606bdb3f4ef5e7b2380eb92350f56122cca72a42a8"
2020-07-24 07:13:40 +00:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if 1.0.0",
"cpuid-bool",
"digest 0.9.0",
"opaque-debug 0.3.0",
2020-07-24 07:13:40 +00:00
]
[[package]]
name = "simplelog"
2020-05-31 00:11:32 +00:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2736f58087298a448859961d3f4a0850b832e72619d75adc69da7993c2cd3c"
dependencies = [
"chrono",
"log 0.4.11",
"termcolor",
]
2017-12-07 03:44:54 +00:00
[[package]]
name = "slab"
2019-02-20 02:02:09 +00:00
version = "0.4.2"
2017-12-07 03:44:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
2017-12-07 03:44:54 +00:00
2018-10-07 00:03:06 +00:00
[[package]]
name = "smallvec"
version = "1.5.1"
2019-11-28 21:54:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75"
2019-11-28 21:54:17 +00:00
[[package]]
name = "spin"
version = "0.5.2"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2018-10-07 00:03:06 +00:00
2020-05-30 23:47:44 +00:00
[[package]]
name = "standback"
version = "0.2.13"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf906c8b8fc3f6ecd1046e01da1d8ddec83e48c8b08b84dcc02b585a6bedf5a8"
2020-07-24 07:13:40 +00:00
dependencies = [
"version_check 0.9.2",
2020-07-24 07:13:40 +00:00
]
2020-05-30 23:47:44 +00:00
2018-10-27 21:03:56 +00:00
[[package]]
name = "state"
version = "0.4.2"
2018-10-27 21:03:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3015a7d0a5fd5105c91c3710d42f9ccf0abfb287d62206484dcc67f9569a6483"
2018-10-27 21:03:56 +00:00
2020-05-30 23:47:44 +00:00
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
2020-05-30 23:47:44 +00:00
dependencies = [
"discard",
"rustc_version",
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
2020-05-30 23:47:44 +00:00
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
"serde",
"serde_derive",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
2020-05-30 23:47:44 +00:00
dependencies = [
"base-x",
"proc-macro2 1.0.24",
"quote 1.0.7",
"serde",
"serde_derive",
"serde_json",
"sha1",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2020-05-30 23:47:44 +00:00
[[package]]
name = "subtle"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee"
2020-05-30 23:32:34 +00:00
[[package]]
name = "subtle"
version = "2.3.0"
2020-05-30 23:32:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
2020-05-30 23:32:34 +00:00
[[package]]
name = "syn"
version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad"
dependencies = [
"quote 0.3.15",
"synom",
"unicode-xid 0.0.4",
]
2018-10-07 01:13:44 +00:00
[[package]]
name = "syn"
2019-09-28 22:39:33 +00:00
version = "0.15.44"
2018-10-07 01:13:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
2018-10-07 01:13:44 +00:00
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"unicode-xid 0.1.0",
2018-10-07 00:03:06 +00:00
]
2019-09-28 22:39:33 +00:00
[[package]]
name = "syn"
2020-12-08 08:22:16 +00:00
version = "1.0.54"
2019-09-28 22:39:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44"
2019-09-28 22:39:33 +00:00
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
"unicode-xid 0.2.1",
2019-09-28 22:39:33 +00:00
]
[[package]]
name = "synom"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6"
dependencies = [
"unicode-xid 0.0.4",
]
[[package]]
2020-05-31 00:11:32 +00:00
name = "termcolor"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
"winapi-util",
]
2020-01-05 00:42:28 +00:00
[[package]]
name = "thiserror"
version = "1.0.22"
2020-01-05 00:42:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
2020-01-05 00:42:28 +00:00
dependencies = [
"thiserror-impl",
2020-01-05 00:42:28 +00:00
]
[[package]]
name = "thiserror-impl"
version = "1.0.22"
2020-01-05 00:42:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
2020-01-05 00:42:28 +00:00
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
2020-01-05 00:42:28 +00:00
]
2017-06-26 01:36:54 +00:00
[[package]]
name = "thread_local"
2020-01-23 05:27:01 +00:00
version = "1.0.1"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
2017-06-26 01:36:54 +00:00
dependencies = [
2020-12-08 04:10:10 +00:00
"lazy_static",
2018-10-07 00:03:06 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "time"
version = "0.1.44"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2016-08-14 08:30:40 +00:00
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
2018-10-07 00:03:06 +00:00
]
2020-01-23 05:45:11 +00:00
[[package]]
name = "time"
version = "0.2.23"
2020-01-23 05:45:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcdaeea317915d59b2b4cd3b5efcd156c309108664277793f5351700c02ce98b"
2020-01-23 05:45:11 +00:00
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
"version_check 0.9.2",
"winapi 0.3.9",
2020-01-23 05:45:11 +00:00
]
[[package]]
name = "time-macros"
version = "0.1.1"
2020-01-23 05:45:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2020-01-23 05:45:11 +00:00
dependencies = [
"proc-macro-hack",
"time-macros-impl",
2020-01-23 05:45:11 +00:00
]
[[package]]
name = "time-macros-impl"
2020-05-30 23:47:44 +00:00
version = "0.1.1"
2020-01-23 05:45:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
2020-01-23 05:45:11 +00:00
dependencies = [
"proc-macro-hack",
"proc-macro2 1.0.24",
"quote 1.0.7",
"standback",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
2020-01-23 05:45:11 +00:00
]
2020-05-30 23:56:20 +00:00
[[package]]
name = "tinyvec"
version = "0.3.4"
2020-05-30 23:56:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
[[package]]
name = "tinyvec"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-05-30 23:56:20 +00:00
2016-08-28 22:53:39 +00:00
[[package]]
name = "toml"
2019-02-20 02:02:09 +00:00
version = "0.4.10"
2016-08-28 22:53:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
2016-08-28 22:53:39 +00:00
dependencies = [
"serde",
2016-08-28 22:53:39 +00:00
]
2019-08-06 09:25:47 +00:00
[[package]]
name = "toml"
version = "0.5.7"
2019-08-06 09:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
2019-08-06 09:25:47 +00:00
dependencies = [
"serde",
2019-08-06 09:25:47 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "traitobject"
version = "0.1.0"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079"
2016-08-14 08:30:40 +00:00
2018-10-07 00:03:06 +00:00
[[package]]
2019-08-06 07:44:04 +00:00
name = "typeable"
version = "0.1.2"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887"
2018-10-07 00:03:06 +00:00
[[package]]
name = "typenum"
2020-05-31 00:30:02 +00:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
2016-08-14 08:30:40 +00:00
[[package]]
name = "unicase"
version = "1.4.2"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33"
2016-08-14 08:30:40 +00:00
dependencies = [
"version_check 0.1.5",
2016-08-14 08:30:40 +00:00
]
[[package]]
name = "unicode-bidi"
2017-07-07 03:49:34 +00:00
version = "0.3.4"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
2016-08-14 08:30:40 +00:00
dependencies = [
"matches",
2016-08-14 08:30:40 +00:00
]
[[package]]
name = "unicode-normalization"
version = "0.1.16"
2018-10-07 00:03:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606"
2019-02-20 02:02:09 +00:00
dependencies = [
"tinyvec 1.1.0",
2019-02-20 02:02:09 +00:00
]
2018-10-07 00:03:06 +00:00
[[package]]
name = "unicode-width"
2020-07-24 07:13:40 +00:00
version = "0.1.8"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2016-08-14 08:30:40 +00:00
[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
2018-10-07 00:03:06 +00:00
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2018-10-07 00:03:06 +00:00
2019-09-28 22:39:33 +00:00
[[package]]
name = "unicode-xid"
2020-07-24 07:13:40 +00:00
version = "0.2.1"
2019-09-28 22:39:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2019-09-28 22:39:33 +00:00
2017-05-31 05:45:27 +00:00
[[package]]
2020-05-30 23:32:34 +00:00
name = "universal-hash"
version = "0.3.0"
2017-05-31 05:45:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df0c900f2f9b4116803415878ff48b63da9edb268668e08cf9292d7503114a01"
2017-05-31 05:45:27 +00:00
dependencies = [
"generic-array 0.12.3",
"subtle 2.3.0",
2017-06-26 01:36:54 +00:00
]
[[package]]
2020-05-30 23:32:34 +00:00
name = "unix-daemonize"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "531faed80732acaa13d1016c66d6a9180b5045c4fcef8daa20bb2baf46b13907"
2020-05-30 23:32:34 +00:00
dependencies = [
"libc",
2020-05-30 23:32:34 +00:00
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "ureq"
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "294b85ef5dbc3670a72e82a89971608a1fcc4ed5c7c5a2895230d31a95f0569b"
dependencies = [
"base64 0.13.0",
"chunked_transfer",
"cookie 0.14.3",
"cookie_store",
"log 0.4.11",
"once_cell",
"qstring",
"rustls",
"url 2.2.0",
"webpki",
"webpki-roots",
]
[[package]]
name = "url"
2018-11-11 07:44:20 +00:00
version = "1.7.2"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
2016-08-14 08:30:40 +00:00
dependencies = [
"idna 0.1.5",
"matches",
"percent-encoding 1.0.1",
2016-08-14 08:30:40 +00:00
]
2019-09-28 22:39:33 +00:00
[[package]]
name = "url"
version = "2.2.0"
2019-09-28 22:39:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
2019-09-28 22:39:33 +00:00
dependencies = [
"form_urlencoded",
"idna 0.2.0",
"matches",
"percent-encoding 2.1.0",
2019-09-28 22:39:33 +00:00
]
2019-10-19 07:41:22 +00:00
[[package]]
name = "uuid"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
2019-10-19 07:41:22 +00:00
2017-06-26 01:36:54 +00:00
[[package]]
name = "vcpkg"
2020-07-24 07:13:40 +00:00
version = "0.2.10"
2017-06-26 01:36:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
2017-06-26 01:36:54 +00:00
[[package]]
name = "version_check"
2018-10-07 00:03:06 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
2019-08-06 07:44:04 +00:00
[[package]]
name = "version_check"
2020-05-31 00:30:02 +00:00
version = "0.9.2"
2019-08-06 07:44:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2019-08-06 07:44:04 +00:00
2018-10-27 21:33:28 +00:00
[[package]]
name = "walkdir"
2020-01-23 05:27:01 +00:00
version = "2.3.1"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2018-10-27 21:33:28 +00:00
dependencies = [
"same-file",
"winapi 0.3.9",
"winapi-util",
2018-10-27 21:33:28 +00:00
]
2019-09-28 22:39:33 +00:00
[[package]]
name = "wasi"
2020-01-23 05:27:01 +00:00
version = "0.9.0+wasi-snapshot-preview1"
2019-09-28 22:39:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2019-09-28 22:39:33 +00:00
2020-05-30 23:47:44 +00:00
[[package]]
name = "wasm-bindgen"
2020-12-08 08:22:16 +00:00
version = "0.2.69"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "3cd364751395ca0f68cafb17666eee36b63077fb5ecd972bbcd74c90c4bf736e"
2020-05-30 23:47:44 +00:00
dependencies = [
2020-12-08 08:22:16 +00:00
"cfg-if 1.0.0",
"wasm-bindgen-macro",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "wasm-bindgen-backend"
2020-12-08 08:22:16 +00:00
version = "0.2.69"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "1114f89ab1f4106e5b55e688b828c0ab0ea593a1ea7c094b141b14cbaaec2d62"
2020-05-30 23:47:44 +00:00
dependencies = [
"bumpalo",
2020-12-08 04:10:10 +00:00
"lazy_static",
"log 0.4.11",
"proc-macro2 1.0.24",
"quote 1.0.7",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
"wasm-bindgen-shared",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "wasm-bindgen-macro"
2020-12-08 08:22:16 +00:00
version = "0.2.69"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "7a6ac8995ead1f084a8dea1e65f194d0973800c7f571f6edd70adf06ecf77084"
2020-05-30 23:47:44 +00:00
dependencies = [
"quote 1.0.7",
"wasm-bindgen-macro-support",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2020-12-08 08:22:16 +00:00
version = "0.2.69"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "b5a48c72f299d80557c7c62e37e7225369ecc0c963964059509fbafe917c7549"
2020-05-30 23:47:44 +00:00
dependencies = [
"proc-macro2 1.0.24",
"quote 1.0.7",
2020-12-08 08:22:16 +00:00
"syn 1.0.54",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-05-30 23:47:44 +00:00
]
[[package]]
name = "wasm-bindgen-shared"
2020-12-08 08:22:16 +00:00
version = "0.2.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-08 08:22:16 +00:00
checksum = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158"
[[package]]
name = "web-sys"
version = "0.3.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "222b1ef9334f92a21d3fb53dc3fd80f30836959a90f9274a626d7e06315ba3c3"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82015b7e0b8bad8185994674a13a93306bea76cf5a16c5a181382fd3a5ec2376"
dependencies = [
"webpki",
]
[[package]]
name = "weezl"
version = "0.1.3"
2020-05-30 23:47:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2bb9fc8309084dd7cd651336673844c1d47f8ef6d2091ec160b27f5c4aa277"
2020-05-30 23:47:44 +00:00
[[package]]
name = "winapi"
version = "0.2.8"
2018-01-06 22:31:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2016-08-14 08:30:40 +00:00
[[package]]
name = "winapi"
2020-07-24 07:13:40 +00:00
version = "0.3.9"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-01-06 22:31:48 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-01-06 22:31:48 +00:00
]
2016-08-14 08:30:40 +00:00
[[package]]
name = "winapi-build"
version = "0.1.1"
2018-01-06 22:31:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2016-08-14 08:30:40 +00:00
[[package]]
2018-01-06 22:31:48 +00:00
name = "winapi-i686-pc-windows-gnu"
2018-10-07 00:03:06 +00:00
version = "0.4.0"
2018-01-06 22:31:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-01-06 22:31:48 +00:00
2018-10-27 21:33:28 +00:00
[[package]]
name = "winapi-util"
2020-05-31 00:30:02 +00:00
version = "0.1.5"
2018-10-27 21:33:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-10-27 21:33:28 +00:00
dependencies = [
"winapi 0.3.9",
2018-10-27 21:33:28 +00:00
]
2018-01-06 22:31:48 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
2018-10-07 00:03:06 +00:00
version = "0.4.0"
2016-08-14 08:30:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2016-08-14 08:30:40 +00:00
[[package]]
name = "wrapped-vec"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06c29bb4abe93d1c8ef79b60f270d0efcaa6c5c97aaaaaaa0d477ea72f5f9e45"
dependencies = [
"quote 0.3.15",
"syn 0.11.11",
]
2017-07-07 03:49:34 +00:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2017-07-07 03:49:34 +00:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2017-07-07 03:49:34 +00:00
]
2019-02-20 02:02:09 +00:00
[[package]]
name = "yansi"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"
2019-02-20 02:02:09 +00:00
2020-05-30 23:32:34 +00:00
[[package]]
name = "zeroize"
version = "1.1.1"
2020-05-30 23:32:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f33972566adbd2d3588b0491eb94b98b43695c4ef897903470ede4f3f5a28a"