commit e8d87a3cd57cfdd700f6ef5adf60847e801fe3fc
parent 5e37c4aebf3961f5f671b123b8318ce82646f370
Author: Dave Kozma <dkozma@adobe.com>
Date: Wed, 3 Apr 2024 16:20:54 -0400
Add `Sync` trait to `TrustHandlerConfig` (#440)
Diffstat:
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: Send {
+pub(crate) trait TrustHandlerConfig: Sync + Send {
fn new() -> Self
where
Self: Sized;