forked from elvis-epx/rexif
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
33 lines (28 loc) · 969 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
[package]
name = "rexif"
version = "0.7.5"
authors = ["Elvis Pfützenreuter <[email protected]>", "Kornel <[email protected]>", "Gabriela Alexandra Moldovan <[email protected]>"]
include = ["src/*.rs", "Cargo.toml", "README.md", "LICENSE"]
description = "RExif is a native Rust crate, written to extract EXIF data from JPEG and TIFF images."
license = "MIT"
categories = ["multimedia::images", "parser-implementations"]
documentation = "https://docs.rs/rexif"
homepage = "https://lib.rs/crates/rexif"
keywords = ["exif", "metadata", "ifd", "tag", "gps"]
readme = "README.md"
repository = "https://github.com/kornelski/rexif.git"
edition = "2021"
rust-version = "1.60"
[lib]
name = "rexif"
path = "src/lib.rs"
[dev-dependencies]
glob = "0.3.1"
[[bin]]
name = "rexiftool"
path = "src/main.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[badges]
maintenance = { status = "passively-maintained" }