microsoft/openvmm

Public

mirrored from https://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/apply-async-process-wait-functionality

Branches

Tags

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

Clone

HTTPS

Download ZIP

openhcl/hcl/Cargo.toml

43lines · 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]
10cvm_tracing.workspace = true
11hv1_structs.workspace = true
12hvdef.workspace = true
13pal.workspace = true
14memory_range.workspace = true
15sidecar_client.workspace = true
16tdcall = { workspace = true, features = ["tracing"] }
17x86defs.workspace = true
18inspect.workspace = true
19user_driver.workspace = true
20aarch64defs.workspace = true
21
22anyhow.workspace = true
23arrayvec.workspace = true
24bitvec = { workspace = true, features = ["std"] }
25parking_lot.workspace = true
26signal-hook.workspace = true
27thiserror.workspace = true
28tracelimit.workspace = true
29tracing.workspace = true
30zerocopy.workspace = true
31fs-err.workspace = true
32libc.workspace = true
33nix = { workspace = true, features = ["ioctl"] }
34bitfield-struct.workspace = true
35safe_intrinsics.workspace = true
36open_enum.workspace = true
37getrandom.workspace = true
38
39[build-dependencies]
40build_rs_guest_arch.workspace = true
41
42[lints]
43workspace = true
44