microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
flowey/flowey_core/Cargo.toml
21lines · modecode
| 1 | # Copyright (c) Microsoft Corporation. |
| 2 | # Licensed under the MIT License. |
| 3 | |
| 4 | [package] |
| 5 | name = "flowey_core" |
| 6 | edition.workspace = true |
| 7 | rust-version.workspace = true |
| 8 | |
| 9 | [dependencies] |
| 10 | anyhow.workspace = true |
| 11 | fs-err.workspace = true |
| 12 | linkme.workspace = true |
| 13 | serde = { workspace = true, features = ["derive"] } |
| 14 | serde_json = { workspace = true, features = ["std"] } |
| 15 | serde_yaml.workspace = true |
| 16 | |
| 17 | [dev-dependencies] |
| 18 | tempfile.workspace = true |
| 19 | |
| 20 | [lints] |
| 21 | workspace = true |
| 22 | |