aboutsummaryrefslogtreecommitdiffstats
path: root/lib/warden-core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/warden-core/src/lib.rs')
-rw-r--r--lib/warden-core/src/lib.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/warden-core/src/lib.rs b/lib/warden-core/src/lib.rs
index d039516..c97bef3 100644
--- a/lib/warden-core/src/lib.rs
+++ b/lib/warden-core/src/lib.rs
@@ -7,12 +7,12 @@
)]
/// Type file descriptor
-#[cfg(any(feature = "message", feature = "pseudonyms"))]
+#[cfg(any(feature = "message", feature = "pseudonyms", feature = "configuration"))]
pub const FILE_DESCRIPTOR_SET: &[u8] = tonic::include_file_descriptor_set!("warden_descriptor");
/// Google well known types
#[allow(missing_docs)]
-#[cfg(any(feature = "message", feature = "pseudonyms"))]
+#[cfg(any(feature = "message", feature = "pseudonyms", feature = "configuration"))]
pub mod google;
/// ISO20022 messages
@@ -29,3 +29,7 @@ pub mod message;
#[allow(missing_docs)]
#[cfg(feature = "pseudonyms")]
pub mod pseudonyms;
+
+#[allow(missing_docs)]
+#[cfg(feature = "configuration")]
+pub mod configuration;