Skip to content

Commit 03c1be0

Browse files
authored
Merge pull request #86 from contentauth/gpeacock/v2_claims
feat: Update c2pa_rs with early v2 claims testing support
2 parents aeee63a + af29bd3 commit 03c1be0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "c2pa-python"
3-
version = "0.6.2"
3+
version = "0.6.3"
44
edition = "2021"
55
authors = ["Gavin Peacock <[email protected]"]
66

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

1414
[dependencies]
15-
c2pa = { version = "0.43.0", features = ["unstable_api", "file_io", "openssl", "pdf", "fetch_remote_manifests"]}
15+
c2pa = { version = "0.44.0", features = ["file_io", "openssl", "pdf", "fetch_remote_manifests"]}
1616
thiserror = "1.0.49"
1717
uniffi = "0.28.2"
1818
openssl-src = "=300.3.1" # Required for openssl-sys

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl Error {
6464
| TooManyManifestStores => Self::Manifest { reason: err_str },
6565
ClaimMissing { label } => Self::ManifestNotFound { reason: err_str },
6666
AssertionDecoding(_) | ClaimDecoding => Self::Decoding { reason: err_str },
67-
AssertionEncoding | XmlWriteError | ClaimEncoding => Self::Encoding { reason: err_str },
67+
AssertionEncoding(_) | XmlWriteError | ClaimEncoding => Self::Encoding { reason: err_str },
6868
InvalidCoseSignature { coset_error } => Self::Signature { reason: err_str },
6969
CoseSignatureAlgorithmNotSupported
7070
| CoseMissingKey

0 commit comments

Comments
 (0)