mirror of
https://github.com/talwat/lowfi
synced 2025-01-12 11:21:54 +00:00
chore: update dependencies
This commit is contained in:
parent
a39d903c68
commit
6ff41e0e34
617
Cargo.lock
generated
617
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
18
Cargo.toml
18
Cargo.toml
@ -21,33 +21,33 @@ mpris = ["dep:mpris-server"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Basics
|
# Basics
|
||||||
clap = { version = "4.5.18", features = ["derive", "cargo"] }
|
clap = { version = "4.5.21", features = ["derive", "cargo"] }
|
||||||
eyre = { version = "0.6.12" }
|
eyre = { version = "0.6.12" }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
|
||||||
# Async
|
# Async
|
||||||
tokio = { version = "1.40.0", features = [
|
tokio = { version = "1.41.1", features = [
|
||||||
"macros",
|
"macros",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
"fs"
|
"fs"
|
||||||
], default-features = false }
|
], default-features = false }
|
||||||
futures = "0.3.30"
|
futures = "0.3.31"
|
||||||
arc-swap = "1.7.1"
|
arc-swap = "1.7.1"
|
||||||
|
|
||||||
# Data
|
# Data
|
||||||
reqwest = "0.12.7"
|
reqwest = "0.12.9"
|
||||||
bytes = "1.7.2"
|
bytes = "1.9.0"
|
||||||
|
|
||||||
# I/O
|
# I/O
|
||||||
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
||||||
rodio = { version = "0.19.0", features = ["symphonia-mp3"], default-features = false }
|
rodio = { version = "0.20.1", features = ["symphonia-mp3"], default-features = false }
|
||||||
mpris-server = { version = "0.8.1", optional = true }
|
mpris-server = { version = "0.8.1", optional = true }
|
||||||
dirs = "5.0.1"
|
dirs = "5.0.1"
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
scraper = "0.20.0"
|
scraper = "0.21.0"
|
||||||
Inflector = "0.11.4"
|
Inflector = "0.11.4"
|
||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
libc = "0.2.159"
|
libc = "0.2.167"
|
||||||
url = "2.5.2"
|
url = "2.5.4"
|
||||||
unicode-width = "0.2.0"
|
unicode-width = "0.2.0"
|
||||||
|
@ -361,7 +361,7 @@ impl Player {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Handle the rest of the signal in the background,
|
// Handle the rest of the signal in the background,
|
||||||
// as to not block the main audio thread.
|
// as to not block the main audio server thread.
|
||||||
task::spawn(Self::handle_next(
|
task::spawn(Self::handle_next(
|
||||||
Arc::clone(&player),
|
Arc::clone(&player),
|
||||||
itx.clone(),
|
itx.clone(),
|
||||||
|
Loading…
Reference in New Issue
Block a user