build: ⬆️ Upgrade dependencies and bump version

This commit is contained in:
Sergio Gasquez
2023-02-13 15:48:20 +01:00
parent abec7e4c6f
commit 1869ed15f2
3 changed files with 207 additions and 23 deletions

View File

@ -10,18 +10,18 @@ use rocket::{response::content, State};
extern crate rocket;
#[derive(Parser, Debug, Clone)]
#[clap(author, version, about, long_about = None)]
#[command(author, version, about, long_about = None)]
struct Args {
/// chip name
#[clap(short, long)]
#[arg(short, long)]
chip: Chip,
/// path to bootloader
#[clap(short, long)]
#[arg(short, long)]
bootloader: Option<PathBuf>,
/// path to partition table csv
#[clap(short, long)]
#[arg(short, long)]
partition_table: Option<PathBuf>,
elf: PathBuf,