diff --git a/Cargo.lock b/Cargo.lock index 1d3d8c1..fc33e01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -229,6 +229,23 @@ version = "0.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" +[[package]] +name = "guestctl" +version = "0.1.0" +dependencies = [ + "base64", + "cfg-if", + "clap", + "color-eyre", + "eyre", + "hex", + "indicatif", + "nix", + "serde", + "serde_json", + "thiserror", +] + [[package]] name = "heck" version = "0.5.0" @@ -531,23 +548,6 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "trvmctl" -version = "0.1.0" -dependencies = [ - "base64", - "cfg-if", - "clap", - "color-eyre", - "eyre", - "hex", - "indicatif", - "nix", - "serde", - "serde_json", - "thiserror", -] - [[package]] name = "unicode-ident" version = "1.0.18" diff --git a/Cargo.toml b/Cargo.toml index 7cc248c..2710b62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,9 @@ [package] -name = "trvmctl" +name = "guestctl" version = "0.1.0" edition = "2021" license = "MIT" +registry = "distrust" [features] default = ["unicode"] diff --git a/README.md b/README.md index 81cc569..701c176 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# trvmctl +# guestctl -Trove VM Controller +Guest VM Controller diff --git a/src/cli.rs b/src/cli.rs index 8e3dc15..e250207 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,7 +1,7 @@ use clap::{Parser, Subcommand}; use std::{path::PathBuf, str::FromStr}; -/// `Trove` Virtual Machine Controller. +/// Guest Virtual Machine Controller. #[derive(Parser, Clone, Debug)] pub struct App { // global options go here