-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
56 lines (50 loc) · 1.5 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
52
53
54
55
56
[package]
name = "c2patool"
default-run = "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.9.12"
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"
homepage = "https://contentauthenticity.org"
repository = "https://github.com/contentauth/c2patool"
[dependencies]
anyhow = "1.0"
c2pa = { version = "0.37.0", features = [
"fetch_remote_manifests",
"file_io",
"add_thumbnails",
"pdf",
] }
clap = { version = "4.5.10", features = ["derive", "env"] }
env_logger = "0.11.4"
glob = "0.3.1"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.3"
pem = "3.0.3"
openssl = { version = "0.10.61", features = ["vendored"] }
reqwest = { version = "0.12.4", features = ["blocking"] }
url = "2.5.0"
[dev-dependencies]
assert_cmd = "2.0.14"
httpmock = "0.7.0"
predicates = "3.1"
mockall = "0.13.0"
[package.metadata.binstall]
# Use defaults
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = 3
lto = "thin" # Link time optimization.