From b9cc88c492a6c885b576641e688499cd767d771d Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Mon, 1 Apr 2024 15:29:59 -0400 Subject: [PATCH] fix: add Sync bound to Message --- src/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/mod.rs b/src/app/mod.rs index 59085c58..76a37a45 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -401,7 +401,7 @@ where type Flags; /// Message type specific to our app. - type Message: Clone + std::fmt::Debug + Send + 'static; + type Message: Clone + std::fmt::Debug + Send + Sync + 'static; /// An ID that uniquely identifies the application. /// The standard is to pick an ID based on a reverse-domain name notation.