[package]
edition = "2021"
rust-version = "1.75.0"
name = "mx20022-parse"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "XML parsing and serialization for ISO 20022 MX financial messages via quick-xml and serde"
homepage = "https://github.com/socrates8300/mx20022"
documentation = "https://docs.rs/mx20022-parse"
readme = false
keywords = [
"iso20022",
"xml",
"payments",
"parsing",
"finance",
]
categories = [
"encoding",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/socrates8300/mx20022"
[lib]
name = "mx20022_parse"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "roundtrip_all"
path = "tests/roundtrip_all.rs"
[[bench]]
name = "parse_bench"
path = "benches/parse_bench.rs"
harness = false
[dependencies.mx20022-model]
version = "0.1.1"
features = ["all"]
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.pretty_assertions]
version = "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"