microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
openhcl/host_fdt_parser/Cargo.toml
25lines · modecode
| 1 | # Copyright (c) Microsoft Corporation. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | [package] |
| 5 | name = "host_fdt_parser" |
| 6 | edition.workspace = true |
| 7 | rust-version.workspace = true |
| 8 | |
| 9 | [features] |
| 10 | tracing = ["dep:tracing"] |
| 11 | inspect = ["dep:inspect", "memory_range/inspect"] |
| 12 | |
| 13 | [dependencies] |
| 14 | hvdef.workspace = true |
| 15 | memory_range.workspace = true |
| 16 | |
| 17 | fdt.workspace = true |
| 18 | inspect = { workspace = true, optional = true } |
| 19 | |
| 20 | arrayvec.workspace = true |
| 21 | igvm_defs.workspace = true |
| 22 | tracing = { workspace = true, optional = true } |
| 23 | |
| 24 | [lints] |
| 25 | workspace = true |