652 lines
17 KiB
Diff
652 lines
17 KiB
Diff
|
From 893ee8e76cc8b4096c84fe3a537e312304ce214b Mon Sep 17 00:00:00 2001
|
||
|
From: Maximilian Bosch <maximilian@mbosch.me>
|
||
|
Date: Wed, 11 Mar 2020 22:32:47 +0100
|
||
|
Subject: [PATCH] Generate lockfile for cargo-update v3.0.0
|
||
|
|
||
|
---
|
||
|
Cargo.lock | 632 +++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||
|
1 file changed, 632 insertions(+)
|
||
|
create mode 100644 Cargo.lock
|
||
|
|
||
|
diff --git a/Cargo.lock b/Cargo.lock
|
||
|
new file mode 100644
|
||
|
index 000000000..0b3a75632
|
||
|
--- /dev/null
|
||
|
+++ b/Cargo.lock
|
||
|
@@ -0,0 +1,632 @@
|
||
|
+# This file is automatically @generated by Cargo.
|
||
|
+# It is not intended for manual editing.
|
||
|
+[[package]]
|
||
|
+name = "aho-corasick"
|
||
|
+version = "0.7.10"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
|
||
|
+dependencies = [
|
||
|
+ "memchr",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "ansi_term"
|
||
|
+version = "0.11.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
||
|
+dependencies = [
|
||
|
+ "winapi",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "array_tool"
|
||
|
+version = "1.0.3"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "8f8cb5d814eb646a863c4f24978cff2880c4be96ad8cde2c0f0678732902e271"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "arrayref"
|
||
|
+version = "0.3.6"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "arrayvec"
|
||
|
+version = "0.5.1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "atty"
|
||
|
+version = "0.2.14"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
||
|
+dependencies = [
|
||
|
+ "hermit-abi",
|
||
|
+ "libc",
|
||
|
+ "winapi",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "autocfg"
|
||
|
+version = "1.0.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "base64"
|
||
|
+version = "0.11.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "bitflags"
|
||
|
+version = "1.2.1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "blake2b_simd"
|
||
|
+version = "0.5.10"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
|
||
|
+dependencies = [
|
||
|
+ "arrayref",
|
||
|
+ "arrayvec",
|
||
|
+ "constant_time_eq",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "cargo-update"
|
||
|
+version = "3.0.0"
|
||
|
+dependencies = [
|
||
|
+ "array_tool",
|
||
|
+ "clap",
|
||
|
+ "dirs",
|
||
|
+ "embed-resource",
|
||
|
+ "git2",
|
||
|
+ "hex",
|
||
|
+ "json",
|
||
|
+ "lazy_static",
|
||
|
+ "lazysort",
|
||
|
+ "regex",
|
||
|
+ "semver",
|
||
|
+ "serde",
|
||
|
+ "serde_derive",
|
||
|
+ "tabwriter",
|
||
|
+ "toml",
|
||
|
+ "unicode-normalization",
|
||
|
+ "url",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "cc"
|
||
|
+version = "1.0.50"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
|
||
|
+dependencies = [
|
||
|
+ "jobserver",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "cfg-if"
|
||
|
+version = "0.1.10"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "clap"
|
||
|
+version = "2.33.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9"
|
||
|
+dependencies = [
|
||
|
+ "ansi_term",
|
||
|
+ "atty",
|
||
|
+ "bitflags",
|
||
|
+ "strsim",
|
||
|
+ "textwrap",
|
||
|
+ "unicode-width",
|
||
|
+ "vec_map",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "constant_time_eq"
|
||
|
+version = "0.1.5"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "crossbeam-utils"
|
||
|
+version = "0.7.2"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
|
||
|
+dependencies = [
|
||
|
+ "autocfg",
|
||
|
+ "cfg-if",
|
||
|
+ "lazy_static",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "dirs"
|
||
|
+version = "2.0.2"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
|
||
|
+dependencies = [
|
||
|
+ "cfg-if",
|
||
|
+ "dirs-sys",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "dirs-sys"
|
||
|
+version = "0.3.4"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "afa0b23de8fd801745c471deffa6e12d248f962c9fd4b4c33787b055599bde7b"
|
||
|
+dependencies = [
|
||
|
+ "cfg-if",
|
||
|
+ "libc",
|
||
|
+ "redox_users",
|
||
|
+ "winapi",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "embed-resource"
|
||
|
+version = "1.3.2"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "8398b939acbb266ade6939090e9f634147e7b426a33054a833d9ec935d814882"
|
||
|
+dependencies = [
|
||
|
+ "vswhom",
|
||
|
+ "winreg",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "getrandom"
|
||
|
+version = "0.1.14"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
|
||
|
+dependencies = [
|
||
|
+ "cfg-if",
|
||
|
+ "libc",
|
||
|
+ "wasi",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "git2"
|
||
|
+version = "0.11.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "77519ef7c5beee314d0804d4534f01e0f9e8d9acdee2b7a48627e590b27e0ec4"
|
||
|
+dependencies = [
|
||
|
+ "bitflags",
|
||
|
+ "libc",
|
||
|
+ "libgit2-sys",
|
||
|
+ "log",
|
||
|
+ "openssl-probe",
|
||
|
+ "openssl-sys",
|
||
|
+ "url",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "hermit-abi"
|
||
|
+version = "0.1.8"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "1010591b26bbfe835e9faeabeb11866061cc7dcebffd56ad7d0942d0e61aefd8"
|
||
|
+dependencies = [
|
||
|
+ "libc",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "hex"
|
||
|
+version = "0.4.2"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "idna"
|
||
|
+version = "0.2.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
|
||
|
+dependencies = [
|
||
|
+ "matches",
|
||
|
+ "unicode-bidi",
|
||
|
+ "unicode-normalization",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "jobserver"
|
||
|
+version = "0.1.21"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
|
||
|
+dependencies = [
|
||
|
+ "libc",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "json"
|
||
|
+version = "0.11.15"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "92c245af8786f6ac35f95ca14feca9119e71339aaab41e878e7cdd655c97e9e5"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "lazy_static"
|
||
|
+version = "1.4.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "lazysort"
|
||
|
+version = "0.2.1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "d0e22ff43b231e0e2f87d74984e53ebc73b90ae13397e041214fb07efc64168f"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "libc"
|
||
|
+version = "0.2.67"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "eb147597cdf94ed43ab7a9038716637d2d1bf2bc571da995d0028dec06bd3018"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "libgit2-sys"
|
||
|
+version = "0.10.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "d9ec6bca50549d34a392611dde775123086acbd994e3fff64954777ce2dc2e51"
|
||
|
+dependencies = [
|
||
|
+ "cc",
|
||
|
+ "libc",
|
||
|
+ "libssh2-sys",
|
||
|
+ "libz-sys",
|
||
|
+ "openssl-sys",
|
||
|
+ "pkg-config",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "libssh2-sys"
|
||
|
+version = "0.2.16"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "7bb70f29dc7c31d32c97577f13f41221af981b31248083e347b7f2c39225a6bc"
|
||
|
+dependencies = [
|
||
|
+ "cc",
|
||
|
+ "libc",
|
||
|
+ "libz-sys",
|
||
|
+ "openssl-sys",
|
||
|
+ "pkg-config",
|
||
|
+ "vcpkg",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "libz-sys"
|
||
|
+version = "1.0.25"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"
|
||
|
+dependencies = [
|
||
|
+ "cc",
|
||
|
+ "libc",
|
||
|
+ "pkg-config",
|
||
|
+ "vcpkg",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "log"
|
||
|
+version = "0.4.8"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
|
||
|
+dependencies = [
|
||
|
+ "cfg-if",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "matches"
|
||
|
+version = "0.1.8"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "maybe-uninit"
|
||
|
+version = "2.0.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "memchr"
|
||
|
+version = "2.3.3"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "openssl-probe"
|
||
|
+version = "0.1.2"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "openssl-sys"
|
||
|
+version = "0.9.54"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986"
|
||
|
+dependencies = [
|
||
|
+ "autocfg",
|
||
|
+ "cc",
|
||
|
+ "libc",
|
||
|
+ "pkg-config",
|
||
|
+ "vcpkg",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "percent-encoding"
|
||
|
+version = "2.1.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "pkg-config"
|
||
|
+version = "0.3.17"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "proc-macro2"
|
||
|
+version = "1.0.9"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "6c09721c6781493a2a492a96b5a5bf19b65917fe6728884e7c44dd0c60ca3435"
|
||
|
+dependencies = [
|
||
|
+ "unicode-xid",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "quote"
|
||
|
+version = "1.0.3"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "2bdc6c187c65bca4260c9011c9e3132efe4909da44726bad24cf7572ae338d7f"
|
||
|
+dependencies = [
|
||
|
+ "proc-macro2",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "redox_syscall"
|
||
|
+version = "0.1.56"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "redox_users"
|
||
|
+version = "0.3.4"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431"
|
||
|
+dependencies = [
|
||
|
+ "getrandom",
|
||
|
+ "redox_syscall",
|
||
|
+ "rust-argon2",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "regex"
|
||
|
+version = "1.3.4"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "322cf97724bea3ee221b78fe25ac9c46114ebb51747ad5babd51a2fc6a8235a8"
|
||
|
+dependencies = [
|
||
|
+ "aho-corasick",
|
||
|
+ "memchr",
|
||
|
+ "regex-syntax",
|
||
|
+ "thread_local",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "regex-syntax"
|
||
|
+version = "0.6.16"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "1132f845907680735a84409c3bebc64d1364a5683ffbce899550cd09d5eaefc1"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "rust-argon2"
|
||
|
+version = "0.7.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
|
||
|
+dependencies = [
|
||
|
+ "base64",
|
||
|
+ "blake2b_simd",
|
||
|
+ "constant_time_eq",
|
||
|
+ "crossbeam-utils",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "semver"
|
||
|
+version = "0.9.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
||
|
+dependencies = [
|
||
|
+ "semver-parser",
|
||
|
+ "serde",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "semver-parser"
|
||
|
+version = "0.7.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "serde"
|
||
|
+version = "1.0.104"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "serde_derive"
|
||
|
+version = "1.0.104"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
|
||
|
+dependencies = [
|
||
|
+ "proc-macro2",
|
||
|
+ "quote",
|
||
|
+ "syn",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "smallvec"
|
||
|
+version = "0.6.13"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
|
||
|
+dependencies = [
|
||
|
+ "maybe-uninit",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "strsim"
|
||
|
+version = "0.8.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "syn"
|
||
|
+version = "1.0.16"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "123bd9499cfb380418d509322d7a6d52e5315f064fe4b3ad18a53d6b92c07859"
|
||
|
+dependencies = [
|
||
|
+ "proc-macro2",
|
||
|
+ "quote",
|
||
|
+ "unicode-xid",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "tabwriter"
|
||
|
+version = "1.2.1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "36205cfc997faadcc4b0b87aaef3fbedafe20d38d4959a7ca6ff803564051111"
|
||
|
+dependencies = [
|
||
|
+ "unicode-width",
|
||
|
+]
|
||
|
+
|
||
|
+[[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",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "toml"
|
||
|
+version = "0.5.6"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
|
||
|
+dependencies = [
|
||
|
+ "serde",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "unicode-bidi"
|
||
|
+version = "0.3.4"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
|
||
|
+dependencies = [
|
||
|
+ "matches",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "unicode-normalization"
|
||
|
+version = "0.1.9"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf"
|
||
|
+dependencies = [
|
||
|
+ "smallvec",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "unicode-width"
|
||
|
+version = "0.1.7"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "unicode-xid"
|
||
|
+version = "0.2.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "url"
|
||
|
+version = "2.1.1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
|
||
|
+dependencies = [
|
||
|
+ "idna",
|
||
|
+ "matches",
|
||
|
+ "percent-encoding",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "vcpkg"
|
||
|
+version = "0.2.8"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "3fc439f2794e98976c88a2a2dafce96b930fe8010b0a256b3c2199a773933168"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "vec_map"
|
||
|
+version = "0.8.1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "vswhom"
|
||
|
+version = "0.1.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
|
||
|
+dependencies = [
|
||
|
+ "libc",
|
||
|
+ "vswhom-sys",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "vswhom-sys"
|
||
|
+version = "0.1.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "fc2f5402d3d0e79a069714f7b48e3ecc60be7775a2c049cb839457457a239532"
|
||
|
+dependencies = [
|
||
|
+ "cc",
|
||
|
+ "libc",
|
||
|
+]
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "wasi"
|
||
|
+version = "0.9.0+wasi-snapshot-preview1"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "winapi"
|
||
|
+version = "0.3.8"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
|
||
|
+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"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "winapi-x86_64-pc-windows-gnu"
|
||
|
+version = "0.4.0"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||
|
+
|
||
|
+[[package]]
|
||
|
+name = "winreg"
|
||
|
+version = "0.6.2"
|
||
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
+checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
|
||
|
+dependencies = [
|
||
|
+ "winapi",
|
||
|
+]
|
||
|
--
|
||
|
2.25.0
|
||
|
|