From 5aa0455950a648114525f8e2e187e9f118600a8b Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Tue, 26 Mar 2019 16:21:23 +0100 Subject: [PATCH] Removed remaining stray bounds for `Send + Sync` that still survived PR #42 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index dab0200f..de74d59f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -406,7 +406,7 @@ pub trait Query: Debug + Default + Sized + 'static { type Value: Clone + Debug; /// Internal struct storing the values for the query. - type Storage: plumbing::QueryStorageOps + Send + Sync; + type Storage: plumbing::QueryStorageOps; /// Associate query group struct. type Group: plumbing::QueryGroup<