You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Exit early if no plugin initializes successfully.
- Moved the log CLI arguments to the bottom and simplified argument help messages.
- Further `TaskTracker` adoption.
- Moved plugin `Uuid` into `AvailablePlugin`.
- Moved service registration functions into service sub modules.
- Temporarily removed the old deregistration implementation.
- Naming and ordering consistency.
#[arg(default_value = "./config.yaml", short, long, value_name = "FILE PATH", help = "The path to the program its configuration file", long_help = None)]
31
28
pubconfig_file:PathBuf,
32
29
33
-
#[arg(default_value = "./.env", short, long, value_name = "FILE PATH", help = "The path to an env file, used by the program its configuration file for env var interpolation", long_help = None)]
30
+
#[arg(default_value = "./.env", short, long, value_name = "FILE PATH", help = "The path to the program its env file", long_help = None)]
34
31
pubenv_file:PathBuf,
35
32
36
33
#[arg(default_value = "./plugins", short, long, value_name = "DIRECTORY PATH", help = "The path to the program its plugin directory", long_help = None)]
@@ -41,6 +38,9 @@ pub struct Cli {
41
38
42
39
#[arg(default_value_t = false, short, long, help = "Run in restricted mode, in this case plugin permissions are opt in", long_help = None)]
0 commit comments