-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
51 lines (46 loc) · 1.35 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
[package]
name = "xmp_toolkit"
version = "1.9.1"
description = "Rust-language bindings for Adobe's XMP Toolkit"
license = "MIT OR Apache-2.0"
repository = "https://github.com/adobe/xmp-toolkit-rs"
documentation = "https://docs.rs/xmp_toolkit"
readme = "README.md"
authors = ["Eric Scouten <scouten@adobe.com>"]
keywords = ["xmp", "metadata"]
categories = ["api-bindings"]
edition = "2021"
rust-version = "1.70.0"
links = "xmp_toolkit"
exclude = [
"external/libexpat/testdata",
"external/xmp_toolkit/docs",
"external/xmp_toolkit/samples",
"external/xmp_toolkit/third-party/zlib/ReadMe.txt",
"external/xmp_toolkit/third-party/zlib/README.md",
"external/xmp_toolkit/third-party/zlib/*.c",
"external/xmp_toolkit/third-party/zlib/*.h",
"external/xmp_toolkit/third-party/expat/lib",
"external/xmp_toolkit/XMPFilesPlugins/PDF_Handler",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
chrono = ["dep:chrono"]
crt_static = []
[dependencies]
chrono = { version = "0.4.24", optional = true }
num_enum = "0.7.0"
thiserror = "1.0"
[build-dependencies]
cc = { version = "1.0.101", features = ["parallel"] }
fs_extra = "1.3"
[dev-dependencies]
anyhow = "1.0.67"
futures = "0.3.30"
pretty_assertions = "1.4.0"
rand = "0.8.5"
tempfile = "3.2"
tokio = { version = "1.39", features = ["full"] }
tokio-macros = "2.4"