[package]
edition = "2021"
rust-version = "1.75.0"
name = "mx20022-cli"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for inspecting, validating, and translating ISO 20022 and SWIFT MT financial messages"
homepage = "https://github.com/socrates8300/mx20022"
documentation = "https://docs.rs/mx20022-cli"
readme = false
keywords = [
"iso20022",
"swift",
"payments",
"cli",
"finance",
]
categories = [
"command-line-utilities",
"finance",
]
license = "Apache-2.0"
repository = "https://github.com/socrates8300/mx20022"
[[bin]]
name = "mx20022-cli"
path = "src/main.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.mx20022-codegen]
version = "0.1.1"
[dependencies.mx20022-model]
version = "0.1.1"
features = ["all"]
[dependencies.mx20022-parse]
version = "0.1.1"
[dependencies.mx20022-translate]
version = "0.1.1"
[dependencies.mx20022-validate]
version = "0.1.1"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"