mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
The new cpacfinfo command provides information about CPACF, such as which CPACF functions are installed, and make use of the new MSA 13 Query Authentication Information function. Signed-off-by: Finn Callies <fcallies@linux.ibm.com> Reviewed-by: Harald Freudenberger <freude@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
20 lines
452 B
TOML
20 lines
452 B
TOML
[package]
|
|
name = "cpacfinfo"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.71"
|
|
clap = { version = "4.1", features = ["derive"] }
|
|
libc = "0.2"
|
|
serde = { version = "1.0.164", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
utils = { path = "../utils" }
|
|
zerocopy = { version="0.7", features = ["derive"] }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
clap = { version ="4.1", features = ["derive"]}
|
|
lazy_static = "1.1"
|