vmctl => trvmctl
This commit is contained in:
parent
4a8106660c
commit
f709920a73
|
@ -531,6 +531,23 @@ 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"
|
||||
|
@ -555,23 +572,6 @@ version = "0.1.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
||||
|
||||
[[package]]
|
||||
name = "vmctl"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"cfg-if",
|
||||
"clap",
|
||||
"color-eyre",
|
||||
"eyre",
|
||||
"hex",
|
||||
"indicatif",
|
||||
"nix",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "wasm-bindgen"
|
||||
version = "0.2.100"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "vmctl"
|
||||
name = "trvmctl"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# vmctl
|
||||
# trvmctl
|
||||
|
||||
VM controller for AirgapOS
|
||||
Trove VM Controller
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use clap::{Parser, Subcommand};
|
||||
use std::{path::PathBuf, str::FromStr};
|
||||
|
||||
/// VM controller for `AirgapOS`
|
||||
/// `Trove` Virtual Machine Controller.
|
||||
#[derive(Parser, Clone, Debug)]
|
||||
pub struct App {
|
||||
// global options go here
|
||||
|
|
Loading…
Reference in New Issue