diff options
Diffstat (limited to 'rust/qom/Cargo.toml')
-rw-r--r-- | rust/qom/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rust/qom/Cargo.toml b/rust/qom/Cargo.toml new file mode 100644 index 0000000..4be3c25 --- /dev/null +++ b/rust/qom/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "qom" +version = "0.1.0" +description = "Rust bindings for QEMU/QOM" +resolver = "2" +publish = false + +authors.workspace = true +edition.workspace = true +homepage.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true + +[dependencies] +common = { path = "../common" } +bql = { path = "../bql" } +migration = { path = "../migration" } +qemu_macros = { path = "../qemu-macros" } +util = { path = "../util" } +glib-sys.workspace = true + +[lints] +workspace = true |