-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (49 loc) · 1.74 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
54
55
[package]
name = "video-encoding-wrapper"
version = "0.1.0"
authors = ["Jason Lynch <[email protected]>"]
edition = "2024"
categories = ["command-line-utilities", "multimedia::video"]
description = "Opinionated tool to encode videos"
keywords = ["video"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aexoden/video-encoding-wrapper"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.rust]
future_incompatible = "warn"
let_underscore = "warn"
[lints.clippy]
cargo = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
multiple_crate_versions = "allow"
[dependencies]
anyhow = { version = "1.0.97", features = ["backtrace"] }
av-metrics = "0.9.1"
av-scenechange = { version = "0.12.2", default-features = false, features = ["ffmpeg"] }
base16ct = { version = "0.2.0", features = ["alloc", "std"] }
cached = "0.55.1"
clap = { version = "4.5.31", features = ["derive"] }
crossbeam-queue = "0.3.12"
ffmpeg = { package = "ffmpeg-the-third", version = "2.0.1", features = ["serialize"] }
indicatif = "0.17.11"
number_prefix = "0.4.0"
plotters = { version = "0.3.7", default-features = false, features = ["svg_backend", "line_series"] }
prettytable-rs = "0.10.0"
rayon = "1.10.0"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.140"
sha2 = "0.10.6"
ssimulacra2 = { version = "0.5.1", default-features = false }
statrs = "0.18.0"
tokio = { version = "1.43.0", features = ["process"] }
tracing = "0.1.41"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
y4m = "0.8.0"
[profile.release]
lto = "fat"
[profile.dev]
incremental = true
opt-level = 3