Skip to content

Commit

Permalink
Add deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tmathern committed Jan 22, 2025
1 parent 470ee47 commit dc32386
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ crate-type = ["lib", "cdylib"]
normal = ["openssl-src"]

[dependencies]
c2pa = {version = "0.40.0", features = ["unstable_api", "file_io", "openssl", "pdf", "fetch_remote_manifests"]}
c2pa = {version = "0.41.0", features = ["unstable_api", "file_io", "openssl", "pdf", "fetch_remote_manifests"]}
c2pa-crypto = {version = "0.3.0" }
thiserror = "1.0.49"
uniffi = "0.28.2"
openssl-src = "=300.3.1" # Required for openssl-sys
Expand Down
5 changes: 5 additions & 0 deletions src/callback_signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
// each license.

use c2pa::{Signer, SigningAlg};
use c2pa_crypto::raw_signature::RawSigner;
use log::debug;

use crate::Result;
Expand Down Expand Up @@ -57,6 +58,10 @@ impl Signer for RemoteSigner {
fn direct_cose_handling(&self) -> bool {
true
}

fn raw_signer(&self) -> Box<&dyn RawSigner> {
todo!()
}
}

impl CallbackSigner {
Expand Down

0 comments on commit dc32386

Please sign in to comment.