forked from contentauth/c2patool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1.22 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
[package]
name = "c2patool"
# Please do not manually edit `version`. Version updates will be generated
# automatically when c2patool is published. Remember to use (MINOR) or (MAJOR)
# tags in the PR title to trigger non-patch updates as needed.
version = "0.6.1"
description = "Tool for displaying and creating C2PA manifests."
authors = ["Gavin Peacock <[email protected]>", "Maurice Fisher <[email protected]>"]
license = "MIT OR Apache-2.0"
documentation = "https://opensource.contentauthenticity.org/docs/c2patool"
readme = "README.md"
keywords = ["c2pa", "xmp", "metadata"]
edition = "2018"
rust-version = "1.61.0"
homepage = "https://contentauthenticity.org"
repository = "https://github.com/contentauth/c2patool"
[dependencies]
anyhow = "1.0"
c2pa = { version = "0.25.1", features = ["fetch_remote_manifests", "file_io", "add_thumbnails", "xmp_write"]}
clap = { version = "3.2", features = ["derive"] }
env_logger = "0.9"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.3"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "2.1"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = 3
lto = "thin" # Link time optimization.