aboutsummaryrefslogtreecommitdiff
path: root/transcoder
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-04-15 17:13:15 +0200
committermetamuffin <metamuffin@disroot.org>2024-04-15 17:13:15 +0200
commit29a62d702b24d8ea30c72e17569d9a98ad2775b9 (patch)
tree0f3f746054d7d52cb537c055217e8afe88f68baf /transcoder
parent2c1b50a1f32c5f87489c2bc03f81e53da8cf3d29 (diff)
downloadjellything-29a62d702b24d8ea30c72e17569d9a98ad2775b9.tar
jellything-29a62d702b24d8ea30c72e17569d9a98ad2775b9.tar.bz2
jellything-29a62d702b24d8ea30c72e17569d9a98ad2775b9.tar.zst
upgrade all deps (except image-rs)
Diffstat (limited to 'transcoder')
-rw-r--r--transcoder/Cargo.toml14
-rw-r--r--transcoder/src/lib.rs2
2 files changed, 8 insertions, 8 deletions
diff --git a/transcoder/Cargo.toml b/transcoder/Cargo.toml
index f5c5a88..2343ec6 100644
--- a/transcoder/Cargo.toml
+++ b/transcoder/Cargo.toml
@@ -9,19 +9,19 @@ jellybase = { path = "../base" }
jellyremuxer = { path = "../remuxer" }
log = { workspace = true }
# TODO: change this back to crates.io when pr is merged
-image = "0.24.7"
+image = "0.24.9"
# image = { git = "https://github.com/metamuffin/image-rs", features = [
# "avif-decoder",
# ] }
-libavif-image = { version = "0.11.0", default-features = false, features = [
+libavif-image = { version = "0.12.0", default-features = false, features = [
"codec-dav1d",
] }
-anyhow = "1.0.75"
+anyhow = "1.0.82"
rgb = "0.8.37"
-rav1e = { version = "0.6.6", default-features = false, features = [
+rav1e = { version = "0.7.1", default-features = false, features = [
"threading",
] }
-rayon = "1.8.0"
-imgref = "1.10.0"
-ravif = "0.11.3"
+rayon = "1.10.0"
+imgref = "1.10.1"
+ravif = "0.11.5"
tokio = { workspace = true }
diff --git a/transcoder/src/lib.rs b/transcoder/src/lib.rs
index eb56229..7bf2c12 100644
--- a/transcoder/src/lib.rs
+++ b/transcoder/src/lib.rs
@@ -7,8 +7,8 @@
#![feature(exit_status_error)]
use tokio::sync::Semaphore;
-pub mod image;
pub mod fragment;
+pub mod image;
pub mod subtitles;
pub mod thumbnail;