-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
49 lines (41 loc) · 1.24 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
# SPDX-FileCopyrightText: 2015–2022 Felix A. Crux <[email protected]> and CONTRIBUTORS
# SPDX-License-Identifier: GPL-3.0-or-later
[package]
name = "rexiv2"
description = """
This library provides a Rust wrapper around the gexiv2 library, which is
a GObject-based wrapper around the Exiv2 library, which provides read and
write access to the Exif, XMP, and IPTC metadata in media files (typically
photos) in various formats.
"""
version = "0.10.0"
authors = ["Felix Crux <[email protected]>"]
license = "GPL-3.0-or-later"
documentation = "https://felixcrux.com/files/doc/rexiv2/"
homepage = "https://github.com/felixc/rexiv2"
repository = "https://github.com/felixc/rexiv2"
keywords = ["metadata", "exif", "iptc", "xmp", "photo"]
categories = ["multimedia::images"]
readme = "README.md"
edition = "2021"
rust-version = "1.63"
include = [
"Cargo.toml",
"README.md",
"CHANGELOG.md",
"LICENSE",
"SETUP.md",
"src/**/*",
]
[dependencies]
gexiv2-sys = "1.4"
libc = "0.2"
num-rational = { version = "0.4", default-features = false }
glib-sys = { version = "0.16", optional = true }
[features]
raw-tag-access = ["gexiv2-sys/raw-tag-access", "glib-sys"]
[[test]]
name = "tests"
path = "tst/main.rs"
[badges]
travis-ci = { repository = "felixc/rexiv2" }