termscp/Cargo.lock

1724 lines
42 KiB
Plaintext
Raw Normal View History

2020-11-07 17:48:41 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-01-16 16:07:11 +01:00
[[package]]
name = "aes"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
dependencies = [
"aes-soft",
"aesni",
"cipher",
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "aes-soft"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
dependencies = [
"cipher",
"opaque-debug",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "aesni"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
dependencies = [
"cipher",
"opaque-debug",
]
2020-12-01 14:38:15 +01:00
[[package]]
name = "aho-corasick"
2021-05-01 16:41:47 +02:00
version = "0.7.18"
2020-12-01 14:38:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-12-01 14:38:15 +01:00
dependencies = [
"memchr",
]
2021-05-06 21:57:04 +02:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2020-11-15 14:50:46 +01:00
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-12-15 11:13:29 +01:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-11-07 17:48:41 +01:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2020-12-16 15:46:46 +01:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2021-04-03 17:45:02 +02:00
"block-padding",
"generic-array",
2020-12-16 15:46:46 +01:00
]
[[package]]
name = "block-modes"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
dependencies = [
2021-04-03 17:45:02 +02:00
"block-padding",
2020-12-16 15:46:46 +01:00
"cipher",
]
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
2020-11-30 10:35:51 +01:00
[[package]]
name = "bumpalo"
2021-06-07 22:09:33 +02:00
version = "3.7.0"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2020-12-16 15:46:46 +01:00
[[package]]
name = "byteorder"
2021-04-03 17:45:02 +02:00
version = "1.4.3"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-12-16 15:46:46 +01:00
2020-11-29 14:53:47 +01:00
[[package]]
name = "bytesize"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81a18687293a1546b67c246452202bbbf143d239cb43494cc163da14979082da"
2020-11-07 17:48:41 +01:00
[[package]]
name = "cassowary"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
2020-11-15 14:50:46 +01:00
[[package]]
name = "cc"
2021-06-07 22:09:33 +02:00
version = "1.0.68"
2020-11-15 14:50:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
2020-11-15 14:50:46 +01:00
2020-11-07 17:48:41 +01:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-11-29 13:01:12 +01:00
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"time",
"winapi",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "chunked_transfer"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
2020-12-16 15:46:46 +01:00
[[package]]
name = "cipher"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [
2021-04-03 17:45:02 +02:00
"generic-array",
2020-12-16 15:46:46 +01:00
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
"bitflags",
]
2020-12-19 21:04:55 +01:00
[[package]]
name = "content_inspector"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
dependencies = [
"memchr",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
dependencies = [
"core-foundation-sys 0.7.0",
"libc",
]
2020-12-03 21:31:51 +01:00
[[package]]
name = "core-foundation"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
dependencies = [
2021-01-16 16:07:11 +01:00
"core-foundation-sys 0.8.2",
2020-12-03 21:31:51 +01:00
"libc",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
2020-12-03 21:31:51 +01:00
[[package]]
name = "core-foundation-sys"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
2020-12-16 15:46:46 +01:00
[[package]]
2021-05-15 18:04:51 +02:00
name = "cpufeatures"
2021-06-07 22:09:33 +02:00
version = "0.1.4"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8"
2021-05-15 18:04:51 +02:00
dependencies = [
"libc",
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "crc-any"
2021-06-07 22:09:33 +02:00
version = "2.3.11"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "b9950e91c5c444b0729f5f1b0aec76c523e01920ce828e37bccfa27803ff34e1"
2020-12-16 15:46:46 +01:00
dependencies = [
"debug-helper",
]
2021-01-24 12:04:27 +01:00
[[package]]
name = "crossterm"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c36c10130df424b2f3552fcc2ddcd9b28a27b1e54b358b45874f88d1ca6888c"
dependencies = [
"bitflags",
2021-05-03 22:24:17 +02:00
"crossterm_winapi",
2020-11-07 17:48:41 +01:00
"lazy_static",
"libc",
"mio",
2020-12-03 17:10:48 +01:00
"parking_lot 0.11.1",
2020-11-07 17:48:41 +01:00
"signal-hook",
"winapi",
]
2021-01-24 12:04:27 +01:00
[[package]]
name = "crossterm_winapi"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0da8964ace4d3e4a044fd027919b2237000b24315a37c916f61809f1ff2140b9"
dependencies = [
"winapi",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "crypto-mac"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
dependencies = [
2021-04-03 17:45:02 +02:00
"generic-array",
2021-01-16 16:07:11 +01:00
"subtle",
]
2021-05-06 21:57:04 +02:00
[[package]]
name = "ctor"
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d"
dependencies = [
"quote",
"syn",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "dbus"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4a0c10ea61042b7555729ab0608727bbbb06ce709c11e6047cfa4e10f6d052d"
dependencies = [
"libc",
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "debug-helper"
2021-04-24 11:38:28 +02:00
version = "0.3.11"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "4460596867846f73bddca51f7403b6a29f5315125be10a1640259b4db5b9494c"
2020-12-16 15:46:46 +01:00
[[package]]
name = "des"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b24e7c748888aa2fa8bce21d8c64a52efc810663285315ac7476f7197a982fae"
dependencies = [
"byteorder",
"cipher",
"opaque-debug",
]
2021-05-06 21:57:04 +02:00
[[package]]
name = "diff"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
2020-12-16 15:46:46 +01:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2021-04-03 17:45:02 +02:00
"generic-array",
2020-12-16 15:46:46 +01:00
]
2020-12-15 11:13:29 +01:00
[[package]]
name = "dirs"
2021-04-24 11:38:28 +02:00
version = "3.0.2"
2020-12-15 11:13:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
2020-12-15 11:13:29 +01:00
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
2021-04-24 11:38:28 +02:00
version = "0.3.6"
2020-12-15 11:13:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
2020-12-15 11:13:29 +01:00
dependencies = [
"libc",
"redox_users",
"winapi",
]
2020-12-19 21:04:55 +01:00
[[package]]
name = "edit"
2021-04-03 17:45:02 +02:00
version = "0.1.3"
2020-12-19 21:04:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "3cdd6936f8bd9782e28932eef853bfcd8548992ce5748bb3e7e88bad613d0ee0"
2020-12-19 21:04:55 +01:00
dependencies = [
"tempfile",
"which",
]
2021-04-03 17:45:02 +02:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-12-01 14:38:15 +01:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2021-02-28 12:33:12 +01:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
2020-12-01 14:38:15 +01:00
[[package]]
2020-12-06 22:56:40 +01:00
name = "ftp4"
2021-01-09 15:05:49 +01:00
version = "4.0.2"
2020-12-06 22:56:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-09 15:05:49 +01:00
checksum = "7e03634a7a0e74618f9adf1e088495caa54ea07e72d449813e6439ce8ac9906f"
2020-12-01 14:38:15 +01:00
dependencies = [
"chrono",
"lazy_static",
2020-12-03 21:31:51 +01:00
"native-tls",
2020-12-01 14:38:15 +01:00
"regex",
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
"version_check",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
2020-11-08 21:39:01 +01:00
[[package]]
name = "getrandom"
2021-01-09 15:05:49 +01:00
version = "0.1.16"
2020-11-08 21:39:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-09 15:05:49 +01:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-11-08 21:39:01 +01:00
dependencies = [
2021-01-09 15:05:49 +01:00
"cfg-if 1.0.0",
2020-11-08 21:39:01 +01:00
"libc",
2020-11-29 13:01:12 +01:00
"wasi 0.9.0+wasi-snapshot-preview1",
2020-11-08 21:39:01 +01:00
]
2020-12-22 18:33:38 +01:00
[[package]]
name = "getrandom"
2021-06-07 22:09:33 +02:00
version = "0.2.3"
2020-12-22 18:33:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2020-12-22 18:33:38 +01:00
dependencies = [
2021-01-09 15:05:49 +01:00
"cfg-if 1.0.0",
2020-12-22 18:33:38 +01:00
"libc",
2021-01-09 15:05:49 +01:00
"wasi 0.10.0+wasi-snapshot-preview1",
2020-12-22 18:33:38 +01:00
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "hkdf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
dependencies = [
2021-04-03 17:45:02 +02:00
"digest",
2021-01-16 16:07:11 +01:00
"hmac",
]
[[package]]
name = "hmac"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
dependencies = [
"crypto-mac",
2021-04-03 17:45:02 +02:00
"digest",
2021-01-16 16:07:11 +01:00
]
2020-12-05 16:32:16 +01:00
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "idna"
2021-04-24 11:38:28 +02:00
version = "0.2.3"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2021-02-28 12:33:12 +01:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "instant"
2020-12-03 17:10:48 +01:00
version = "0.1.9"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-03 17:10:48 +01:00
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
2020-11-07 17:48:41 +01:00
dependencies = [
"cfg-if 1.0.0",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "itoa"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2020-11-30 10:35:51 +01:00
[[package]]
name = "js-sys"
2021-05-15 18:04:51 +02:00
version = "0.3.51"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062"
2020-11-30 10:35:51 +01:00
dependencies = [
"wasm-bindgen",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "keyring"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bcd64f48199f69993c705fd2f76882e53969db93bc6345021bc8bb6462a9ffa"
dependencies = [
"byteorder",
"secret-service",
"security-framework 0.4.4",
"winapi",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2021-06-07 22:09:33 +02:00
version = "0.2.95"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36"
2020-11-07 17:48:41 +01:00
2020-11-15 14:50:46 +01:00
[[package]]
name = "libssh2-sys"
2021-04-03 17:45:02 +02:00
version = "0.2.21"
2020-11-15 14:50:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "e0186af0d8f171ae6b9c4c90ec51898bad5d08a2d5e470903a50d9ad8959cbee"
2020-11-15 14:50:46 +01:00
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
2021-05-01 16:41:47 +02:00
version = "1.1.3"
2020-11-15 14:50:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"
2020-11-15 14:50:46 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "lock_api"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
dependencies = [
"scopeguard",
]
[[package]]
name = "lock_api"
2021-05-01 16:41:47 +02:00
version = "0.4.4"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
2020-11-07 17:48:41 +01:00
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2021-04-03 17:45:02 +02:00
version = "0.4.14"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-11-07 17:48:41 +01:00
dependencies = [
2021-04-03 17:45:02 +02:00
"cfg-if 1.0.0",
2020-11-07 17:48:41 +01:00
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "magic-crypt"
2021-04-24 11:38:28 +02:00
version = "3.1.8"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "d3c94f1281833c690f81e6a00c545063b4f034509d3af6d29b58d48e39aa64c9"
2020-12-16 15:46:46 +01:00
dependencies = [
"aes-soft",
"base64",
"block-modes",
"crc-any",
"des",
2021-04-03 17:45:02 +02:00
"digest",
2020-12-16 15:46:46 +01:00
"md-5",
"sha2",
2021-04-03 17:45:02 +02:00
"tiger",
2020-12-16 15:46:46 +01:00
]
2020-12-05 16:32:16 +01:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
2021-02-28 12:33:12 +01:00
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2020-12-16 15:46:46 +01:00
[[package]]
name = "md-5"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
dependencies = [
2021-04-03 17:45:02 +02:00
"block-buffer",
"digest",
2020-12-16 15:46:46 +01:00
"opaque-debug",
]
2020-12-01 14:38:15 +01:00
[[package]]
name = "memchr"
2021-05-01 16:41:47 +02:00
version = "2.4.0"
2020-12-01 14:38:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
2020-12-01 14:38:15 +01:00
2020-11-07 17:48:41 +01:00
[[package]]
name = "mio"
2021-04-03 17:45:02 +02:00
version = "0.7.11"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956"
2020-11-07 17:48:41 +01:00
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
]
[[package]]
name = "miow"
2021-04-03 17:45:02 +02:00
version = "0.3.7"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-11-07 17:48:41 +01:00
dependencies = [
"winapi",
]
2020-12-03 21:31:51 +01:00
[[package]]
name = "native-tls"
2021-01-09 15:05:49 +01:00
version = "0.2.7"
2020-12-03 21:31:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-09 15:05:49 +01:00
checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4"
2020-12-03 21:31:51 +01:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
2021-06-07 22:09:33 +02:00
"security-framework 2.3.1",
"security-framework-sys 2.3.0",
2020-12-03 21:31:51 +01:00
"tempfile",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "num"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b7a8e9be5e039e2ff869df49155f1c06bd01ade2117ec783e56ab0932b67a8f"
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
[[package]]
name = "num-bigint"
2021-04-03 17:45:02 +02:00
version = "0.3.2"
2021-01-16 16:07:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "7d0a3d5e207573f948a9e5376662aa743a2ea13f7c50a554d7af443a73fbfeba"
2021-01-16 16:07:11 +01:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-complex"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5"
dependencies = [
"num-traits",
]
2020-11-29 13:01:12 +01:00
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "num-iter"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
dependencies = [
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
]
2020-11-29 13:01:12 +01:00
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
2021-01-24 12:04:27 +01:00
[[package]]
name = "once_cell"
2021-04-03 17:45:02 +02:00
version = "1.7.2"
2021-01-24 12:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
2021-01-24 12:04:27 +01:00
2020-12-16 15:46:46 +01:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2021-06-07 22:28:52 +02:00
[[package]]
name = "open"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1711eb4b31ce4ad35b0f316d8dfba4fe5c7ad601c448446d84aae7a896627b20"
dependencies = [
"which",
"winapi",
]
2020-12-01 14:38:15 +01:00
[[package]]
name = "openssl"
2021-05-01 16:41:47 +02:00
version = "0.10.34"
2020-12-01 14:38:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "6d7830286ad6a3973c0f1d9b73738f69c76b739301d0229c4b96501695cbe4c8"
2020-12-01 14:38:15 +01:00
dependencies = [
"bitflags",
2021-01-09 15:05:49 +01:00
"cfg-if 1.0.0",
2020-12-01 14:38:15 +01:00
"foreign-types",
"libc",
2021-04-03 17:45:02 +02:00
"once_cell",
2020-12-01 14:38:15 +01:00
"openssl-sys",
]
2020-12-03 21:31:51 +01:00
[[package]]
name = "openssl-probe"
2021-05-15 18:04:51 +02:00
version = "0.1.4"
2020-12-03 21:31:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
2020-12-03 21:31:51 +01:00
2020-11-15 14:50:46 +01:00
[[package]]
name = "openssl-sys"
2021-05-15 18:04:51 +02:00
version = "0.9.63"
2020-11-15 14:50:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "b6b0d6fb7d80f877617dfcb014e605e2b5ab2fb0afdf27935219bb6bd984cb98"
2020-11-15 14:50:46 +01:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2021-05-06 21:57:04 +02:00
[[package]]
name = "output_vt100"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
dependencies = [
"winapi",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "parking_lot"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
dependencies = [
"lock_api 0.3.4",
"parking_lot_core 0.7.2",
]
[[package]]
name = "parking_lot"
2020-12-03 17:10:48 +01:00
version = "0.11.1"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-03 17:10:48 +01:00
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
2020-11-07 17:48:41 +01:00
dependencies = [
"instant",
2021-05-01 16:41:47 +02:00
"lock_api 0.4.4",
2021-04-03 17:45:02 +02:00
"parking_lot_core 0.8.3",
2020-11-07 17:48:41 +01:00
]
[[package]]
name = "parking_lot_core"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
dependencies = [
"cfg-if 0.1.10",
2020-12-06 23:29:59 +01:00
"cloudabi",
2020-11-07 17:48:41 +01:00
"libc",
2021-01-24 12:04:27 +01:00
"redox_syscall 0.1.57",
2020-11-07 17:48:41 +01:00
"smallvec",
"winapi",
]
[[package]]
name = "parking_lot_core"
2021-04-03 17:45:02 +02:00
version = "0.8.3"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
2020-11-07 17:48:41 +01:00
dependencies = [
2020-12-06 23:29:59 +01:00
"cfg-if 1.0.0",
2020-11-07 17:48:41 +01:00
"instant",
"libc",
2021-05-15 18:04:51 +02:00
"redox_syscall 0.2.8",
2020-11-07 17:48:41 +01:00
"smallvec",
"winapi",
]
2021-04-02 22:09:58 +02:00
[[package]]
name = "path-slash"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cacbb3c4ff353b534a67fb8d7524d00229da4cb1dc8c79f4db96e375ab5b619"
2021-02-28 12:33:12 +01:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2020-11-15 14:50:46 +01:00
[[package]]
name = "pkg-config"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2020-11-08 21:39:01 +01:00
[[package]]
name = "ppv-lite86"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2021-05-06 21:57:04 +02:00
[[package]]
name = "pretty_assertions"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cab0e7c02cf376875e9335e0ba1da535775beb5450d21e1dffca068818ed98b"
dependencies = [
"ansi_term",
"ctor",
"diff",
"output_vt100",
]
2020-11-30 10:35:51 +01:00
[[package]]
name = "proc-macro2"
2021-06-07 22:09:33 +02:00
version = "1.0.27"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
2020-11-30 10:35:51 +01:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
2021-04-03 17:45:02 +02:00
version = "1.0.9"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2020-11-30 10:35:51 +01:00
dependencies = [
"proc-macro2",
]
2020-11-08 21:39:01 +01:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
2021-01-09 15:05:49 +01:00
"getrandom 0.1.16",
2020-11-08 21:39:01 +01:00
"libc",
2020-12-22 18:33:38 +01:00
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
]
[[package]]
name = "rand"
2021-04-03 17:45:02 +02:00
version = "0.8.3"
2020-12-22 18:33:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
2020-12-22 18:33:38 +01:00
dependencies = [
"libc",
"rand_chacha 0.3.0",
2021-04-03 17:45:02 +02:00
"rand_core 0.6.2",
2020-12-22 18:33:38 +01:00
"rand_hc 0.3.0",
2020-11-08 21:39:01 +01:00
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2020-12-22 18:33:38 +01:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
dependencies = [
"ppv-lite86",
2021-04-03 17:45:02 +02:00
"rand_core 0.6.2",
2020-11-08 21:39:01 +01:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-01-09 15:05:49 +01:00
"getrandom 0.1.16",
2020-12-22 18:33:38 +01:00
]
[[package]]
name = "rand_core"
2021-04-03 17:45:02 +02:00
version = "0.6.2"
2020-12-22 18:33:38 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
2020-12-22 18:33:38 +01:00
dependencies = [
2021-06-07 22:09:33 +02:00
"getrandom 0.2.3",
2020-11-08 21:39:01 +01:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2020-12-22 18:33:38 +01:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_hc"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
dependencies = [
2021-04-03 17:45:02 +02:00
"rand_core 0.6.2",
2020-11-08 21:39:01 +01:00
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2021-01-24 12:04:27 +01:00
[[package]]
name = "redox_syscall"
2021-05-15 18:04:51 +02:00
version = "0.2.8"
2021-01-24 12:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
2021-01-24 12:04:27 +01:00
dependencies = [
"bitflags",
]
2020-12-15 11:13:29 +01:00
[[package]]
name = "redox_users"
2021-04-24 11:38:28 +02:00
version = "0.4.0"
2020-12-15 11:13:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
2020-12-15 11:13:29 +01:00
dependencies = [
2021-06-07 22:09:33 +02:00
"getrandom 0.2.3",
2021-05-15 18:04:51 +02:00
"redox_syscall 0.2.8",
2020-12-15 11:13:29 +01:00
]
2020-12-01 14:38:15 +01:00
[[package]]
name = "regex"
2021-05-15 18:04:51 +02:00
version = "1.5.4"
2020-12-01 14:38:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2020-12-01 14:38:15 +01:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-05-02 12:09:32 +02:00
version = "0.6.25"
2020-12-01 14:38:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 12:09:32 +02:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2020-12-01 14:38:15 +01:00
2020-11-08 21:39:01 +01:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
2020-11-22 20:36:53 +01:00
[[package]]
name = "rpassword"
2021-01-24 12:04:27 +01:00
version = "5.0.1"
2020-11-22 20:36:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-24 12:04:27 +01:00
checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb"
2020-11-22 20:36:53 +01:00
dependencies = [
"libc",
"winapi",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "rustls"
2021-04-24 11:38:28 +02:00
version = "0.19.1"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7"
2021-02-28 12:33:12 +01:00
dependencies = [
"base64",
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "ryu"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2020-12-03 21:31:51 +01:00
[[package]]
name = "schannel"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
dependencies = [
"lazy_static",
"winapi",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2021-02-28 12:33:12 +01:00
[[package]]
name = "sct"
2021-04-24 11:38:28 +02:00
version = "0.6.1"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
2021-02-28 12:33:12 +01:00
dependencies = [
"ring",
"untrusted",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "secret-service"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d752040301c251d653aa740dec847e95767ce312cfc469bee85eb13cbf81d8a"
dependencies = [
"aes",
"block-modes",
"dbus",
"hkdf",
"lazy_static",
"num",
"rand 0.7.3",
"sha2",
]
[[package]]
name = "security-framework"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
dependencies = [
"bitflags",
"core-foundation 0.7.0",
"core-foundation-sys 0.7.0",
"libc",
"security-framework-sys 0.4.3",
]
2020-12-03 21:31:51 +01:00
[[package]]
name = "security-framework"
2021-06-07 22:09:33 +02:00
version = "2.3.1"
2020-12-03 21:31:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467"
2020-12-03 21:31:51 +01:00
dependencies = [
"bitflags",
2021-01-16 16:07:11 +01:00
"core-foundation 0.9.1",
"core-foundation-sys 0.8.2",
"libc",
2021-06-07 22:09:33 +02:00
"security-framework-sys 2.3.0",
2021-01-16 16:07:11 +01:00
]
[[package]]
name = "security-framework-sys"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
dependencies = [
"core-foundation-sys 0.7.0",
2020-12-03 21:31:51 +01:00
"libc",
]
[[package]]
name = "security-framework-sys"
2021-06-07 22:09:33 +02:00
version = "2.3.0"
2020-12-03 21:31:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "7e4effb91b4b8b6fb7732e670b6cee160278ff8e6bf485c7805d9e319d76e284"
2020-12-03 21:31:51 +01:00
dependencies = [
2021-01-16 16:07:11 +01:00
"core-foundation-sys 0.8.2",
2020-12-03 21:31:51 +01:00
"libc",
]
2020-12-15 11:13:29 +01:00
[[package]]
name = "serde"
2021-05-15 18:04:51 +02:00
version = "1.0.126"
2020-12-15 11:13:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
2020-12-15 11:13:29 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2021-05-15 18:04:51 +02:00
version = "1.0.126"
2020-12-15 11:13:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
2020-12-15 11:13:29 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "serde_json"
version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
dependencies = [
"itoa",
"ryu",
"serde",
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "sha2"
2021-05-15 18:04:51 +02:00
version = "0.9.5"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "b362ae5752fd2137731f9fa25fd4d9058af34666ca1966fb969119cc35719f12"
2020-12-16 15:46:46 +01:00
dependencies = [
2021-04-03 17:45:02 +02:00
"block-buffer",
2020-12-16 15:46:46 +01:00
"cfg-if 1.0.0",
2021-05-15 18:04:51 +02:00
"cpufeatures",
2021-04-03 17:45:02 +02:00
"digest",
2020-12-16 15:46:46 +01:00
"opaque-debug",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "signal-hook"
2021-01-09 15:05:49 +01:00
version = "0.1.17"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-09 15:05:49 +01:00
checksum = "7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729"
2020-11-07 17:48:41 +01:00
dependencies = [
"libc",
"mio",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
2021-06-07 22:09:33 +02:00
version = "1.4.0"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2020-11-07 17:48:41 +01:00
dependencies = [
"libc",
]
2021-05-16 10:36:16 +02:00
[[package]]
name = "simplelog"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59d0fe306a0ced1c88a58042dc22fc2ddd000982c26d75f6aa09a394547c41e0"
dependencies = [
"chrono",
"log",
"termcolor",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "smallvec"
2021-01-09 15:05:49 +01:00
version = "1.6.1"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-09 15:05:49 +01:00
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2020-11-07 17:48:41 +01:00
2020-12-10 10:41:13 +01:00
[[package]]
name = "smawk"
2021-04-03 17:45:02 +02:00
version = "0.3.1"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
2020-11-07 17:48:41 +01:00
2021-02-28 12:33:12 +01:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-11-15 14:50:46 +01:00
[[package]]
name = "ssh2"
2021-04-03 17:45:02 +02:00
version = "0.9.1"
2020-11-15 14:50:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "d876d4d57f6bbf2245d43f7ec53759461f801a446d3693704aa6d27b257844d7"
2020-11-15 14:50:46 +01:00
dependencies = [
"bitflags",
"libc",
"libssh2-sys",
"parking_lot 0.10.2",
]
2021-01-16 16:07:11 +01:00
[[package]]
name = "subtle"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
2020-11-30 10:35:51 +01:00
[[package]]
name = "syn"
2021-05-15 18:04:51 +02:00
version = "1.0.72"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
2020-11-30 10:35:51 +01:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
2020-11-08 21:39:01 +01:00
[[package]]
name = "tempfile"
2021-01-24 12:04:27 +01:00
version = "3.2.0"
2020-11-08 21:39:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-24 12:04:27 +01:00
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
2020-11-08 21:39:01 +01:00
dependencies = [
2021-01-24 12:04:27 +01:00
"cfg-if 1.0.0",
2020-11-08 21:39:01 +01:00
"libc",
2021-04-03 17:45:02 +02:00
"rand 0.8.3",
2021-05-15 18:04:51 +02:00
"redox_syscall 0.2.8",
2020-11-08 21:39:01 +01:00
"remove_dir_all",
"winapi",
]
2021-05-16 10:36:16 +02:00
[[package]]
name = "termcolor"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
"winapi-util",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "termscp"
2021-06-02 22:32:52 +02:00
version = "0.6.0"
2020-11-07 17:48:41 +01:00
dependencies = [
"bitflags",
2020-11-29 14:53:47 +01:00
"bytesize",
2020-11-29 13:01:12 +01:00
"chrono",
2020-12-19 21:04:55 +01:00
"content_inspector",
2021-05-03 22:24:17 +02:00
"crossterm",
2020-12-15 11:13:29 +01:00
"dirs",
2020-12-19 21:04:55 +01:00
"edit",
2020-12-06 22:56:40 +01:00
"ftp4",
2020-11-07 17:48:41 +01:00
"getopts",
2020-12-05 16:32:16 +01:00
"hostname",
2021-01-16 16:07:11 +01:00
"keyring",
2020-12-01 17:10:13 +01:00
"lazy_static",
2021-05-16 10:36:16 +02:00
"log",
2020-12-16 15:46:46 +01:00
"magic-crypt",
2021-06-07 22:28:52 +02:00
"open",
2021-04-02 22:09:58 +02:00
"path-slash",
2021-05-06 21:57:04 +02:00
"pretty_assertions",
2021-04-03 17:45:02 +02:00
"rand 0.8.3",
2020-12-01 17:10:13 +01:00
"regex",
2020-11-22 20:36:53 +01:00
"rpassword",
2020-12-15 11:13:29 +01:00
"serde",
2021-05-16 10:36:16 +02:00
"simplelog",
2020-11-15 14:50:46 +01:00
"ssh2",
2020-11-08 21:39:01 +01:00
"tempfile",
2020-12-01 12:32:33 +01:00
"textwrap",
"thiserror",
2020-12-15 11:13:29 +01:00
"toml",
2021-04-24 11:38:28 +02:00
"tuirealm",
2021-02-28 12:33:12 +01:00
"ureq",
2020-11-08 17:56:06 +01:00
"users",
2020-11-22 14:44:47 +01:00
"whoami",
2021-03-08 10:53:35 +01:00
"wildmatch",
2020-11-07 17:48:41 +01:00
]
2020-12-01 12:32:33 +01:00
[[package]]
name = "textwrap"
2021-06-07 22:09:33 +02:00
version = "0.14.0"
2020-12-01 12:32:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "f59f5365546b8424b0cc48868ae4fbbbc29a538dcc496b53543525201034f0c2"
2020-12-01 12:32:33 +01:00
dependencies = [
2020-12-10 10:41:13 +01:00
"smawk",
2021-06-07 22:09:33 +02:00
"unicode-linebreak",
2020-12-01 12:32:33 +01:00
"unicode-width",
]
[[package]]
name = "thiserror"
2021-06-07 22:09:33 +02:00
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "fa6f76457f59514c7eeb4e59d891395fab0b2fd1d40723ae737d64153392e9c6"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-06-07 22:09:33 +02:00
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "8a36768c0fbf1bb15eca10defa29526bda730a2376c2ab4393ccfa16fb1a318d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-12-01 14:38:15 +01:00
[[package]]
2021-04-03 17:45:02 +02:00
name = "tiger"
version = "0.1.0"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "443e531cbcf9de83258cfef70bcd56c91188de5819ebd4b19c85f589e0617005"
2020-12-16 15:46:46 +01:00
dependencies = [
2021-04-03 17:45:02 +02:00
"block-buffer",
"byteorder",
"digest",
2020-12-16 15:46:46 +01:00
]
2020-11-29 13:01:12 +01:00
[[package]]
name = "time"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "tinyvec"
2021-04-24 11:38:28 +02:00
version = "1.2.0"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
2021-02-28 12:33:12 +01:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-12-15 11:13:29 +01:00
[[package]]
name = "toml"
2020-12-22 18:33:38 +01:00
version = "0.5.8"
2020-12-15 11:13:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-22 18:33:38 +01:00
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
2020-12-15 11:13:29 +01:00
dependencies = [
"serde",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "tui"
2021-05-03 22:24:17 +02:00
version = "0.15.0"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-03 22:24:17 +02:00
checksum = "861d8f3ad314ede6219bcb2ab844054b1de279ee37a9bc38e3d606f9d3fb2a71"
2020-11-07 17:48:41 +01:00
dependencies = [
"bitflags",
"cassowary",
2021-05-03 22:24:17 +02:00
"crossterm",
2020-11-07 17:48:41 +01:00
"unicode-segmentation",
"unicode-width",
]
2021-04-24 11:38:28 +02:00
[[package]]
name = "tuirealm"
version = "0.4.2"
2021-04-24 11:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9897335542e4a4a87ad391419c35e54b4088661e671ba53e578fbbb1154740c2"
2021-04-24 11:38:28 +02:00
dependencies = [
2021-05-03 22:24:17 +02:00
"crossterm",
2021-04-24 11:38:28 +02:00
"textwrap",
"tui",
"unicode-width",
]
2020-12-16 15:46:46 +01:00
[[package]]
name = "typenum"
2021-04-03 17:45:02 +02:00
version = "1.13.0"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
2020-12-16 15:46:46 +01:00
2021-02-28 12:33:12 +01:00
[[package]]
name = "unicode-bidi"
2021-04-24 11:38:28 +02:00
version = "0.3.5"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
2021-02-28 12:33:12 +01:00
dependencies = [
"matches",
]
2021-06-07 22:09:33 +02:00
[[package]]
name = "unicode-linebreak"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05a31f45d18a3213b918019f78fe6a73a14ab896807f0aaf5622aa0684749455"
dependencies = [
"regex",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "unicode-normalization"
2021-06-07 22:09:33 +02:00
version = "0.1.19"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2021-02-28 12:33:12 +01:00
dependencies = [
"tinyvec",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "unicode-segmentation"
2020-12-03 17:10:48 +01:00
version = "1.7.1"
2020-11-07 17:48:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-03 17:10:48 +01:00
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
2020-11-07 17:48:41 +01:00
[[package]]
name = "unicode-width"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2020-11-30 10:35:51 +01:00
[[package]]
name = "unicode-xid"
2021-05-01 16:41:47 +02:00
version = "0.2.2"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-11-30 10:35:51 +01:00
2021-02-28 12:33:12 +01:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "ureq"
2021-05-01 16:41:47 +02:00
version = "2.1.1"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-01 16:41:47 +02:00
checksum = "2475a6781e9bc546e7b64f4013d2f4032c8c6a40fcffd7c6f4ee734a890972ab"
2021-02-28 12:33:12 +01:00
dependencies = [
"base64",
"chunked_transfer",
"log",
"once_cell",
"rustls",
"serde",
"serde_json",
"url",
"webpki",
"webpki-roots",
]
[[package]]
name = "url"
2021-05-15 18:04:51 +02:00
version = "2.2.2"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2021-02-28 12:33:12 +01:00
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
2020-11-08 17:56:06 +01:00
[[package]]
name = "users"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
dependencies = [
"libc",
"log",
]
2020-11-15 14:50:46 +01:00
[[package]]
name = "vcpkg"
2021-06-07 22:09:33 +02:00
version = "0.2.13"
2020-11-15 14:50:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-07 22:09:33 +02:00
checksum = "025ce40a007e1907e58d5bc1a594def78e5573bb0b1160bc389634e8f12e4faa"
2020-11-15 14:50:46 +01:00
2020-12-16 15:46:46 +01:00
[[package]]
name = "version_check"
2021-04-03 17:45:02 +02:00
version = "0.9.3"
2020-12-16 15:46:46 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-12-16 15:46:46 +01:00
2020-11-08 21:39:01 +01:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-11-29 13:01:12 +01:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2020-11-30 10:35:51 +01:00
[[package]]
name = "wasm-bindgen"
2021-05-15 18:04:51 +02:00
version = "0.2.74"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd"
2020-11-30 10:35:51 +01:00
dependencies = [
2020-12-03 17:10:48 +01:00
"cfg-if 1.0.0",
2020-11-30 10:35:51 +01:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-05-15 18:04:51 +02:00
version = "0.2.74"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900"
2020-11-30 10:35:51 +01:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2021-05-15 18:04:51 +02:00
version = "0.2.74"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4"
2020-11-30 10:35:51 +01:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-05-15 18:04:51 +02:00
version = "0.2.74"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97"
2020-11-30 10:35:51 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-05-15 18:04:51 +02:00
version = "0.2.74"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f"
2020-11-30 10:35:51 +01:00
[[package]]
name = "web-sys"
2021-05-15 18:04:51 +02:00
version = "0.3.51"
2020-11-30 10:35:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-15 18:04:51 +02:00
checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582"
2020-11-30 10:35:51 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-02-28 12:33:12 +01:00
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2021-04-03 17:45:02 +02:00
version = "0.21.1"
2021-02-28 12:33:12 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "aabe153544e473b775453675851ecc86863d2a81d786d741f6b76778f2a48940"
2021-02-28 12:33:12 +01:00
dependencies = [
"webpki",
]
2020-12-19 21:04:55 +01:00
[[package]]
name = "which"
2021-04-03 17:45:02 +02:00
version = "4.1.0"
2020-12-19 21:04:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-03 17:45:02 +02:00
checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
2020-12-19 21:04:55 +01:00
dependencies = [
2021-04-03 17:45:02 +02:00
"either",
2020-12-19 21:04:55 +01:00
"libc",
]
2020-11-22 14:44:47 +01:00
[[package]]
name = "whoami"
2021-04-24 11:38:28 +02:00
version = "1.1.2"
2020-11-22 14:44:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "4abacf325c958dfeaf1046931d37f2a901b6dfe0968ee965a29e94c6766b2af6"
2020-11-30 10:35:51 +01:00
dependencies = [
"wasm-bindgen",
"web-sys",
]
2020-11-22 14:44:47 +01:00
2021-03-08 10:53:35 +01:00
[[package]]
name = "wildmatch"
2021-04-24 11:38:28 +02:00
version = "2.1.0"
2021-03-08 10:53:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-24 11:38:28 +02:00
checksum = "d6c48bd20df7e4ced539c12f570f937c6b4884928a87fee70a479d72f031d4e0"
2021-03-08 10:53:35 +01:00
2020-11-07 17:48:41 +01:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2021-05-16 10:36:16 +02:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2020-11-07 17:48:41 +01:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"