Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aschey committed Feb 15, 2025
1 parent 3252059 commit e193b9b
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 38 deletions.
39 changes: 19 additions & 20 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion libplatune/management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ walkdir = "2"

[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_tokio"] }
ctor = "0.3.1"
ctor = "0.3.3"
pretty_assertions = "1.4.1"
rstest = "0.24.0"
tempfile = "3.16.0"
Expand Down
4 changes: 2 additions & 2 deletions libplatune/player/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ eyre = "0.6"
flume = "0.11"
futures-util = "0.3"
tokio-util = "0.7"
stream-download = { version = "0.14.1", features = [
stream-download = { version = "0.15.0", features = [
"reqwest-rustls",
"reqwest-middleware",
"registry",
Expand Down Expand Up @@ -47,7 +47,7 @@ which = { version = "7.0.2", features = ["tracing"] }
[dev-dependencies]
assert_matches = "1.5.0"
async-trait = "0.1.86"
ctor = "0.3.1"
ctor = "0.3.3"
futures = "0.3.31"
pretty_assertions = "1.4.1"
rstest = "0.24.0"
Expand Down
25 changes: 12 additions & 13 deletions libplatune/player/fuzz/Cargo.lock

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

2 changes: 1 addition & 1 deletion libplatune/player/src/resolver/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl RegistryEntry<Result<(Box<dyn Source>, CancellationToken)>> for HttpSourceR
)
.await
.wrap_err_with(|| "Error creating stream downloader")?;
let token = reader.get_cancellation_token();
let token = reader.cancellation_token();

Ok((
Box::new(ReadSeekSource::new(reader, file_len, extension)),
Expand Down
2 changes: 1 addition & 1 deletion libplatune/player/src/resolver/yt_dlp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ impl RegistryEntry<Result<(Box<dyn Source>, CancellationToken)>> for YtDlpSource
settings,
)
.await?;
let token = reader.get_cancellation_token();
let token = reader.cancellation_token();

Ok((
Box::new(ReadSeekSource::new(reader, size, Some("m4a".to_string()))),
Expand Down

0 comments on commit e193b9b

Please sign in to comment.