Skip to content

Commit

Permalink
feat: Add Sync to AsyncDynamicAssertion (#953)
Browse files Browse the repository at this point in the history
feat: Add sync to async dynamic assertion.

Required for V24 node SDK.
  • Loading branch information
cdmurph32 authored Mar 5, 2025
1 parent faf5a02 commit 7bfc9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/dynamic_assertion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ pub trait DynamicAssertion {
/// [`Manifest`]: crate::Manifest
#[cfg(not(target_arch = "wasm32"))]
#[async_trait]
pub trait AsyncDynamicAssertion: Sync {
pub trait AsyncDynamicAssertion: Sync + Send {
/// Return the preferred label for this assertion.
///
/// Note that the label may be adjusted in case multiple assertions
Expand Down

0 comments on commit 7bfc9b0

Please sign in to comment.