forked from rust-av/av-scenechange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 999 Bytes
/
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
[package]
name = "av-scenechange"
version = "0.7.1"
authors = ["Josh Holmer <[email protected]>"]
edition = "2018"
description = "Estimates frames in a video where a scenecut would be ideal"
license = "MIT"
repository = "https://github.com/rust-av/av-scenechange"
[dependencies]
y4m = "0.7.0"
clap = { version = "2.33.3", optional = true }
serde = { version = "1.0.123", optional = true, features = ["derive"] }
serde_json = { version = "1.0.62", optional = true }
rav1e = { version = "0.5.0-beta.2", default-features = false, features = ["asm", "scenechange"] }
log = { version = "0.4.14", optional = true }
console = { version = "0.14", optional = true }
fern = { version = "0.6", optional = true }
rust_hawktracer = "0.7.0"
[features]
default = ["binary"]
binary = ["clap", "serialize"]
serialize = ["serde", "serde_json"]
devel = ["log", "console", "fern"]
tracing = ["rust_hawktracer/profiling_enabled"]
[[bin]]
name = "av-scenechange"
path = "src/main.rs"
required-features = ["binary"]