c2pa-rs

A fork of https://github.com/contentauth/c2pa-rs/
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/c2pa-rs.git
Log | Files | Refs | README

commit 004c1e666b67f02076632d2369102e497a38c293
parent 3eab4b79b3c54881e256d8ec696b72aaa24a851b
Author: Dylan ross <dyro@me.com>
Date:   Wed, 13 Mar 2024 09:44:43 -0700

(MINOR) Adds Send trait to TrustHandlerConfig (#426)

adds Send trait to TrustHandlerConfig

Co-authored-by: Dylan Ross <dyross@adobe.com>
Diffstat:
Msdk/src/trust_handler.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdk/src/trust_handler.rs b/sdk/src/trust_handler.rs @@ -27,7 +27,7 @@ pub(crate) static OCSP_SIGNING_OID: Oid<'static> = oid!(1.3.6 .1 .5 .5 .7 .3 .9) pub(crate) static DOCUMENT_SIGNING_OID: Oid<'static> = oid!(1.3.6 .1 .5 .5 .7 .3 .36); // Trait for supply configuration and handling of trust lists and EKU configuration store -pub(crate) trait TrustHandlerConfig { +pub(crate) trait TrustHandlerConfig: Send { fn new() -> Self where Self: Sized;