-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
53 lines (50 loc) · 1.2 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
[package]
name = "ab-av1"
version = "0.8.0"
authors = ["Alex Butler <[email protected]>"]
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"
async-stream = "0.3.5"
blake3 = "1.3.3"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
clap-verbosity-flag = "3.0.2"
clap_complete = "4.4.10"
console = "0.15.4"
dirs = "5"
env_logger = { version = "0.11.3", default-features = false, features = [
"auto-color",
"humantime",
] }
fastrand = "2"
ffprobe = "0.4"
futures-util = "0.3.19"
humantime = "2.1"
indicatif = "0.17"
infer = { version = "0.16", default-features = false }
log = "0.4.21"
serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.105"
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"
[profile.release]
lto = true
opt-level = "s"
strip = true
[lints.rust]
unused_crate_dependencies = "deny"