Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aschey committed Jan 14, 2025
1 parent 931c33d commit f33e25d
Show file tree
Hide file tree
Showing 8 changed files with 1,215 additions and 1,057 deletions.
1,370 changes: 774 additions & 596 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions libplatune/management/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
authors = ["Austin Schey <[email protected]>"]
edition = "2021"
edition = "2024"
name = "libplatune-management"
version = "0.1.0"

Expand All @@ -17,16 +17,16 @@ concread = { version = "0.5", default-features = false, features = [
"arcache",
"arcache-is-hashtrie",
] }
directories = "5"
directories = "6"
eyre = "0.6"
futures = "0.3"
ignore = "0.4"
itertools = "0.13"
itertools = "0.14"
lazy_static = "1"
lofty = "0.21.1"
lofty = "0.22.1"
log = "0.4"
normpath = "1"
notify = { version = "7", default-features = false, features = [
notify = { version = "8", default-features = false, features = [
"macos_fsevent",
] }
num_cpus = "1"
Expand Down Expand Up @@ -55,8 +55,8 @@ walkdir = "2"

[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
ctor = "0.2.8"
ctor = "0.2.9"
pretty_assertions = "1.4.1"
rstest = "0.23.0"
tempfile = "3.13.0"
tracing-subscriber = "0.3.18"
rstest = "0.24.0"
tempfile = "3.15.0"
tracing-subscriber = "0.3.19"
2 changes: 1 addition & 1 deletion libplatune/management/src/path_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ where
file_path_str = file_path_str.replace('\\', "/");
}

if let Some(ref mount) = mount {
if let Some(mount) = mount {
if file_path_str.starts_with(&mount[..]) {
file_path_str = file_path_str.replace(&mount[..], "");
}
Expand Down
20 changes: 10 additions & 10 deletions libplatune/player/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["aschey <[email protected]>"]
name = "libplatune-player"
version = "0.1.0"

edition = "2021"
edition = "2024"

[lib]
name = "libplatune_player"
Expand All @@ -15,7 +15,7 @@ eyre = "0.6"
flume = "0.11"
futures-util = "0.3"
tokio-util = "0.7"
stream-download = { version = "0.13.1", features = [
stream-download = { version = "0.14.0", features = [
"reqwest-rustls",
"reqwest-middleware",
"registry",
Expand All @@ -41,16 +41,16 @@ youtube_dl = { git = "https://github.com/aschey/youtube-dl-rs", rev = "2a2533633
"tokio",
] }
regex = "1.11.1"
lazy-regex = "3.3.0"
which = { version = "7.0.0", features = ["tracing"] }
lazy-regex = "3.4.1"
which = { version = "7.0.1", features = ["tracing"] }

[dev-dependencies]
assert_matches = "1.5.0"
async-trait = "0.1.83"
ctor = "0.2.8"
futures = "0.3.30"
async-trait = "0.1.85"
ctor = "0.2.9"
futures = "0.3.31"
pretty_assertions = "1.4.1"
rstest = "0.23.0"
spin_sleep = "1.2.1"
rstest = "0.24.0"
spin_sleep = "1.3.0"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
tracing-subscriber = "0.3.19"
Loading

0 comments on commit f33e25d

Please sign in to comment.