forked from alexheretic/ab-av1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 970 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
32
33
34
35
36
37
[package]
name = "ab-av1"
version = "0.7.13"
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"
blake3 = "1.3.3"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.4.10"
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 }
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