-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
59 lines (54 loc) · 1.56 KB
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "av-scenechange"
version = "0.12.2"
authors = ["Josh Holmer <[email protected]>"]
edition = "2021"
description = "Estimates frames in a video where a scenecut would be ideal"
license = "MIT"
repository = "https://github.com/rust-av/av-scenechange"
[dependencies]
anyhow = "1.0.56"
y4m = "0.8.0"
clap = { version = "4.0.22", optional = true, features = ["derive"] }
serde = { version = "1.0.123", optional = true, features = ["derive"] }
serde_json = { version = "1.0.62", optional = true }
rav1e = { version = "0.7.0", default-features = false, features = [
"asm",
"scenechange",
"threading",
] }
log = { version = "0.4.14", optional = true }
console = { version = "0.15", optional = true }
fern = { version = "0.6", optional = true }
tracing-subscriber = { version = "0.3.18", optional = true }
tracing-chrome = { version = "0.7.1", optional = true }
tracing = { version = "0.1.40", optional = true }
ffmpeg-the-third = { version = "2.0.1", optional = true, default-features = false, features = [
"codec",
"format",
] }
[dependencies.vapoursynth]
version = "0.4.0"
features = [
"vsscript-functions",
"vapoursynth-functions",
"vapoursynth-api-32",
"vsscript-api-31",
]
optional = true
[features]
default = ["binary"]
binary = ["clap", "serialize"]
serialize = ["serde", "serde_json"]
devel = ["log", "console", "fern"]
tracing = [
"tracing-subscriber",
"tracing-chrome",
"dep:tracing",
"rav1e/tracing",
]
ffmpeg = ["ffmpeg-the-third"]
[[bin]]
name = "av-scenechange"
path = "src/main.rs"
required-features = ["binary"]