microsoft/openvmm

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
9e5737afd1aae54061680f23ef2b406886185c11

Branches

Tags

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

Clone

HTTPS

Download ZIP

openhcl/hcl/Cargo.toml

39lines · modecode

1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4[package]
5name = "hcl"
6edition.workspace = true
7rust-version.workspace = true
8
9[target.'cfg(target_os = "linux")'.dependencies]
10hv1_structs.workspace = true
11hvdef.workspace = true
12pal.workspace = true
13memory_range.workspace = true
14sidecar_client.workspace = true
15tdcall = { workspace = true, features = ["tracing"] }
16x86defs.workspace = true
17inspect.workspace = true
18user_driver.workspace = true
19
20anyhow.workspace = true
21parking_lot.workspace = true
22signal-hook.workspace = true
23thiserror.workspace = true
24tracelimit.workspace = true
25tracing.workspace = true
26zerocopy.workspace = true
27fs-err.workspace = true
28libc.workspace = true
29nix = { workspace = true, features = ["ioctl"] }
30bitfield-struct.workspace = true
31safe_intrinsics.workspace = true
32open_enum.workspace = true
33getrandom.workspace = true
34
35[build-dependencies]
36build_rs_guest_arch.workspace = true
37
38[lints]
39workspace = true
40