-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
44 lines (38 loc) · 1.27 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
[package]
name = "dovi_tool"
version = "2.1.2"
authors = ["quietvoid"]
edition = "2021"
rust-version = "1.79.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 = "3.1.6", default-features = false, features = ["bitstream-io"] }
hevc_parser = { version = "0.6.4", features = ["hevc_io"] }
madvr_parse = "1.0.2"
hdr10plus = { version = "2.1.3", features = ["json"] }
anyhow = "1.0.88"
clap = { version = "4.5.17", features = ["derive", "wrap_help", "deprecated"] }
clap_lex = "*"
indicatif = "0.17.8"
bitvec = "1.0.1"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["preserve_order"] }
itertools = "0.13.0"
plotters = { version = "0.3.7", default-features = false, features = ["bitmap_backend", "bitmap_encoder", "all_series"] }
[dev-dependencies]
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
predicates = "3.1.2"
[build-dependencies]
anyhow = "1.0.88"
vergen-gitcl = { version = "1.0.0", default-features = false, features = ["build"] }
[features]
default = ["system-font"]
system-font = ["plotters/ttf"]
internal-font = ["plotters/ab_glyph"]