microsoft/openvmm

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bddef9a42e9ca8c8cd4aad200fb1a03582592eed

Branches

Tags

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

Clone

HTTPS

Download ZIP

openhcl/hcl/Cargo.toml

41lines · 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
20
21anyhow.workspace = true
22bitvec = { workspace = true, features = ["std"] }
23parking_lot.workspace = true
24signal-hook.workspace = true
25thiserror.workspace = true
26tracelimit.workspace = true
27tracing.workspace = true
28zerocopy.workspace = true
29fs-err.workspace = true
30libc.workspace = true
31nix = { workspace = true, features = ["ioctl"] }
32bitfield-struct.workspace = true
33safe_intrinsics.workspace = true
34open_enum.workspace = true
35getrandom.workspace = true
36
37[build-dependencies]
38build_rs_guest_arch.workspace = true
39
40[lints]
41workspace = true
42