Skip to content

Commit

Permalink
bump lyric_finder to v0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
aome510 committed Dec 1, 2024
1 parent f15e7a2 commit 58df3ae
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 53 deletions.
78 changes: 40 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions lyric_finder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lyric_finder"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
license = "MIT"
description = "A lyric finder library"
Expand All @@ -15,14 +15,14 @@ native-tls = ["reqwest/native-tls"]

[dependencies]
reqwest = { version = "0.12.4", features = ["json", "native-tls-alpn"], default-features = false }
anyhow = "1.0.86"
serde = { version = "1.0.202", features = ["derive"] }
html5ever = "0.27.0"
anyhow = "1.0.93"
serde = { version = "1.0.214", features = ["derive"] }
html5ever = "=0.27.0"
markup5ever_rcdom = "0.3.0"
log = "0.4.21"

[dev-dependencies]
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.41.1", features = ["rt", "rt-multi-thread", "macros"] }
env_logger = { version = "0.11.3", default-features = false }

[[example]]
Expand Down
20 changes: 10 additions & 10 deletions spotify_player/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ keywords = ["spotify", "tui", "player"]
readme = "../README.md"

[dependencies]
anyhow = "1.0.91"
clap = { version = "4.5.20", features = ["derive", "string"] }
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive", "string"] }
config_parser2 = "0.1.5"
crossterm = "0.28.1"
dirs-next = "2.0.0"
Expand All @@ -23,8 +23,8 @@ log = "0.4.22"
chrono = "0.4.38"
reqwest = { version = "0.12.9", features = ["json"] }
rspotify = "0.13.3"
serde = { version = "1.0.214", features = ["derive"] }
tokio = { version = "1.41.0", features = [
serde = { version = "1.0.215", features = ["derive"] }
tokio = { version = "1.41.1", features = [
"rt",
"rt-multi-thread",
"macros",
Expand All @@ -36,27 +36,27 @@ rand = "0.8.5"
maybe-async = "0.2.10"
async-trait = "0.1.83"
parking_lot = "0.12.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
lyric_finder = { version = "0.1.6", path = "../lyric_finder", optional = true }
backtrace = "0.3.74"
souvlaki = { version = "0.7.3", optional = true }
viuer = { version = "0.9.1", optional = true }
image = { version = "0.25.4", optional = true }
image = { version = "0.25.5", optional = true }
notify-rust = { version = "4.11.3", optional = true, default-features = false, features = [
"d",
] }
flume = "0.11.1"
serde_json = "1.0.132"
serde_json = "1.0.133"
once_cell = "1.20.2"
regex = "1.11.1"
daemonize = { version = "0.5.0", optional = true }
ttl_cache = "0.5.1"
clap_complete = "4.5.35"
clap_complete = "4.5.38"
which = "7.0.0"
fuzzy-matcher = { version = "0.3.7", optional = true }
html-escape = "0.2.13"
rustls = { version = "0.23.16", default-features = false, features = ["ring"] }
rustls = { version = "0.23.19", default-features = false, features = ["ring"] }

[target.'cfg(any(target_os = "windows", target_os = "macos"))'.dependencies.winit]
version = "0.30.5"
Expand Down

0 comments on commit 58df3ae

Please sign in to comment.