Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDex committed Jun 5, 2020
1 parent 375d241 commit f5e0a38
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk
.vscode
12 changes: 8 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mpris-control"
version = "0.3.1"
version = "0.3.2"
authors = ["BlackDex"]
edition = "2018"

Expand All @@ -10,11 +10,15 @@ license = "GPL-3.0-only"
publish = false

[dependencies]
mpris = "2.0.0-rc1"
mpris = "2.0.0-rc2"
clap = "2"

#[patch.crates-io]
#mpris = { path = "/root/rust/mpris-rs" }

[profile.release]
lto = true
opt-level = "s"
opt-level = "z"
codegen-units = 1
inline-threshold = 275
panic = "abort"
#inline-threshold = 275
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use mpris::PlayerFinder;

fn main() {
let matches = App::new("mpris-control")
.version("0.3.1")
.version("0.3.2")
.author("BlackDex (https://github.com/BlackDex/mpris-control/)")
.about("Control MPRIS enabled media players")
.setting(AppSettings::SubcommandRequiredElseHelp)
Expand Down

0 comments on commit f5e0a38

Please sign in to comment.