forked from rust-av/av-scenechange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.22 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
[package]
name = "av-scenechange"
version = "0.10.0"
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 }
[features]
default = ["binary"]
binary = ["clap", "serialize"]
serialize = ["serde", "serde_json"]
devel = ["log", "console", "fern"]
tracing = [
"tracing-subscriber",
"tracing-chrome",
"dep:tracing",
"rav1e/tracing"
]
[[bin]]
name = "av-scenechange"
path = "src/main.rs"
required-features = ["binary"]