Remove Send and Sync from core crate
[rust-lightning] / fuzz / src / utils / test_logger.rs
index 36e0945f5412c987b09769637ed379ecd49130ba..5046869c0a9abe1c92a0ee57d86a3f489081d760 100644 (file)
@@ -11,7 +11,7 @@ use lightning::util::logger::{Logger, Record};
 use std::sync::{Arc, Mutex};
 use std::io::Write;
 
-pub trait Output : Clone + Sync + Send + 'static {
+pub trait Output : Clone  + 'static {
        fn locked_write(&self, data: &[u8]);
 }