master
toml 25 lines 552 Bytes
Raw
1 [package]
2 name = "qom"
3 version = "0.1.0"
4 description = "Rust bindings for QEMU/QOM"
5 resolver = "2"
6 publish = false
7
8 authors.workspace = true
9 edition.workspace = true
10 homepage.workspace = true
11 license.workspace = true
12 repository.workspace = true
13 rust-version.workspace = true
14
15 [dependencies]
16 common = { path = "../common" }
17 bql = { path = "../bql" }
18 migration = { path = "../migration" }
19 qemu_macros = { path = "../qemu-macros" }
20 util = { path = "../util" }
21 qom-sys = { path = "../bindings/qom-sys" }
22 glib-sys.workspace = true
23
24 [lints]
25 workspace = true