From 2569e1b27ac20b65f14cf319829510ea13da82bc Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Tue, 13 Feb 2018 14:56:43 +0100 Subject: [PATCH] Hide `proto::dss` module under dss feature flag --- src/proto/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proto/mod.rs b/src/proto/mod.rs index 11295a3..dc9bb34 100644 --- a/src/proto/mod.rs +++ b/src/proto/mod.rs @@ -3,6 +3,7 @@ #[allow(unused_qualifications, deprecated, missing_docs)] pub mod wrapped; +#[cfg(feature = "dss")] #[allow(unused_qualifications, deprecated, missing_docs)] pub mod dss;