-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (55 loc) · 1.54 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (55 loc) · 1.54 KB
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
57
58
59
60
61
[package]
name = "c2patool"
default-run = "c2patool"
version = "0.26.59"
description = "Tool for displaying and creating C2PA manifests (Volcengine ToB variant)."
authors = [
"Gavin Peacock <gpeacock@adobe.com>",
"Maurice Fisher <mfisher@adobe.com>",
]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["c2pa", "xmp", "metadata"]
edition = "2018"
homepage = "https://contentauthenticity.org"
[features]
default = ["networking"]
networking = ["c2pa/default_http"]
[dependencies]
anyhow = "1.0"
atree = "0.5.4"
c2pa = { version = "0.90.0", features = [
"fetch_remote_manifests",
"file_io",
"add_thumbnails",
"pdf",
] }
clap = { version = "4.5.50", features = ["derive", "env", "string"] }
env_logger = "0.11.8"
glob = "0.3.1"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.0.2"
tempfile = "3.3"
treeline = "0.1.0"
pem = "3.0.6"
url = "2.5.0"
etcetera = "0.11.0"
[target.'cfg(not(target_os = "wasi"))'.dependencies]
reqwest = { version = "0.12.4", features = ["blocking"] }
tokio = { version = "1.44.2", features = ["rt", "rt-multi-thread"] }
openssl = { version = "0.10", features = ["vendored"] }
base64 = "0.22"
ureq = { version = "3.0", features = ["json"] }
thiserror = "1.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
[target.'cfg(target_os = "wasi")'.dependencies]
wasi = "0.14"
wstd = "0.5"
[dev-dependencies]
mockall = "0.14.0"
[target.'cfg(not(target_os = "wasi"))'.dev-dependencies]
assert_cmd = "2.0.14"
httpmock = "0.8.2"
predicates = "3.1"