-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
38 lines (32 loc) · 988 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
38
[package]
name = "hdr10plus_tool"
version = "1.6.1"
authors = ["quietvoid"]
edition = "2021"
rust-version = "1.79.0"
license = "MIT"
[dependencies]
bitvec_helpers = { version = "3.1.6", default-features = false, features = ["bitstream-io"] }
hdr10plus = { path = "./hdr10plus", features = ["hevc", "json"] }
hevc_parser = { version = "0.6.4", features = ["hevc_io"] }
clap = { version = "4.5.17", features = ["derive", "wrap_help", "deprecated"] }
serde_json = { version = "1.0.128", features = ["preserve_order"] }
indicatif = "0.17.8"
anyhow = "1.0.88"
thiserror = "1.0.63"
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"
[[bin]]
name = "hdr10plus_tool"
path = "src/main.rs"
[workspace]
members = [
"hdr10plus",
]
[features]
default = ["system-font"]
system-font = ["plotters/ttf"]
internal-font = ["plotters/ab_glyph"]