-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44cbf89
commit 6d1ab01
Showing
9 changed files
with
41 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cawg-identity" | ||
version = "0.2.2" | ||
version = "0.3.0" | ||
description = "Rust SDK for CAWG (Creator Assertions Working Group) identity assertion" | ||
authors = [ | ||
"Eric Scouten <[email protected]>", | ||
|
@@ -27,8 +27,8 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
async-trait = "0.1.78" | ||
base64 = "0.22.1" | ||
c2pa = { path = "../sdk", version = "0.41.1", features = ["openssl", "unstable_api"] } | ||
c2pa-crypto = { path = "../internal/crypto", version = "0.3.1" } | ||
c2pa = { path = "../sdk", version = "0.42.0", features = ["openssl", "unstable_api"] } | ||
c2pa-crypto = { path = "../internal/crypto", version = "0.4.0" } | ||
chrono = { version = "0.4.38", features = ["serde"] } | ||
ciborium = "0.2.2" | ||
coset = "0.3.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "c2patool" | ||
default-run = "c2patool" | ||
version = "0.11.1" | ||
version = "0.12.0" | ||
description = "Tool for displaying and creating C2PA manifests." | ||
authors = [ | ||
"Gavin Peacock <[email protected]>", | ||
|
@@ -22,14 +22,14 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] } | |
[dependencies] | ||
anyhow = "1.0" | ||
atree = "0.5.2" | ||
c2pa = { path = "../sdk", version = "0.41.1", features = [ | ||
c2pa = { path = "../sdk", version = "0.42.0", features = [ | ||
"fetch_remote_manifests", | ||
"file_io", | ||
"add_thumbnails", | ||
"pdf", | ||
"unstable_api", | ||
] } | ||
c2pa-crypto = { path = "../internal/crypto", version = "0.3.1" } | ||
c2pa-crypto = { path = "../internal/crypto", version = "0.4.0" } | ||
clap = { version = "4.5.10", features = ["derive", "env"] } | ||
env_logger = "0.11.4" | ||
glob = "0.3.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "c2pa-crypto" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
description = "Cryptography internals for c2pa-rs crate" | ||
authors = [ | ||
"Maurice Fisher <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "c2pa" | ||
version = "0.41.1" | ||
version = "0.42.0" | ||
description = "Rust SDK for C2PA (Coalition for Content Provenance and Authenticity) implementors" | ||
authors = [ | ||
"Maurice Fisher <[email protected]>", | ||
|
@@ -76,7 +76,7 @@ bcder = "0.7.3" | |
bytes = "1.7.2" | ||
byteorder = { version = "1.4.3", default-features = false } | ||
byteordered = "0.6.0" | ||
c2pa-crypto = { path = "../internal/crypto", version = "0.3.1" } | ||
c2pa-crypto = { path = "../internal/crypto", version = "0.4.0" } | ||
c2pa-status-tracker = { path = "../internal/status-tracker", version = "0.3.0" } | ||
chrono = { version = "0.4.39", default-features = false, features = [ | ||
"serde", | ||
|