microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
openhcl/diag_server/Cargo.toml
45lines · modecode
| 1 | # Copyright (c) Microsoft Corporation. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | [package] |
| 5 | name = "diag_server" |
| 6 | edition.workspace = true |
| 7 | rust-version.workspace = true |
| 8 | |
| 9 | [target.'cfg(target_os = "linux")'.dependencies] |
| 10 | diag_proto.workspace = true |
| 11 | |
| 12 | azure_profiler_proto.workspace = true |
| 13 | cvm_tracing.workspace = true |
| 14 | inspect_proto.workspace = true |
| 15 | inspect = { workspace = true, features = ["defer"] } |
| 16 | mesh = { workspace = true, features = ["socket2"] } |
| 17 | mesh_rpc.workspace = true |
| 18 | pal.workspace = true |
| 19 | unix_socket.workspace = true |
| 20 | pal_async.workspace = true |
| 21 | vmsocket.workspace = true |
| 22 | |
| 23 | underhill_confidentiality = { workspace = true, features = ["std"] } |
| 24 | |
| 25 | anyhow.workspace = true |
| 26 | fs-err.workspace = true |
| 27 | futures.workspace = true |
| 28 | futures-concurrency.workspace = true |
| 29 | libc.workspace = true |
| 30 | parking_lot.workspace = true |
| 31 | tracing.workspace = true |
| 32 | net_packet_capture.workspace = true |
| 33 | profiler_worker = { workspace = true, optional = true } |
| 34 | socket2.workspace = true |
| 35 | safe_intrinsics.workspace = true |
| 36 | hvdef.workspace = true |
| 37 | |
| 38 | [features] |
| 39 | profiler = ["dep:profiler_worker"] |
| 40 | |
| 41 | [build-dependencies] |
| 42 | build_rs_guest_arch.workspace = true |
| 43 | |
| 44 | [lints] |
| 45 | workspace = true |
| 46 | |