cargo sqlx prepare: fix to consistently trigger recompile

This commit is contained in:
Austin Bonander
2020-05-19 20:50:02 -07:00
committed by Ryan Leckey
parent 119167e13a
commit 1bdc3e9057
3 changed files with 12 additions and 10 deletions

View File

@@ -37,7 +37,8 @@ pub enum Command {
#[structopt(long)]
check: bool,
/// Any arguments to pass to `cargo check`.
/// Any arguments to pass to `cargo rustc`;
/// Cargo args (preceding `--` in `cargo rustc ... -- ...`) only.
#[structopt(name = "Cargo args", last = true)]
cargo_args: Vec<String>,
},