forked from alexheretic/ab-av1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (41 loc) · 1.09 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
[package]
name = "ab-av1"
version = "0.7.7"
authors = ["Alex Butler <alexheretic@gmail.com>"]
edition = "2021"
description = "AV1 encoding with fast VMAF sampling"
repository = "https://github.com/alexheretic/ab-av1"
keywords = ["av1", "vmaf"]
license = "MIT"
readme = "README.md"
[dependencies]
anyhow = "1.0.53"
blake3 = "1.3.3"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
clap_complete = "4"
console = "0.15.4"
dirs = "5"
fastrand = "2"
ffprobe = "0.3"
futures = "0.3.19"
humantime = "2.1"
indicatif = "0.17"
infer = { version = "0.15", default-features = false }
once_cell = "1.9"
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
shell-escape = "0.1.5"
sled = "0.34.7"
time = { version = "0.3", features = ["parsing", "macros"] }
tokio = { version = "1.15", features = ["rt", "macros", "process", "fs", "signal"] }
tokio-process-stream = "0.4"
tokio-stream = "0.1"
[target.'cfg(unix)'.dependencies]
unix-named-pipe = "0.2"
[target.'cfg(windows)'.dependencies.tokio]
version = "1.15"
features = ["net"]
[profile.release]
lto = true
opt-level = "s"
strip = true