microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fe6466bb01d223039c854c8736177cb68dbcca28

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

openhcl/host_fdt_parser/Cargo.toml

25lines · modecode

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