blob: e49bd2ad6c8b57a04fc187a5752e6c50270de769 (
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
26
27
|
[package]
name = "jellytranscoder"
version = "0.1.0"
edition = "2021"
[dependencies]
jellycommon = { path = "../common" }
jellybase = { path = "../base" }
jellyremuxer = { path = "../remuxer" }
log = { workspace = true }
# TODO: change this back to crates.io when pr is merged
image = "0.25.1"
# image = { git = "https://github.com/metamuffin/image-rs", features = [
# "avif-decoder",
# ] }
libavif-image = { version = "0.13.0", default-features = false, features = [
"codec-dav1d",
] }
anyhow = "1.0.86"
rgb = "0.8.37"
rav1e = { version = "0.7.1", default-features = false, features = [
"threading",
] }
rayon = "1.10.0"
imgref = "1.10.1"
ravif = "0.11.5"
tokio = { workspace = true }
|