[package]
edition = "2021"
rust-version = "1.75.0"
name = "mx20022-codegen"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "XSD to Rust code generator for ISO 20022 message types"
readme = false
keywords = [
"iso20022",
"swift",
"payments",
"financial",
"xml",
]
categories = [
"finance",
"parser-implementations",
"encoding",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/socrates8300/mx20022"
[lib]
name = "mx20022_codegen"
path = "src/lib.rs"
[[bin]]
name = "mx20022-codegen"
path = "src/main.rs"
[[test]]
name = "snapshots"
path = "tests/snapshots.rs"
[dependencies.indexmap]
version = "2"
[dependencies.prettyplease]
version = "0.2"
[dependencies.proc-macro2]
version = "1"
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dependencies.thiserror]
version = "2"
[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"