Skip to content

Commit

Permalink
Merge pull request #86 from contentauth/gpeacock/v2_claims
Browse files Browse the repository at this point in the history
feat: Update c2pa_rs with early v2 claims testing support
  • Loading branch information
gpeacock authored Jan 29, 2025
2 parents aeee63a + af29bd3 commit 03c1be0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c2pa-python"
version = "0.6.2"
version = "0.6.3"
edition = "2021"
authors = ["Gavin Peacock <[email protected]"]

Expand All @@ -12,7 +12,7 @@ crate-type = ["lib", "cdylib"]
normal = ["openssl-src"]

[dependencies]
c2pa = { version = "0.43.0", features = ["unstable_api", "file_io", "openssl", "pdf", "fetch_remote_manifests"]}
c2pa = { version = "0.44.0", features = ["file_io", "openssl", "pdf", "fetch_remote_manifests"]}
thiserror = "1.0.49"
uniffi = "0.28.2"
openssl-src = "=300.3.1" # Required for openssl-sys
Expand Down
2 changes: 1 addition & 1 deletion src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl Error {
| TooManyManifestStores => Self::Manifest { reason: err_str },
ClaimMissing { label } => Self::ManifestNotFound { reason: err_str },
AssertionDecoding(_) | ClaimDecoding => Self::Decoding { reason: err_str },
AssertionEncoding | XmlWriteError | ClaimEncoding => Self::Encoding { reason: err_str },
AssertionEncoding(_) | XmlWriteError | ClaimEncoding => Self::Encoding { reason: err_str },
InvalidCoseSignature { coset_error } => Self::Signature { reason: err_str },
CoseSignatureAlgorithmNotSupported
| CoseMissingKey
Expand Down

0 comments on commit 03c1be0

Please sign in to comment.