diff options
author | metamuffin <metamuffin@disroot.org> | 2023-09-06 13:44:55 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-09-06 13:44:55 +0200 |
commit | 2ceff639ceca3961e644e5291b654107409d298f (patch) | |
tree | ef40f7dd8d3db5dfa5e8afb345d663f86139815d /transcoder/Cargo.toml | |
parent | 8ef86fed3d084b1fcaae2d52aa5d603faeb18161 (diff) | |
download | jellything-2ceff639ceca3961e644e5291b654107409d298f.tar jellything-2ceff639ceca3961e644e5291b654107409d298f.tar.bz2 jellything-2ceff639ceca3961e644e5291b654107409d298f.tar.zst |
update deps and fix compiler hang on rav1e
Diffstat (limited to 'transcoder/Cargo.toml')
-rw-r--r-- | transcoder/Cargo.toml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/transcoder/Cargo.toml b/transcoder/Cargo.toml index 6fe4f05..79c7b91 100644 --- a/transcoder/Cargo.toml +++ b/transcoder/Cargo.toml @@ -6,8 +6,13 @@ edition = "2021" [dependencies] jellycommon = { path = "../common" } jellybase = { path = "../base" } -log = "0.4.19" -ravif = "0.11.2" -image = "0.24.6" -anyhow = "1.0.72" +log = "0.4.20" +image = "0.24.7" +anyhow = "1.0.75" rgb = "0.8.36" +rav1e = { version = "0.6.6", default-features = false, features = [ + "threading", +] } +rayon = "1.7.0" +imgref = "1.9.4" +ravif = "0.11.2" |