aboutsummaryrefslogtreecommitdiffstats
path: root/lib/warden-core/src/lib.rs
blob: 19d02f34f9149a5c58b38c7ddad3539e3dd94011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! warden-core
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(
    missing_docs,
    rustdoc::broken_intra_doc_links,
    missing_debug_implementations
)]

/// Google well known types
#[allow(missing_docs)]
#[cfg(feature = "iso20022")]
pub mod google;

/// ISO20022 messages
#[allow(missing_docs)]
#[cfg(feature = "iso20022")]
pub mod iso20022;

/// Message in transit
#[allow(missing_docs)]
#[cfg(feature = "iso20022")]
pub mod message;