aboutsummaryrefslogtreecommitdiff
path: root/transcoder
diff options
context:
space:
mode:
Diffstat (limited to 'transcoder')
-rw-r--r--transcoder/Cargo.toml16
-rw-r--r--transcoder/src/fragment.rs2
2 files changed, 9 insertions, 9 deletions
diff --git a/transcoder/Cargo.toml b/transcoder/Cargo.toml
index e0d81a6..0161d49 100644
--- a/transcoder/Cargo.toml
+++ b/transcoder/Cargo.toml
@@ -9,21 +9,21 @@ jellycache = { path = "../cache" }
jellystream-types = { path = "../stream/types" }
log = { workspace = true }
# TODO: change this back to crates.io when pr is merged
-image = "0.25.5"
+image = "0.25.8"
# image = { git = "https://github.com/metamuffin/image-rs", features = [
# "avif-decoder",
# ] }
libavif-image = { version = "0.14.0", default-features = false, features = [
"codec-dav1d",
] }
-anyhow = "1.0.95"
-rgb = "0.8.50"
-rav1e = { version = "0.7.1", default-features = false, features = [
+anyhow = "1.0.100"
+rgb = "0.8.52"
+rav1e = { version = "0.8.1", default-features = false, features = [
"threading",
] }
-rayon = "1.10.0"
-imgref = "1.11.0"
-ravif = "0.11.11"
+rayon = "1.11.0"
+imgref = "1.12.0"
+ravif = "0.12.0"
tokio = { workspace = true }
-serde = { version = "1.0.217", features = ["derive"] }
+serde = { version = "1.0.228", features = ["derive"] }
winter-matroska = { git = "https://codeberg.org/metamuffin/ebml-rs", package = "matroska" }
diff --git a/transcoder/src/fragment.rs b/transcoder/src/fragment.rs
index 985c1a4..152e163 100644
--- a/transcoder/src/fragment.rs
+++ b/transcoder/src/fragment.rs
@@ -31,7 +31,7 @@ pub fn transcode(
kind,
&input.tracks.as_ref().unwrap().entries[0],
output_format,
- &*CONF,
+ &CONF,
)
.unwrap();