trvmctl => guestctl

This commit is contained in:
Ryan Heywood 2025-05-12 16:57:35 -04:00
parent 7dee69f35b
commit 988b59cfdb
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
4 changed files with 6 additions and 5 deletions

2
Cargo.lock generated
View File

@ -532,7 +532,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "trvmctl" name = "guestctl"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"base64", "base64",

View File

@ -1,8 +1,9 @@
[package] [package]
name = "trvmctl" name = "guestctl"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
registry = "distrust"
[features] [features]
default = ["unicode"] default = ["unicode"]

View File

@ -1,3 +1,3 @@
# trvmctl # guestctl
Trove VM Controller Guest VM Controller

View File

@ -1,7 +1,7 @@
use clap::{Parser, Subcommand}; use clap::{Parser, Subcommand};
use std::{path::PathBuf, str::FromStr}; use std::{path::PathBuf, str::FromStr};
/// `Trove` Virtual Machine Controller. /// Guest Virtual Machine Controller.
#[derive(Parser, Clone, Debug)] #[derive(Parser, Clone, Debug)]
pub struct App { pub struct App {
// global options go here // global options go here