Compare commits

...

2 Commits

Author SHA1 Message Date
minish 0d176bca40
--config is now a required switch 2023-12-08 13:08:38 -05:00
minish a0ffd1ddd1
bump rust version 2023-12-07 23:38:21 -05:00
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# builder
FROM rust:1.73 as builder
FROM rust:1.74 as builder
WORKDIR /usr/src/breeze
COPY . .

View File

@ -21,7 +21,8 @@ mod view;
#[derive(Parser, Debug)]
struct Args {
/// The path to configuration file
config: Option<PathBuf>,
#[arg(short, long, value_name = "file")]
config: PathBuf,
}
#[tokio::main]
@ -30,7 +31,7 @@ async fn main() {
let args = Args::parse();
// read & parse config
let config_str = fs::read_to_string(args.config.unwrap_or("./breeze.toml".into()))
let config_str = fs::read_to_string(args.config)
.await
.expect("failed to read config file! make sure it exists and you have read permissions");