Files
s390-tools/rust/Cargo.toml
Marc Hartmayer 618e22e38b utils: Add utils_macros: Implement ValueEnumDisplay and ValueEnumFromStr macros
Add new derive macros ValueEnumDisplay and ValueEnumFromStr which can be
used to derive 'Display' and 'FromStr' for enums implementing
'clap::ValueEnum'. It helps in reducing boilerplate code and keep things
in sync.

Assisted-by: IBM Bob:1.0.4
Signed-off-by: Marc Hartmayer <marc@linux.ibm.com>
Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
2026-07-28 11:00:00 +02:00

32 lines
537 B
TOML

[workspace]
members = [
"cpacfinfo",
"pv",
"pv_core",
"pvapconfig",
"pvattest",
"pvebc",
"pvimg",
"pvinfo",
"pvsecret",
"pvverify",
"utils",
"utils_macros",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT"
rust-version = "1.85.0"
[workspace.lints.rust]
missing_docs = { level = "deny", priority = 1 }
missing_debug_implementations = "warn"
nonstandard-style = "warn"
trivial_numeric_casts = "warn"
unstable_features = "warn"
unused = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"