diff options
Diffstat (limited to 'transcoder/Cargo.toml')
-rw-r--r-- | transcoder/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/transcoder/Cargo.toml b/transcoder/Cargo.toml index d0ddf9c..f35b101 100644 --- a/transcoder/Cargo.toml +++ b/transcoder/Cargo.toml @@ -4,8 +4,9 @@ version = "0.1.0" edition = "2021" [dependencies] -jellybase = { path = "../base" } jellyremuxer = { path = "../remuxer" } +jellycache = { path = "../cache" } +jellycommon = { path = "../common" } log = { workspace = true } # TODO: change this back to crates.io when pr is merged image = "0.25.5" @@ -24,3 +25,4 @@ rayon = "1.10.0" imgref = "1.11.0" ravif = "0.11.11" tokio = { workspace = true } +serde = { version = "1.0.217", features = ["derive"] } |