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