diff options
Diffstat (limited to 'rust/util/Cargo.toml')
-rw-r--r-- | rust/util/Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/rust/util/Cargo.toml b/rust/util/Cargo.toml new file mode 100644 index 0000000..85f9143 --- /dev/null +++ b/rust/util/Cargo.toml @@ -0,0 +1,23 @@ +[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 } +glib-sys = { workspace = true } +libc = { workspace = true } +common = { path = "../common" } + +[lints] +workspace = true |