uefi-rs/uefi-test-runner/Cargo.toml
2026-08-24 08:34:04 +02:00

33 lines
824 B
TOML

[package]
name = "uefi-test-runner"
version = "0.2.0"
authors = ["The Rust OSDev team"]
publish = false
edition = "2024"
[dependencies]
uefi-raw = { path = "../uefi-raw" }
uefi = { path = "../uefi", features = ["alloc", "global_allocator", "panic_handler", "logger", "qemu", "log-debugcon"] }
smoltcp = { version = "0.14", default-features = false, features = ["medium-ethernet", "proto-ipv4", "socket-udp"] }
log.workspace = true
qemu-exit = { workspace = true }
[features]
# Enable the debug support protocol test.
debug_support = []
# Enable the multiprocessor test. This only works if KVM is enabled.
multi_processor = []
# Enable the PXE test.
pxe = []
# Enable the `unstable` feature of the `uefi` crate.
unstable = ["uefi/unstable"]
# Enable the TPM v1 test.
tpm_v1 = []
# Enable the TPM v2 test.
tpm_v2 = []