stoptime-rs/Cargo.lock

1761 lines
43 KiB
Text
Raw Normal View History

2019-06-08 14:16:55 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "addr2line"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
dependencies = [
2020-07-14 16:14:29 +02:00
"gimli",
]
[[package]]
name = "adler"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
[[package]]
name = "aead"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "4cf01b9b56e767bb57b94ebf91a58b338002963785cdd7013e21c0d4679471e4"
dependencies = [
2020-07-14 16:14:29 +02:00
"generic-array",
]
[[package]]
name = "aes"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "54eb1d8fe354e5fc611daf4f2ea97dd45a765f4f1e4512306ec183ae2e8f20c9"
dependencies = [
2020-07-14 16:14:29 +02:00
"aes-soft",
"aesni",
"block-cipher-trait",
]
[[package]]
name = "aes-gcm"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "834a6bda386024dbb7c8fc51322856c10ffe69559f972261c868485f5759c638"
dependencies = [
2020-07-14 16:14:29 +02:00
"aead",
"aes",
"block-cipher-trait",
"ghash",
"subtle 2.2.3",
"zeroize",
]
[[package]]
name = "aes-soft"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "cfd7e7ae3f9a1fb5c03b389fc6bb9a51400d0c13053f0dca698c832bfd893a0d"
dependencies = [
2020-07-14 16:14:29 +02:00
"block-cipher-trait",
"byteorder",
"opaque-debug",
]
[[package]]
name = "aesni"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "2f70a6b5f971e473091ab7cfb5ffac6cde81666c4556751d8d5620ead8abf100"
dependencies = [
2020-07-14 16:14:29 +02:00
"block-cipher-trait",
"opaque-debug",
]
[[package]]
name = "aho-corasick"
version = "0.7.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
dependencies = [
2020-07-14 16:14:29 +02:00
"memchr",
]
[[package]]
name = "anyhow"
version = "1.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "85bb70cc08ec97ca5450e6eba421deeea5f172c0fc61f78b5357b2a8e8be195f"
[[package]]
name = "anymap"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344"
2019-06-08 14:16:55 +02:00
[[package]]
name = "atty"
version = "0.2.14"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"hermit-abi",
"libc",
"winapi 0.3.9",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
[[package]]
name = "backtrace"
version = "0.3.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293"
dependencies = [
2020-07-14 16:14:29 +02:00
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base64"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
dependencies = [
2020-07-14 16:14:29 +02:00
"byteorder",
"safemem",
]
2019-06-08 14:16:55 +02:00
[[package]]
name = "base64"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
name = "bincode"
version = "1.3.1"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"byteorder",
"serde",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "block-buffer"
version = "0.7.3"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"block-padding",
"byte-tools",
"byteorder",
"generic-array",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "block-cipher-trait"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "1c924d49bd09e7c06003acda26cd9742e796e34282ec6c1189404dee0c1f4774"
dependencies = [
2020-07-14 16:14:29 +02:00
"generic-array",
]
2019-06-08 14:16:55 +02:00
[[package]]
name = "block-padding"
version = "0.1.5"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
2020-07-14 16:14:29 +02:00
"byte-tools",
]
2019-06-08 14:16:55 +02:00
[[package]]
name = "boolinator"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "cfa8873f51c92e232f9bac4065cddef41b714152812bfc5f7672ba16d6ef8cd9"
[[package]]
name = "bumpalo"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2019-06-08 14:16:55 +02:00
[[package]]
name = "byteorder"
version = "1.3.4"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
2019-06-08 14:16:55 +02:00
[[package]]
name = "bytes"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2019-06-08 14:16:55 +02:00
[[package]]
name = "cc"
version = "1.0.58"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518"
2019-06-08 14:16:55 +02:00
[[package]]
name = "cfg-if"
version = "0.1.10"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2019-06-08 14:16:55 +02:00
[[package]]
name = "cfg-match"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "8100e46ff92eb85bf6dc2930c73f2a4f7176393c84a9446b3d501e1b354e7b34"
[[package]]
name = "chrono"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
dependencies = [
2020-07-14 16:14:29 +02:00
"num-integer",
"num-traits",
"serde",
"time",
]
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
dependencies = [
2020-07-14 16:14:29 +02:00
"cfg-if",
"wasm-bindgen",
]
2019-06-08 14:16:55 +02:00
[[package]]
name = "cookie"
version = "0.11.3"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "5795cda0897252e34380a27baf884c53aa7ad9990329cdad96d4c5d027015d44"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"aes-gcm",
"base64 0.12.3",
"hkdf",
"hmac",
"percent-encoding 2.1.0",
"rand",
"sha2",
"time",
]
[[package]]
name = "crypto-mac"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5"
dependencies = [
2020-07-14 16:14:29 +02:00
"generic-array",
"subtle 1.0.0",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "devise"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "74e04ba2d03c5fa0d954c061fc8c9c288badadffc272ebb87679a89846de3ed3"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"devise_codegen",
"devise_core",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "devise_codegen"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "066ceb7928ca93a9bedc6d0e612a8a0424048b0ab1f75971b203d01420c055d7"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"devise_core",
"quote 0.6.13",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "devise_core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "cf41c59b22b5e3ec0ea55c7847e5f358d340f3a8d6d53a5cf4f1564967f96487"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"bitflags",
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "diesel"
version = "1.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3e2de9deab977a153492a1468d1b1c0662c1cf39e5ea87d0c060ecd59ef18d8c"
dependencies = [
2020-07-14 16:14:29 +02:00
"byteorder",
"chrono",
"diesel_derives",
"libsqlite3-sys",
]
[[package]]
name = "diesel_derives"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
dependencies = [
2020-07-14 16:14:29 +02:00
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.34",
]
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
2020-07-14 16:14:29 +02:00
"generic-array",
]
[[package]]
name = "dotenv"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "4424bad868b0ffe6ae351ee463526ba625bbca817978293bbe6bb7dc1804a175"
dependencies = [
2020-07-14 16:14:29 +02:00
"failure",
"lazy_static",
"regex",
]
[[package]]
name = "failure"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
dependencies = [
2020-07-14 16:14:29 +02:00
"backtrace",
"failure_derive",
]
[[package]]
name = "failure_derive"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
dependencies = [
2020-07-14 16:14:29 +02:00
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.34",
"synstructure",
]
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
[[package]]
name = "filetime"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "affc17579b132fc2461adf7c575cc6e8b134ebca52c51f5411388965227dc695"
dependencies = [
2020-07-14 16:14:29 +02:00
"cfg-if",
"libc",
"redox_syscall",
"winapi 0.3.9",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "fsevent"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
dependencies = [
2020-07-14 16:14:29 +02:00
"bitflags",
"fsevent-sys",
]
[[package]]
name = "fsevent-sys"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
dependencies = [
2020-07-14 16:14:29 +02:00
"libc",
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
2020-07-14 16:14:29 +02:00
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "futures"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613"
dependencies = [
2020-07-14 16:14:29 +02:00
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5"
dependencies = [
2020-07-14 16:14:29 +02:00
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399"
[[package]]
name = "futures-executor"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314"
dependencies = [
2020-07-14 16:14:29 +02:00
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789"
[[package]]
name = "futures-macro"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39"
dependencies = [
2020-07-14 16:14:29 +02:00
"proc-macro-hack",
"proc-macro2 1.0.18",
"quote 1.0.7",
"syn 1.0.34",
]
[[package]]
name = "futures-sink"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc"
[[package]]
name = "futures-task"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626"
dependencies = [
2020-07-14 16:14:29 +02:00
"once_cell",
]
[[package]]
name = "futures-util"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6"
dependencies = [
2020-07-14 16:14:29 +02:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project",
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
[[package]]
name = "generic-array"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
dependencies = [
2020-07-14 16:14:29 +02:00
"typenum",
]
[[package]]
name = "getrandom"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
dependencies = [
2020-07-14 16:14:29 +02:00
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "ghash"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "9f0930ed19a7184089ea46d2fedead2f6dc2b674c5db4276b7da336c7cd83252"
dependencies = [
2020-07-14 16:14:29 +02:00
"polyval",
]
[[package]]
name = "gimli"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724"
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "gloo"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "68ce6f2dfa9f57f15b848efa2aade5e1850dc72986b87a2b0752d44ca08f4967"
dependencies = [
2020-07-14 16:14:29 +02:00
"gloo-console-timer",
"gloo-events",
"gloo-file",
"gloo-timers",
]
[[package]]
name = "gloo-console-timer"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "b48675544b29ac03402c6dffc31a912f716e38d19f7e74b78b7e900ec3c941ea"
dependencies = [
2020-07-14 16:14:29 +02:00
"web-sys",
]
[[package]]
name = "gloo-events"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "088514ec8ef284891c762c88a66b639b3a730134714692ee31829765c5bc814f"
dependencies = [
2020-07-14 16:14:29 +02:00
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "gloo-file"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "8f9fecfe46b5dc3cc46f58e98ba580cc714f2c93860796d002eb3527a465ef49"
dependencies = [
2020-07-14 16:14:29 +02:00
"gloo-events",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "gloo-timers"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"
dependencies = [
2020-07-14 16:14:29 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "hermit-abi"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9"
dependencies = [
2020-07-14 16:14:29 +02:00
"libc",
]
[[package]]
name = "hkdf"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "3fa08a006102488bd9cd5b8013aabe84955cf5ae22e304c2caf655b633aefae3"
dependencies = [
2020-07-14 16:14:29 +02:00
"digest",
"hmac",
]
[[package]]
name = "hmac"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "5dcb5e64cda4c23119ab41ba960d1e170a774c8e4b9d9e6a9bc18aabf5e59695"
dependencies = [
2020-07-14 16:14:29 +02:00
"crypto-mac",
"digest",
]
[[package]]
name = "http"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
dependencies = [
2020-07-14 16:14:29 +02:00
"bytes",
"fnv",
"itoa",
]
2019-06-08 14:16:55 +02:00
[[package]]
name = "httparse"
version = "1.3.4"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
2019-06-08 14:16:55 +02:00
[[package]]
name = "hyper"
version = "0.10.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"base64 0.9.3",
"httparse",
"language-tags",
"log 0.3.9",
"mime",
"num_cpus",
"time",
"traitobject",
"typeable",
"unicase",
"url",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "idna"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
2019-06-08 14:16:55 +02:00
dependencies = [
2020-07-14 16:14:29 +02:00
"matches",
"unicode-bidi",
"unicode-normalization",
2019-06-08 14:16:55 +02:00
]
[[package]]
name = "indexmap"
version = "1.4.0"
2019-06-08 14:16:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "c398b2b113b55809ceb9ee3e753fcbac793f1956663f3c36549c1346015c2afe"
dependencies = [
2020-07-14 16:14:29 +02:00
"autocfg",
]
2019-06-08 14:16:55 +02:00
[[package]]
name = "inotify"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
dependencies = [
2020-07-14 16:14:29 +02:00
"bitflags",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-14 16:14:29 +02:00
checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
dependencies = [
2020-07-14 16:14:29 +02:00
"libc",
]
[[package]]