Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/generator/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ const CARGO_FILE: &str = "Cargo.toml";
#[derive(Debug, Clone, Parser)]
pub struct StrategyParser {
/// The root directory of the new project.
#[clap(value_hint = ValueHint::DirPath, default_value = "crates/strategies/")]
#[arg(value_hint = ValueHint::DirPath, default_value = "crates/strategies/")]
root: PathBuf,

#[clap(long, short)]
#[arg(long, short)]
strategy_name: String,
}

Expand Down