Skip to content

Commit

Permalink
DefaultEngine: Send + Sync
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersTrier committed Apr 11, 2024
1 parent 48052e6 commit d557c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/engine_default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::engine::Neon;
// DefaultEngine - PUBLIC

/// [`Engine`] that at runtime selects the best Engine.
pub struct DefaultEngine(Box<dyn Engine>);
pub struct DefaultEngine(Box<dyn Engine + Send + Sync>);

impl DefaultEngine {
/// Creates new [`DefaultEngine`] by chosing and initializing the underlying engine.
Expand Down

0 comments on commit d557c85

Please sign in to comment.