mx20022-cli 0.2.0

CLI tool for inspecting, validating, and translating ISO 20022 and SWIFT MT financial messages
1
2
3
4
5
6
7
8
9
//! Subcommand implementations for the `mx20022-cli` tool.

pub mod codegen;
pub mod inspect;
pub mod translate;
pub mod validate;

/// Maximum file size accepted by any command (10 MB).
pub(crate) const MAX_FILE_SIZE: u64 = 10 * 1024 * 1024;