diff options
Diffstat (limited to 'rust/util/Cargo.toml')
| -rw-r--r-- | rust/util/Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/rust/util/Cargo.toml b/rust/util/Cargo.toml new file mode 100644 index 0000000000..1f6767ed9d --- /dev/null +++ b/rust/util/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "util" +version = "0.1.0" +description = "Rust bindings for QEMU/util" +resolver = "2" +publish = false + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true + +[dependencies] +anyhow = { workspace = true } +foreign = { workspace = true } +libc = { workspace = true } +common = { path = "../common" } + +[lints] +workspace = true |