diff options
| author | Max Audron <audron@cocaine.farm> | 2021-12-02 18:31:19 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2021-12-02 18:31:19 +0100 |
| commit | 9c8733e42f3604817ad6b881f5654b673bbc4d00 (patch) | |
| tree | 966100eef04d1fde36b797e609d15eb1b4bb5ba7 /src/message/signalproxy/mod.rs | |
| parent | add basic buffersyncer impl (diff) | |
upgrade to rust 2021 edition
Diffstat (limited to 'src/message/signalproxy/mod.rs')
| -rw-r--r-- | src/message/signalproxy/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/message/signalproxy/mod.rs b/src/message/signalproxy/mod.rs index ac84fcb..6b96909 100644 --- a/src/message/signalproxy/mod.rs +++ b/src/message/signalproxy/mod.rs @@ -1,5 +1,3 @@ -use std::convert::TryInto; - use crate::{ deserialize::Deserialize, primitive::{Variant, VariantList}, @@ -30,6 +28,7 @@ use once_cell::sync::OnceCell; pub static SYNC_PROXY: OnceCell<SyncProxy> = OnceCell::new(); #[derive(Debug, Clone)] +#[allow(dead_code)] pub struct SyncProxy { sync_channel: crossbeam_channel::Sender<SyncMessage>, rpc_channel: crossbeam_channel::Sender<RpcCall>, |
