summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-07-25 09:54:20 +0300
committerLars Wirzenius <liw@liw.fi>2021-07-25 11:37:57 +0300
commit77a7d5a0fec242b929f62295a1b7d8e7700bfc35 (patch)
treeb716a12f7362b529a86a004390f988bbb27b2b6c /Cargo.lock
parentad881807180977c9346f3cfd42c9c5f51913e04e (diff)
downloadvmadm-77a7d5a0fec242b929f62295a1b7d8e7700bfc35.tar.gz
test: verify that "vmadm config" works
Sponsored-by: author
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock26
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index afe30bb..8af831c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
+version = 3
+
[[package]]
name = "aho-corasick"
version = "0.7.15"
@@ -147,6 +149,12 @@ dependencies = [
]
[[package]]
+name = "itoa"
+version = "0.4.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
+
+[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -336,6 +344,12 @@ dependencies = [
]
[[package]]
+name = "ryu"
+version = "1.0.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
+
+[[package]]
name = "serde"
version = "1.0.123"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -356,6 +370,17 @@ dependencies = [
]
[[package]]
+name = "serde_json"
+version = "1.0.64"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
+dependencies = [
+ "itoa",
+ "ryu",
+ "serde",
+]
+
+[[package]]
name = "serde_yaml"
version = "0.8.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -524,6 +549,7 @@ dependencies = [
"log",
"pretty_env_logger",
"serde",
+ "serde_json",
"serde_yaml",
"shell-words",
"structopt",