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