diff options
Diffstat (limited to 'cli/src/args.rs')
| -rw-r--r-- | cli/src/args.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cli/src/args.rs b/cli/src/args.rs index d794347c..8c16e14e 100644 --- a/cli/src/args.rs +++ b/cli/src/args.rs @@ -12,13 +12,14 @@ pub struct CliArguments { pub command: Command, /// Add additional directories to search for fonts - #[clap(long = "font-path", env = "TYPST_FONT_PATHS", value_name = "DIR", action = ArgAction::Append)] + #[clap( + long = "font-path", + env = "TYPST_FONT_PATHS", + value_name = "DIR", + action = ArgAction::Append, + )] pub font_paths: Vec<PathBuf>, - /// Configure the root for absolute paths - #[clap(long = "root", env = "TYPST_ROOT", value_name = "DIR")] - pub root: Option<PathBuf>, - /// Sets the level of logging verbosity: /// -v = warning & error, -vv = info, -vvv = debug, -vvvv = trace #[clap(short, long, action = ArgAction::Count)] |
