From 2976716bcd48587288bd799217bc9e330de7be08 Mon Sep 17 00:00:00 2001 From: Zeyi Fan Date: Sun, 14 Jun 2020 22:06:28 -0700 Subject: [PATCH] release v0.4.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/opt.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e609a62..518112a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -50,7 +50,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cargo-play" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bs58 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 67797d7..a13b146 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-play" -version = "0.4.0" +version = "0.4.1" authors = ["Zeyi Fan "] edition = "2018" description = "Run your Rust code without setting up Cargo" diff --git a/src/opt.rs b/src/opt.rs index ef7851d..78f6db9 100644 --- a/src/opt.rs +++ b/src/opt.rs @@ -81,7 +81,7 @@ pub struct Opt { #[structopt(long = "cached", hidden = true)] pub cached: bool, - #[structopt(long = "quiet")] + #[structopt(long = "quiet", short = "q")] /// Disable output from Cargo (equivlant to `cargo run --quiet`) pub quiet: bool,