I think I finished it...

This commit is contained in:
Cutieguwu
2026-02-15 17:39:48 -05:00
parent 0fad1b74bc
commit 79629391c5
33 changed files with 215 additions and 389 deletions

View File

@@ -8,7 +8,6 @@ description = "Raven's CLI"
repository.workspace = true
publish.workspace = true
test.workspace = true
[dependencies.clap]
version = "4.5"

View File

@@ -19,7 +19,7 @@ pub enum Command {
New {
#[clap(flatten)]
type_: ProjectFlag,
name: String,
project_name: String,
},
/// Create a new raven project in an existing directory
Init,
@@ -49,7 +49,7 @@ pub struct Assertions {
assertions: bool,
}
impl Into<bool> for Assertions {
impl Into<bool> for &Assertions {
fn into(self) -> bool {
self.assertions
}