From 1f449dc7e97db34c4aa4cf08eb7cc6269905709f Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Mon, 22 Jan 2024 13:59:58 +0100 Subject: [PATCH] Rework some details (env var, cargo desc) --- Cargo.toml | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 06eef6f..a865170 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.0" authors = ["Alex Auvolat ", "Quentin Dufour "] edition = "2021" license = "EUPL-1.2" -description = "Encrypted mail storage over Garage" +description = "A robust email server" [dependencies] # async runtime diff --git a/src/main.rs b/src/main.rs index 3baa8e2..a7462bc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,7 +33,7 @@ struct Args { #[clap(long)] dev: bool, - #[clap(short, long, env = "CONFIG_FILE", default_value = "aerogramme.toml")] + #[clap(short, long, env = "AEROGRAMME_CONFIG", default_value = "aerogramme.toml")] /// Path to the main Aerogramme configuration file config_file: PathBuf, }