forked from contentauth/c2pa-attacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 1.09 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
[package]
name = "c2pa-attacks"
# Please do not manually edit `version`. Version updates will be generated
# automatically when c2pa-attacks is published. Remember to use (MINOR) or
# (MAJOR) tags in the PR title to trigger non-patch updates as needed.
version = "0.0.1"
description = "Command line tool for creating C2PA manifests for security testing"
authors = ["Peleus Uhley <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["c2pa", "xmp", "metadata"]
edition = "2021"
rust-version = "1.68.0"
homepage = "https://contentauthenticity.org"
repository = "https://github.com/contentauth/c2pa-attacks"
[dependencies]
anyhow = "1.0"
c2pa = { version = "0.28.4", features = ["fetch_remote_manifests", "file_io", "xmp_write"] }
clap = { version = "4.4", features = ["derive"] }
env_logger = "0.10"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_derive = "1.0"
serde_json = { version = "1.0" }
tempfile = "3.9"
regex = "1.10.3"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = 3
lto = "thin" # Link time optimization.