mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
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>
32 lines
537 B
TOML
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"
|