-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.33 KB
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
[package]
name = "dovi_tool"
version = "2.3.1"
authors = ["quietvoid"]
edition = "2024"
rust-version = "1.88.0"
license = "MIT"
repository = "https://github.com/quietvoid/dovi_tool"
build = "build.rs"
[[bin]]
name = "dovi_tool"
path = "src/main.rs"
[dependencies]
dolby_vision = { path = "dolby_vision", "features" = ["xml", "serde"] }
bitvec_helpers = { version = "4.0.1", default-features = false, features = ["bitstream-io"] }
hevc_parser = { version = "0.6.10", features = ["hevc_io"] }
madvr_parse = "1.0.3"
hdr10plus = { version = "2.1.5", features = ["json"] }
anyhow = "1.0.101"
clap = { version = "4.5.57", features = ["derive", "wrap_help", "deprecated"] }
clap_lex = "*"
indicatif = "0.18.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
itertools = "0.14.0"
plotters = { version = "0.3.7", default-features = false, features = ["bitmap_backend", "bitmap_encoder", "all_series"] }
[dev-dependencies]
assert_cmd = "2.1.2"
assert_fs = "1.1.3"
predicates = "3.1.3"
[build-dependencies]
anyhow = "1.0.101"
vergen-gitcl = { version = "9.1.0", default-features = false, features = ["build"] }
[features]
default = ["system-font"]
system-font = ["plotters/ttf"]
internal-font = ["plotters/ab_glyph"]
[profile.release-deploy]
inherits = "release"
lto = "thin"
strip = "symbols"