-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
39 lines (31 loc) · 1.09 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
[package]
name = "dng"
description = "A pure rust library for reading / writing DNG files providing access to the raw data"
version = "1.5.2"
keywords = ["dng", "raw", "tiff", "ifd", "exif"]
categories = ["command-line-utilities", "multimedia::images", "multimedia::encoding", "multimedia::video"]
repository = "https://github.com/apertus-open-source-cinema/dng-rs"
readme = "README.md"
license = "AGPL-3.0"
edition = "2021"
[features]
yaml = ["dep:fraction", "dep:lazy-regex", "dep:textwrap", "dep:yaml-peg"]
cli = ["yaml", "dep:clap"]
[[bin]]
name = "dump_dng"
required-features = ["cli"]
[[bin]]
name = "compile_dng"
required-features = ["cli"]
[dependencies]
derivative = "2.2.0"
thiserror = "1.0.37"
# these are needed for the yaml reading / writing
fraction = { version = "0.12.1", optional = true }
lazy-regex = { version = "2.3.1", optional = true }
textwrap = { version = "0.16.0", optional = true }
yaml-peg = { version = "1.0.5", optional = true }
# this is only needed for the cli tools
clap = { version = "4.0.22", features = ["derive"], optional = true }
[build-dependencies]
json = "0.12.4"