Bump clap version

This time use an exact version requirement since it would otherwise be
upgraded to later betas automatically.
This commit is contained in:
Jonas Platte
2020-09-30 19:04:14 +02:00
committed by Ryan Leckey
parent 63bfab90c5
commit e00d8aaa5a
3 changed files with 21 additions and 38 deletions

View File

@@ -29,7 +29,7 @@ dotenv = "0.15"
tokio = { version = "0.2", features = ["macros"] }
sqlx = { version = "0.4.0-beta.1", path = "..", default-features = false, features = [ "runtime-async-std", "migrate", "any", "offline" ] }
futures = "0.3"
clap = "3.0.0-beta.1"
clap = "=3.0.0-beta.2"
chrono = "0.4"
anyhow = "1.0"
url = { version = "2.1.1", default-features = false }

View File

@@ -5,7 +5,7 @@ pub struct Opt {
#[clap(subcommand)]
pub command: Command,
#[clap(short = "D", long)]
#[clap(short = 'D', long)]
pub database_url: Option<String>,
}