microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
openhcl/diag_client/Cargo.toml
30lines · modecode
| 1 | # Copyright (c) Microsoft Corporation. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | [package] |
| 5 | name = "diag_client" |
| 6 | edition.workspace = true |
| 7 | rust-version.workspace = true |
| 8 | |
| 9 | [dependencies] |
| 10 | diag_proto.workspace = true |
| 11 | |
| 12 | fs-err.workspace = true |
| 13 | inspect_proto.workspace = true |
| 14 | guid.workspace = true |
| 15 | inspect.workspace = true |
| 16 | mesh_rpc.workspace = true |
| 17 | unix_socket.workspace = true |
| 18 | pal_async.workspace = true |
| 19 | vmsocket.workspace = true |
| 20 | |
| 21 | anyhow.workspace = true |
| 22 | futures.workspace = true |
| 23 | socket2.workspace = true |
| 24 | thiserror.workspace = true |
| 25 | |
| 26 | [target.'cfg(windows)'.dependencies] |
| 27 | windows-sys = { workspace = true, features = ["Win32_Networking_WinSock"] } |
| 28 | |
| 29 | [lints] |
| 30 | workspace = true |
| 31 | |