wasm-demo/Cargo.lock

2184 lines
53 KiB
Plaintext
Raw Normal View History

2019-09-28 10:42:51 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "adler"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
2019-09-28 10:42:51 +03:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "arrayref"
version = "0.3.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
2019-09-28 10:42:51 +03:00
[[package]]
name = "arrayvec"
2020-09-13 16:34:07 +03:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "async-stream"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22068c0c19514942eefcfd4daf8976ef1aad84e61539f95cd200c35202f80af5"
dependencies = [
"async-stream-impl",
"futures-core",
]
[[package]]
name = "async-stream-impl"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25f9db3b38af870bf7e5cc649167533b493928e50744e2c30ae350230b414670"
dependencies = [
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
]
2020-06-22 11:29:36 +03:00
[[package]]
name = "async-task"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17772156ef2829aadc587461c7753af20b7e8db1529bc66855add962a3b35d3"
2019-09-28 10:42:51 +03:00
[[package]]
2020-09-13 16:34:07 +03:00
name = "autocfg"
version = "1.0.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2019-09-28 10:42:51 +03:00
2020-07-09 12:37:35 +03:00
[[package]]
name = "base-x"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b20b618342cf9891c292c4f5ac2cde7287cc5c87e87e9c769d617793607dec1"
2019-12-03 13:25:49 +02:00
[[package]]
name = "base64"
2020-07-13 19:00:13 +03:00
version = "0.12.3"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 19:00:13 +03:00
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
2019-12-03 13:25:49 +02:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "bincode"
2020-09-13 16:34:07 +03:00
version = "1.3.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "f30d3a39baa26f9651f17b375061f3233dde33424a8b72b0dbe93a68a0bc896d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"byteorder",
"serde",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "bitflags"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5"
2019-09-28 10:42:51 +03:00
[[package]]
name = "bitflags"
2020-02-09 19:52:00 +02:00
version = "1.2.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-09-28 10:42:51 +03:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "blake2b_simd"
version = "0.5.10"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"arrayref",
2020-09-13 16:34:07 +03:00
"arrayvec",
2020-05-29 15:52:18 +03:00
"constant_time_eq",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2019-09-28 10:42:51 +03:00
[[package]]
2020-07-09 12:37:35 +03:00
name = "bumpalo"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-09 12:37:35 +03:00
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
2019-09-28 10:42:51 +03:00
[[package]]
name = "byteorder"
2020-02-09 19:52:00 +02:00
version = "1.3.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
2019-09-28 10:42:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "bytes"
2020-09-13 16:34:07 +03:00
version = "0.5.6"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2019-09-28 10:42:51 +03:00
[[package]]
name = "cc"
2020-09-13 16:34:07 +03:00
version = "1.0.59"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "66120af515773fb005778dc07c261bd201ec8ce50bd6e7144c927753fe013381"
dependencies = [
"jobserver",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "cfg-if"
2020-02-09 19:52:00 +02:00
version = "0.1.10"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2019-09-28 10:42:51 +03:00
[[package]]
name = "chrono"
2020-09-13 16:34:07 +03:00
version = "0.4.15"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "942f72db697d8767c22d46a598e01f2d3b475501ea43d0db4f16d90259182d0b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"num-integer",
"num-traits",
"time",
2019-09-28 10:42:51 +03:00
]
2020-06-07 18:02:20 +03:00
[[package]]
name = "clap"
2020-09-13 16:34:07 +03:00
version = "2.33.3"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2020-06-07 18:02:20 +03:00
dependencies = [
"bitflags 1.2.1",
2020-06-07 18:02:20 +03:00
"textwrap",
"unicode-width",
]
[[package]]
2020-07-09 12:37:35 +03:00
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-09 12:37:35 +03:00
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
dependencies = [
2020-07-09 12:37:35 +03:00
"cfg-if",
"wasm-bindgen",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "constant_time_eq"
2020-02-09 19:52:00 +02:00
version = "0.1.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2019-09-28 10:42:51 +03:00
[[package]]
name = "core-foundation"
2020-05-29 15:52:18 +03:00
version = "0.7.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"core-foundation-sys",
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "core-foundation-sys"
2020-05-29 15:52:18 +03:00
version = "0.7.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
2019-09-28 10:42:51 +03:00
[[package]]
name = "crc32fast"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
dependencies = [
"cfg-if",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "crossbeam"
2020-02-09 19:52:00 +02:00
version = "0.7.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "69323bff1fb41c635347b8ead484a5ca6c3f11914d784170b158d8449ab07f8e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-channel"
2020-09-13 16:34:07 +03:00
version = "0.4.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"crossbeam-utils",
"maybe-uninit",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-deque"
2020-05-29 15:52:18 +03:00
version = "0.7.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"crossbeam-epoch",
"crossbeam-utils",
"maybe-uninit",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-epoch"
2020-05-29 15:52:18 +03:00
version = "0.8.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
"cfg-if",
"crossbeam-utils",
"lazy_static",
"maybe-uninit",
"memoffset",
"scopeguard",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-queue"
2020-09-13 16:34:07 +03:00
version = "0.2.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"crossbeam-utils",
2020-09-13 16:34:07 +03:00
"maybe-uninit",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-utils"
2020-05-29 15:52:18 +03:00
version = "0.7.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
"cfg-if",
"lazy_static",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "curl"
2020-09-13 16:34:07 +03:00
version = "0.4.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "78baca05127a115136a9898e266988fc49ca7ea2c839f60fc6e1fc9df1599168"
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
"socket2",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
]
[[package]]
name = "curl-sys"
2020-09-13 16:34:07 +03:00
version = "0.4.36+curl-7.71.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "68cad94adeb0c16558429c3c34a607acc9ea58e09a7b66310aabc9788fc5d721"
dependencies = [
"cc",
"libc",
"libnghttp2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "data-encoding"
2020-09-13 16:34:07 +03:00
version = "2.3.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "d4d0e2d24e5ee3b23a01de38eefdcd978907890701f08ffffd4cb457ca4ee8d6"
2019-09-28 10:42:51 +03:00
[[package]]
name = "dbus"
version = "0.8.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cd9e78c210146a1860f897db03412fd5091fd73100778e43ee255cca252cf32"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
"libdbus-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "dirs"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
"redox_users",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
2020-07-09 12:37:35 +03:00
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2019-09-28 10:42:51 +03:00
[[package]]
name = "encoding"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding-index-japanese",
"encoding-index-korean",
"encoding-index-simpchinese",
"encoding-index-singlebyte",
"encoding-index-tradchinese",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-japanese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-korean"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-simpchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-singlebyte"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-tradchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding_index_tests"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
2019-09-28 10:42:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "encoding_rs"
2020-09-13 16:34:07 +03:00
version = "0.8.24"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "a51b8cf747471cb9499b6d59e59b0444f4c90eba8968c4e44874e92b5b64ace2"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
2019-09-28 10:42:51 +03:00
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2019-10-07 16:42:44 +03:00
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2019-10-07 16:42:44 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "filetime"
2020-09-13 16:34:07 +03:00
version = "0.2.12"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "3ed85775dcc68644b5c950ac06a2b23768d3bc9390464151aaf27136998dcf9e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"libc",
"redox_syscall",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "flate2"
2020-09-13 16:34:07 +03:00
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "766d0e77a2c1502169d4a93ff3b8c15a71fd946cd0126309752104e5f3c46d94"
dependencies = [
"cfg-if",
"crc32fast",
"libc",
"miniz_oxide",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "fnv"
2020-05-29 15:52:18 +03:00
version = "1.0.7"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-09-28 10:42:51 +03:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"foreign-types-shared",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-09-28 10:42:51 +03:00
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fsevent"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
2019-09-28 10:42:51 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"fsevent-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fsevent-sys"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2019-09-28 10:42:51 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"fuchsia-zircon-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2019-09-28 10:42:51 +03:00
2020-06-22 11:29:36 +03:00
[[package]]
name = "futures"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-channel"
2020-05-29 15:52:18 +03:00
version = "0.3.5"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"futures-core",
2020-06-22 11:29:36 +03:00
"futures-sink",
2019-12-03 13:25:49 +02:00
]
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-core"
2020-05-29 15:52:18 +03:00
version = "0.3.5"
2020-02-09 19:52:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399"
2020-02-09 19:52:00 +02:00
2020-06-22 11:29:36 +03:00
[[package]]
name = "futures-executor"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2020-02-09 19:52:00 +02:00
[[package]]
name = "futures-io"
2020-05-29 15:52:18 +03:00
version = "0.3.5"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789"
2019-12-03 13:25:49 +02:00
2020-06-22 11:29:36 +03:00
[[package]]
name = "futures-macro"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39"
dependencies = [
"proc-macro-hack",
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
2020-06-22 11:29:36 +03:00
]
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-sink"
2020-05-29 15:52:18 +03:00
version = "0.3.5"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc"
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-task"
2020-05-29 15:52:18 +03:00
version = "0.3.5"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626"
dependencies = [
"once_cell",
]
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-util"
2020-05-29 15:52:18 +03:00
version = "0.3.5"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-06-22 11:29:36 +03:00
"futures-channel",
2020-05-29 15:52:18 +03:00
"futures-core",
"futures-io",
2020-06-22 11:29:36 +03:00
"futures-macro",
"futures-sink",
2020-05-29 15:52:18 +03:00
"futures-task",
2020-06-06 23:22:26 +03:00
"memchr",
2020-05-29 15:52:18 +03:00
"pin-project",
"pin-utils",
2020-06-22 11:29:36 +03:00
"proc-macro-hack",
"proc-macro-nested",
2020-05-29 15:52:18 +03:00
"slab",
2019-12-03 13:25:49 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "getrandom"
2020-09-13 16:34:07 +03:00
version = "0.1.15"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"libc",
2020-07-09 12:37:35 +03:00
"stdweb",
2020-09-13 16:34:07 +03:00
"wasi 0.9.0+wasi-snapshot-preview1",
2020-07-09 12:37:35 +03:00
"wasm-bindgen",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "hashbrown"
2020-09-13 16:34:07 +03:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "00d63df3d41950fb462ed38308eea019113ad1508da725bbedcd0fa5a85ef5f7"
2020-06-07 18:02:20 +03:00
[[package]]
name = "heck"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
dependencies = [
"unicode-segmentation",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "hermit-abi"
2020-09-13 16:34:07 +03:00
version = "0.1.15"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "http"
2020-05-29 15:52:18 +03:00
version = "0.2.1"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"bytes",
"fnv",
"itoa",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "indexmap"
2020-09-13 16:34:07 +03:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
dependencies = [
"autocfg",
"hashbrown",
"serde",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "inotify"
2020-06-06 23:22:26 +03:00
version = "0.7.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-06 23:22:26 +03:00
checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
2019-09-28 10:42:51 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"inotify-sys",
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "inotify-sys"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "iovec"
2020-02-09 19:52:00 +02:00
version = "0.1.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "isahc"
2020-09-13 16:34:07 +03:00
version = "0.9.8"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "4c7ae3a678e7d3bf240bfecc3ffda276db5db61e160c7639a196a1d944b2a5d4"
dependencies = [
"bytes",
"crossbeam-channel",
"crossbeam-utils",
"curl",
"curl-sys",
"encoding_rs",
"futures-channel",
"futures-io",
"futures-util",
"http",
"lazy_static",
"log",
"mime",
"serde",
"serde_json",
"slab",
"sluice",
"tracing",
"tracing-futures",
]
2019-09-28 10:42:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "itoa"
2020-09-13 16:34:07 +03:00
version = "0.4.6"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
[[package]]
name = "jobserver"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
dependencies = [
"libc",
]
2019-12-03 13:25:49 +02:00
2020-07-09 12:37:35 +03:00
[[package]]
name = "js-sys"
version = "0.3.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca059e81d9486668f12d455a4ea6daa600bd408134cd17e3d3fb5a32d1f016f8"
dependencies = [
"wasm-bindgen",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi 0.2.8",
"winapi-build",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-09-28 10:42:51 +03:00
[[package]]
name = "lazycell"
2020-09-13 16:34:07 +03:00
version = "1.3.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2019-09-28 10:42:51 +03:00
[[package]]
name = "lexical-core"
2020-09-13 16:34:07 +03:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "db65c6da02e61f55dae90a0ae427b2a5f6b3e8db09f58d10efab23af92592616"
dependencies = [
2020-09-13 16:34:07 +03:00
"arrayvec",
"bitflags 1.2.1",
"cfg-if",
"ryu",
"static_assertions",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "libc"
2020-09-13 16:34:07 +03:00
version = "0.2.77"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "f2f96b10ec2560088a8e76961b00d47107b3a625fecb76dedb29ee7ccbf98235"
2019-09-28 10:42:51 +03:00
[[package]]
name = "libdbus-sys"
2020-02-09 19:52:00 +02:00
version = "0.2.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "dc12a3bc971424edbbf7edaf6e5740483444db63aa8e23d3751ff12a30f306f0"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"pkg-config",
2019-09-28 10:42:51 +03:00
]
2020-02-26 14:18:00 +02:00
[[package]]
name = "libloading"
2020-09-13 16:34:07 +03:00
version = "0.6.3"
2020-02-26 14:18:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "2443d8f0478b16759158b2f66d525991a05491138bc05814ef52a250148ef4f9"
2020-02-26 14:18:00 +02:00
dependencies = [
2020-09-13 16:34:07 +03:00
"cfg-if",
"winapi 0.3.9",
2020-02-26 14:18:00 +02:00
]
[[package]]
name = "libnghttp2-sys"
version = "0.1.4+1.41.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03624ec6df166e79e139a2310ca213283d6b3c30810c54844f307086d4488df1"
dependencies = [
"cc",
"libc",
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "libsqlite3-sys"
2020-08-28 00:24:43 +03:00
version = "0.20.0"
2019-10-07 16:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-28 00:24:43 +03:00
checksum = "e3a245984b1b06c291f46e27ebda9f369a94a1ab8461d0e845e23f9ced01f5db"
2019-10-07 16:42:44 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"pkg-config",
"vcpkg",
2019-10-07 16:42:44 +03:00
]
[[package]]
name = "libz-sys"
2020-09-13 16:34:07 +03:00
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "linked-hash-map"
2020-05-29 15:52:18 +03:00
version = "0.5.3"
2019-10-07 16:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
2019-10-07 16:42:44 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "linkify"
2020-05-29 15:52:18 +03:00
version = "0.4.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "03951527dd24d2c59f407502e7d88e0948ef06fac23335b556a4c2bc03c22096"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-06-06 23:22:26 +03:00
"memchr",
2019-12-03 13:25:49 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "log"
2020-09-13 16:34:07 +03:00
version = "0.4.11"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
2019-09-28 10:42:51 +03:00
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
2019-10-07 16:42:44 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"linked-hash-map",
2019-10-07 16:42:44 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "mac-notification-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3dfb6b71a9a89cd38b395d994214297447e8e63b1ba5708a9a2b0b1048ceda76"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cc",
"chrono",
"dirs",
"objc-foundation",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
2020-05-29 15:52:18 +03:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2019-12-03 13:25:49 +02:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "meli"
2020-08-02 01:25:06 +03:00
version = "0.6.1"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-06-22 11:29:36 +03:00
"async-task",
2020-05-29 15:52:18 +03:00
"bincode",
"bitflags 1.2.1",
2020-07-09 12:37:35 +03:00
"console_error_panic_hook",
2020-05-29 15:52:18 +03:00
"crossbeam",
2020-06-22 11:29:36 +03:00
"futures",
"indexmap",
2020-07-09 12:37:35 +03:00
"js-sys",
2020-05-29 15:52:18 +03:00
"libc",
"linkify",
"melib",
"nix",
"notify",
"notify-rust",
"num_cpus",
"pcre2",
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
2020-05-29 15:52:18 +03:00
"rmp",
"rmp-serde",
"rmpv",
"serde",
"serde_derive",
"serde_json",
"smallvec",
2020-06-07 18:02:20 +03:00
"structopt",
"svg",
2020-09-13 16:34:07 +03:00
"syn 1.0.40",
2020-05-29 15:52:18 +03:00
"toml",
"unicode-segmentation",
"uuid",
2020-07-09 12:37:35 +03:00
"wasm-bindgen",
"wasm-bindgen-test",
"web-sys",
"wee_alloc",
2020-05-29 15:52:18 +03:00
"xdg",
"xdg-utils",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "melib"
2020-08-02 01:25:06 +03:00
version = "0.6.1"
2019-09-28 10:42:51 +03:00
dependencies = [
"async-stream",
2020-09-13 16:34:07 +03:00
"base64",
2020-05-29 15:52:18 +03:00
"bincode",
"bitflags 1.2.1",
2020-07-09 12:37:35 +03:00
"console_error_panic_hook",
2020-05-29 15:52:18 +03:00
"crossbeam",
"data-encoding",
"encoding",
"flate2",
2020-06-22 11:29:36 +03:00
"futures",
"indexmap",
"isahc",
2020-07-09 12:37:35 +03:00
"js-sys",
2020-05-29 15:52:18 +03:00
"libc",
"libloading",
"memmap",
"native-tls",
"nix",
2020-06-06 23:22:26 +03:00
"nom",
2020-05-29 15:52:18 +03:00
"notify",
2020-05-30 15:35:51 +03:00
"rusqlite",
2020-05-29 15:52:18 +03:00
"serde",
"serde_derive",
"serde_json",
"smallvec",
"unicode-segmentation",
"uuid",
2020-07-09 12:37:35 +03:00
"wasm-bindgen",
"wee_alloc",
2020-05-29 15:52:18 +03:00
"xdg",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "memchr"
2020-05-29 15:52:18 +03:00
version = "2.3.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
2019-09-28 10:42:51 +03:00
[[package]]
name = "memmap"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "46f3c7359028b31999287dae4e5047ddfe90a23b7dca2282ce759b491080c99b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"fs2",
"kernel32-sys",
"libc",
"winapi 0.2.8",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "memoffset"
2020-09-13 16:34:07 +03:00
version = "0.5.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "c198b026e1bbf08a937e94c6c60f9ec4a2267f5b0d2eec9c1b21b061ce2be55f"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
2019-09-28 10:42:51 +03:00
]
2020-07-09 12:37:35 +03:00
[[package]]
name = "memory_units"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
2019-12-03 13:25:49 +02:00
[[package]]
name = "mime"
2020-02-09 19:52:00 +02:00
version = "0.3.16"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2019-12-03 13:25:49 +02:00
[[package]]
name = "miniz_oxide"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c60c0dfe32c10b43a144bad8fc83538c52f58302c92300ea7ec7bf7b38d5a7b9"
dependencies = [
"adler",
"autocfg",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "mio"
2020-05-29 15:52:18 +03:00
version = "0.6.22"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "mio-extras"
2020-02-09 19:52:00 +02:00
version = "2.0.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"lazycell",
"log",
"mio",
"slab",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "native-tls"
2020-05-29 15:52:18 +03:00
version = "0.2.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "net2"
2020-09-13 16:34:07 +03:00
version = "0.2.35"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"libc",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "nix"
2020-05-29 15:52:18 +03:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"cc",
"cfg-if",
"libc",
"void",
]
[[package]]
name = "nom"
2020-09-13 16:34:07 +03:00
version = "5.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
dependencies = [
"lexical-core",
2020-06-06 23:22:26 +03:00
"memchr",
"version_check",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "notify"
2020-02-09 19:52:00 +02:00
version = "4.0.15"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "80ae4a7688d1fab81c5bf19c64fc8db920be8d519ce6336ed4e7efe024724dbd"
2019-09-28 10:42:51 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"filetime",
"fsevent",
"fsevent-sys",
"inotify",
"libc",
"mio",
"mio-extras",
"walkdir",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "notify-rust"
version = "4.0.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "144acee6a0543dc74893e4b8a33936b5b0a94cc2d4ab024afd0c6daff7afc3c0"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"dbus",
"mac-notification-sys",
"winrt-notification",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "num-integer"
2020-09-13 16:34:07 +03:00
version = "0.1.43"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
"num-traits",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "num-traits"
2020-09-13 16:34:07 +03:00
version = "0.2.12"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
2019-09-28 10:42:51 +03:00
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "num_cpus"
2020-05-29 15:52:18 +03:00
version = "1.13.0"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"hermit-abi",
"libc",
2019-12-03 13:25:49 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "objc"
2020-02-09 19:52:00 +02:00
version = "0.2.7"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"malloc_buf",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"block",
"objc",
"objc_id",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"objc",
2019-09-28 10:42:51 +03:00
]
2020-05-29 15:52:18 +03:00
[[package]]
name = "once_cell"
2020-09-13 16:34:07 +03:00
version = "1.4.1"
2020-05-29 15:52:18 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad"
2020-05-29 15:52:18 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "openssl"
2020-09-13 16:34:07 +03:00
version = "0.10.30"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4"
2019-09-28 10:42:51 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"cfg-if",
"foreign-types",
"lazy_static",
"libc",
"openssl-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "openssl-probe"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
2019-09-28 10:42:51 +03:00
[[package]]
name = "openssl-sys"
2020-06-06 23:22:26 +03:00
version = "0.9.58"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-06 23:22:26 +03:00
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "pcre2"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85b30f2f69903b439dd9dc9e824119b82a55bf113b29af8d70948a03c1b11ab1"
dependencies = [
"libc",
"log",
"pcre2-sys",
"thread_local",
]
[[package]]
name = "pcre2-sys"
2020-09-13 16:34:07 +03:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "dec30e5e9ec37eb8fbf1dea5989bc957fd3df56fbee5061aa7b7a99dbb37b722"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "pin-project"
2020-09-13 16:34:07 +03:00
version = "0.4.23"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "ca4433fff2ae79342e497d9f8ee990d174071408f28f726d6d83af93e58e48aa"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"pin-project-internal",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "pin-project-internal"
2020-09-13 16:34:07 +03:00
version = "0.4.23"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "2c0e815c3ee9a031fdf5af21c10aa17c573c9c6a566328d99e3936c34e36461f"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "pin-utils"
2020-05-29 15:52:18 +03:00
version = "0.1.0"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-12-03 13:25:49 +02:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "pkg-config"
2020-09-13 16:34:07 +03:00
version = "0.3.18"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33"
2019-09-28 10:42:51 +03:00
[[package]]
name = "ppv-lite86"
2020-09-13 16:34:07 +03:00
version = "0.2.9"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20"
2019-09-28 10:42:51 +03:00
2020-06-07 18:02:20 +03:00
[[package]]
name = "proc-macro-error"
2020-09-13 16:34:07 +03:00
version = "1.0.4"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2020-06-07 18:02:20 +03:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
2020-06-07 18:02:20 +03:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-09-13 16:34:07 +03:00
version = "1.0.4"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-06-07 18:02:20 +03:00
dependencies = [
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
2020-06-07 18:02:20 +03:00
"version_check",
]
2020-06-22 11:29:36 +03:00
[[package]]
name = "proc-macro-hack"
2020-09-13 16:34:07 +03:00
version = "0.5.18"
2020-06-22 11:29:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598"
2020-06-22 11:29:36 +03:00
[[package]]
name = "proc-macro-nested"
2020-09-13 16:34:07 +03:00
version = "0.1.6"
2020-06-22 11:29:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
2020-06-22 11:29:36 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "proc-macro2"
2020-09-13 16:34:07 +03:00
version = "1.0.21"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "36e28516df94f3dd551a587da5357459d9b36d945a7c37c3557928c1c2ff2a2c"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-09-13 16:34:07 +03:00
"unicode-xid 0.2.1",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "quote"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
2019-12-03 13:25:49 +02:00
[[package]]
name = "quote"
2020-09-13 16:34:07 +03:00
version = "1.0.7"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "rand"
2020-02-09 19:52:00 +02:00
version = "0.7.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"getrandom",
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
2019-09-28 10:42:51 +03:00
]
2019-10-20 11:02:03 +03:00
[[package]]
name = "rand_chacha"
2020-05-29 15:52:18 +03:00
version = "0.2.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"ppv-lite86",
"rand_core",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"getrandom",
2019-10-20 11:02:03 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"rand_core",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "redox_syscall"
2020-09-13 16:34:07 +03:00
version = "0.1.57"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2019-09-28 10:42:51 +03:00
[[package]]
name = "redox_users"
2020-09-13 16:34:07 +03:00
version = "0.3.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"getrandom",
"redox_syscall",
"rust-argon2",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "remove_dir_all"
2020-09-13 16:34:07 +03:00
version = "0.5.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
2019-12-23 17:08:57 +02:00
[[package]]
name = "rmp"
2020-02-09 19:52:00 +02:00
version = "0.8.9"
2019-12-23 17:08:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "0f10b46df14cf1ee1ac7baa4d2fbc2c52c0622a4b82fa8740e37bc452ac0184f"
2019-12-23 17:08:57 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"byteorder",
"num-traits",
2019-12-23 17:08:57 +02:00
]
[[package]]
name = "rmp-serde"
2020-09-13 16:34:07 +03:00
version = "0.14.4"
2019-12-23 17:08:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "4ce7d70c926fe472aed493b902010bccc17fa9f7284145cb8772fd22fdb052d8"
2019-12-23 17:08:57 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"byteorder",
"rmp",
"serde",
2019-12-23 17:08:57 +02:00
]
[[package]]
name = "rmpv"
2020-09-13 16:34:07 +03:00
version = "0.4.5"
2019-12-23 17:08:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "ee358f3c4be83ab373cd3e501dc04881034f1ae198e73b2d9edd617653ac4293"
2019-12-23 17:08:57 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"num-traits",
"rmp",
"serde",
"serde_bytes",
2019-12-23 17:08:57 +02:00
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "rusqlite"
2020-08-28 00:24:43 +03:00
version = "0.24.0"
2019-10-07 16:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-28 00:24:43 +03:00
checksum = "4c78c3275d9d6eb684d2db4b2388546b32fdae0586c20a82f3905d21ea78b9ef"
2019-10-07 16:42:44 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"fallible-iterator",
"fallible-streaming-iterator",
"libsqlite3-sys",
"lru-cache",
2020-06-06 23:22:26 +03:00
"memchr",
2020-08-28 00:24:43 +03:00
"smallvec",
2019-10-07 16:42:44 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "rust-argon2"
2020-09-13 16:34:07 +03:00
version = "0.8.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "9dab61250775933275e84053ac235621dfb739556d5c54a2f2e9313b7cf43a19"
2020-02-09 19:52:00 +02:00
dependencies = [
2020-09-13 16:34:07 +03:00
"base64",
2020-05-29 15:52:18 +03:00
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
2019-09-28 10:42:51 +03:00
]
2020-07-09 12:37:35 +03:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "ryu"
2020-06-06 23:22:26 +03:00
version = "1.0.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-06 23:22:26 +03:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2019-09-28 10:42:51 +03:00
[[package]]
name = "same-file"
2020-02-09 19:52:00 +02:00
version = "1.0.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi-util",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "schannel"
2020-05-29 15:52:18 +03:00
version = "0.1.19"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"lazy_static",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2019-09-28 10:42:51 +03:00
[[package]]
name = "scopeguard"
2020-05-29 15:52:18 +03:00
version = "1.1.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-09-28 10:42:51 +03:00
[[package]]
name = "security-framework"
2020-05-29 15:52:18 +03:00
version = "0.4.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
2019-09-28 10:42:51 +03:00
dependencies = [
"bitflags 1.2.1",
2020-05-29 15:52:18 +03:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "security-framework-sys"
2020-05-29 15:52:18 +03:00
version = "0.4.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"core-foundation-sys",
"libc",
2019-09-28 10:42:51 +03:00
]
2020-07-09 12:37:35 +03:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
"semver-parser",
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2019-09-28 10:42:51 +03:00
[[package]]
2020-05-29 15:52:18 +03:00
name = "serde"
2020-09-13 16:34:07 +03:00
version = "1.0.116"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "96fe57af81d28386a513cbc6858332abc6117cfdb5999647c6444b8f43a370a5"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"serde_derive",
2019-09-28 10:42:51 +03:00
]
2019-12-27 15:20:02 +02:00
[[package]]
name = "serde_bytes"
2020-09-13 16:34:07 +03:00
version = "0.11.5"
2019-12-27 15:20:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
2019-12-27 15:20:02 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"serde",
2019-12-27 15:20:02 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "serde_derive"
2020-09-13 16:34:07 +03:00
version = "1.0.116"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "f630a6370fd8e457873b4bd2ffdae75408bc291ba72be773772a4c2a065d9ae8"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "serde_json"
2020-09-13 16:34:07 +03:00
version = "1.0.57"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"itoa",
"ryu",
"serde",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2019-09-28 10:42:51 +03:00
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
2019-09-28 10:42:51 +03:00
[[package]]
name = "sluice"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed13b7cb46f13a15db2c4740f087a848acc8b31af89f95844d40137451f89b1"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "smallvec"
2020-09-13 16:34:07 +03:00
version = "1.4.2"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252"
dependencies = [
2020-05-29 15:52:18 +03:00
"serde",
]
2019-12-03 13:25:49 +02:00
2020-06-06 23:22:26 +03:00
[[package]]
name = "socket2"
2020-09-13 16:34:07 +03:00
version = "0.3.15"
2020-06-06 23:22:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "b1fa70dc5c8104ec096f4fe7ede7a221d35ae13dcd19ba1ad9a81d2cab9a1c44"
2020-06-06 23:22:26 +03:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2020-06-06 23:22:26 +03:00
]
[[package]]
name = "static_assertions"
2020-09-13 16:34:07 +03:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2020-07-09 12:37:35 +03:00
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version",
"serde",
"serde_json",
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote 1.0.7",
"serde",
"serde_derive",
"syn 1.0.40",
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote 1.0.7",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn 1.0.40",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2020-06-07 18:02:20 +03:00
[[package]]
name = "structopt"
2020-09-13 16:34:07 +03:00
version = "0.3.17"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "6cc388d94ffabf39b5ed5fadddc40147cb21e605f53db6f8f36a625d27489ac5"
2020-06-07 18:02:20 +03:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
2020-09-13 16:34:07 +03:00
version = "0.4.10"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "5e2513111825077552a6751dfad9e11ce0fba07d7276a3943a037d7e93e64c5f"
2020-06-07 18:02:20 +03:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
]
[[package]]
name = "strum"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ca6e4730f517e041e547ffe23d29daab8de6b73af4b6ae2a002108169f5e7da"
[[package]]
name = "strum_macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3384590878eb0cab3b128e844412e2d010821e7e091211b9d87324173ada7db8"
dependencies = [
"quote 0.3.15",
"syn 0.11.11",
2020-06-07 18:02:20 +03:00
]
[[package]]
name = "svg"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b65a64d32a41db2a8081aa03c1ccca26f246ff681add693f8b01307b137da79"
[[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",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "syn"
2020-09-13 16:34:07 +03:00
version = "1.0.40"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "963f7d3cc59b59b9325165add223142bbf1df27655d07789f109896d353d8350"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"unicode-xid 0.2.1",
]
[[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",
2020-06-07 18:02:20 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "tempfile"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cfg-if",
"libc",
"rand",
"redox_syscall",
"remove_dir_all",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
2020-06-07 18:02:20 +03:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thread_local"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
dependencies = [
"lazy_static",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "time"
2020-09-13 16:34:07 +03:00
version = "0.1.44"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2020-09-13 16:34:07 +03:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "toml"
version = "0.5.6"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
2019-12-03 13:25:49 +02:00
dependencies = [
"indexmap",
2020-05-29 15:52:18 +03:00
"serde",
2019-12-03 13:25:49 +02:00
]
2020-08-28 00:24:43 +03:00
[[package]]
name = "tools"
version = "0.4.1"
dependencies = [
"melib",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "tracing"
2020-09-13 16:34:07 +03:00
version = "0.1.19"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "6d79ca061b032d6ce30c660fded31189ca0b9922bf483cd70759f13a2d86786c"
dependencies = [
"cfg-if",
"log",
"tracing-attributes",
"tracing-core",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "tracing-attributes"
2020-09-13 16:34:07 +03:00
version = "0.1.11"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
2019-12-03 13:25:49 +02:00
dependencies = [
"proc-macro2",
2020-09-13 16:34:07 +03:00
"quote 1.0.7",
"syn 1.0.40",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "tracing-core"
2020-09-13 16:34:07 +03:00
version = "0.1.16"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "5bcf46c1f1f06aeea2d6b81f3c863d0930a596c86ad1920d4e5bad6dd1d7119a"
2019-12-03 13:25:49 +02:00
dependencies = [
"lazy_static",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "tracing-futures"
version = "0.2.4"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c"
2019-12-03 13:25:49 +02:00
dependencies = [
"pin-project",
"tracing",
2019-12-03 13:25:49 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "unicode-segmentation"
2020-02-09 19:52:00 +02:00
version = "1.6.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
2019-09-28 10:42:51 +03:00
2020-06-07 18:02:20 +03:00
[[package]]
name = "unicode-width"
2020-09-13 16:34:07 +03:00
version = "0.1.8"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2020-06-07 18:02:20 +03:00
[[package]]
name = "unicode-xid"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc"
2019-12-03 13:25:49 +02:00
[[package]]
name = "unicode-xid"
2020-09-13 16:34:07 +03:00
version = "0.2.1"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2019-12-03 13:25:49 +02:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "uuid"
2020-05-29 15:52:18 +03:00
version = "0.8.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"rand",
"serde",
"sha1",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "vcpkg"
2020-09-13 16:34:07 +03:00
version = "0.2.10"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
2019-09-28 10:42:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "version_check"
2020-05-29 15:52:18 +03:00
version = "0.9.2"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2019-12-03 13:25:49 +02:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2019-09-28 10:42:51 +03:00
[[package]]
name = "walkdir"
2020-02-09 19:52:00 +02:00
version = "2.3.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"same-file",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2020-05-29 15:52:18 +03:00
"winapi-util",
2019-09-28 10:42:51 +03:00
]
2020-02-09 19:52:00 +02:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-02-09 19:52:00 +02:00
2020-09-13 16:34:07 +03:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
2020-07-09 12:37:35 +03:00
name = "wasm-bindgen"
version = "0.2.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-09 12:37:35 +03:00
checksum = "1ac64ead5ea5f05873d7c12b545865ca2b8d28adfc50a49b84770a3a97265d42"
dependencies = [
2020-07-09 12:37:35 +03:00
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f22b422e2a757c35a73774860af8e112bff612ce6cb604224e8e47641a9e4f68"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote 1.0.7",
"syn 1.0.40",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7866cab0aa01de1edf8b5d7936938a7e397ee50ce24119aef3e1eaa3b6171da"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b13312a745c08c469f0b292dd2fcd6411dba5f7160f593da6ef69b64e407038"
dependencies = [
"quote 1.0.7",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f249f06ef7ee334cc3b8ff031bfc11ec99d00f34d86da7498396dc1e3b1498fe"
dependencies = [
"proc-macro2",
"quote 1.0.7",
"syn 1.0.40",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307"
[[package]]
name = "wasm-bindgen-test"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34d1cdc8b98a557f24733d50a1199c4b0635e465eecba9c45b214544da197f64"
dependencies = [
"console_error_panic_hook",
"js-sys",
"scoped-tls",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-bindgen-test-macro",
]
[[package]]
name = "wasm-bindgen-test-macro"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8fb9c67be7439ee8ab1b7db502a49c05e51e2835b66796c705134d9b8e1a585"
dependencies = [
"proc-macro2",
"quote 1.0.7",
]
[[package]]
name = "web-sys"
version = "0.3.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bf6ef87ad7ae8008e15a355ce696bed26012b7caa21605188cfd8214ab51e2d"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "wee_alloc"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
dependencies = [
"cfg-if",
"libc",
"memory_units",
"winapi 0.3.9",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi"
2020-09-13 16:34:07 +03:00
version = "0.3.9"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi-util"
2020-05-29 15:52:18 +03:00
version = "0.1.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winrt"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e30cba82e22b083dc5a422c2ee77e20dc7927271a0dc981360c57c1453cb48d"
dependencies = [
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
]
[[package]]
name = "winrt-notification"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c31a65da50d792c6f9bd2e3216249566c4fb1d2d34f9b7d2d66d2e93f62a242"
dependencies = [
"strum",
"strum_macros",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
"winrt",
"xml-rs",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi 0.2.8",
"winapi-build",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "xdg"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"
2019-09-28 10:42:51 +03:00
[[package]]
name = "xdg-utils"
2020-09-13 16:34:07 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "d6c275db8f4249f393a5c4de777ebeba37a5859bc2209a30fb66dc566dddd3ce"
[[package]]
name = "xml-rs"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1945e12e16b951721d7976520b0832496ef79c31602c7a29d950de79ba74621"
dependencies = [
"bitflags 0.9.1",
]