blob: 61799e50f80a0acf2ab2acfb1ba76095fe7894c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[package]
name = "jellytranscoder"
version = "0.1.0"
edition = "2024"
[dependencies]
jellyremuxer = { path = "../remuxer" }
jellycache = { path = "../cache" }
jellystream-types = { path = "../stream/types" }
log = { workspace = true }
image = "0.25.9"
libavif-image = { version = "0.14.0", default-features = false, features = [
"codec-dav1d",
] }
anyhow = { workspace = true }
rgb = "0.8.52"
rav1e = { version = "0.8.1", default-features = false, features = [
"threading",
] }
rayon = "1.11.0"
imgref = "1.12.0"
ravif = "0.13.0"
tokio = { workspace = true }
serde = { version = "1.0.228", features = ["derive"] }
winter-matroska = { git = "https://codeberg.org/metamuffin/ebml-rs", package = "matroska" }
|