Skip to content

Commit def2b72

Browse files
committed
update deps and bump app's version to 0.12.0
1 parent d3d6386 commit def2b72

3 files changed

Lines changed: 22 additions & 13 deletions

File tree

Cargo.lock

Lines changed: 14 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spotify_player/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spotify_player"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
authors = ["Thang Pham <phamducthang1234@gmail.com>"]
55
edition = "2021"
66
license = "MIT"
@@ -11,7 +11,7 @@ readme = "../README.md"
1111

1212
[dependencies]
1313
anyhow = "1.0.69"
14-
clap = "4.1.4"
14+
clap = "4.1.6"
1515
config_parser2 = "0.1.4"
1616
crossterm = "0.26.0"
1717
dirs-next = "2.0.0"
@@ -26,7 +26,7 @@ rpassword = "7.2.0"
2626
rspotify = "0.11.6"
2727
serde = { version = "1.0.152", features = ["derive"] }
2828
tokio = { version = "1.25.0", features = ["rt", "rt-multi-thread", "macros", "time"] }
29-
toml = "0.7.1"
29+
toml = "0.7.2"
3030
tui = "0.19.0"
3131
unicode-width = "0.1.10"
3232
rand = "0.8.5"
@@ -35,16 +35,16 @@ async-trait = "0.1.64"
3535
parking_lot = "0.12.1"
3636
tracing = "0.1.37"
3737
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
38-
lyric_finder = { version = "0.1.2", path = "../lyric_finder" , optional = true }
38+
lyric_finder = { version = "0.1.3", path = "../lyric_finder" , optional = true }
3939
backtrace = "0.3.67"
40-
souvlaki = { version = "0.5.3", optional = true }
40+
souvlaki = { version = "0.6.0", optional = true }
4141
winit = { version = "0.28.1", optional = true }
4242
viuer = { version = "0.6.2", optional = true }
4343
image = { version = "0.24.5", optional = true }
4444
notify-rust = { version = "4.7.1", optional = true, default_features = false, features = ["d"] }
4545
flume = "0.10.14"
46-
serde_json = "1.0.92"
47-
once_cell = "1.17.0"
46+
serde_json = "1.0.93"
47+
once_cell = "1.17.1"
4848

4949
[features]
5050
alsa-backend = ["streaming", "librespot-playback/alsa-backend"]

spotify_player/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use std::io::Write;
1818

1919
fn init_app_cli_arguments() -> clap::ArgMatches {
2020
clap::Command::new("spotify-player")
21-
.version("0.11.1")
21+
.version("0.12.0")
2222
.about("A command driven spotify player")
2323
.author("Thang Pham <phamducthang1234@gmail>")
2424
.arg(

0 commit comments

Comments
 (0)