microsoft/openvmm
Publicmirrored from https://github.com/microsoft/openvmmAvailable
openhcl/diag_server/Cargo.toml
44lines · 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 | cfg-if.workspace = true |
| 27 | fs-err.workspace = true |
| 28 | futures.workspace = true |
| 29 | futures-concurrency.workspace = true |
| 30 | libc.workspace = true |
| 31 | parking_lot.workspace = true |
| 32 | tracing.workspace = true |
| 33 | net_packet_capture.workspace = true |
| 34 | profiler_worker = { workspace = true, optional = true } |
| 35 | socket2.workspace = true |
| 36 | safe_intrinsics.workspace = true |
| 37 | hvdef.workspace = true |
| 38 | |
| 39 | [features] |
| 40 | profiler = ["dep:profiler_worker"] |
| 41 | mem-profile-tracing = [] |
| 42 | |
| 43 | [lints] |
| 44 | workspace = true |
| 45 | |