| 1 | [package] |
| 2 | name = "hwcore" |
| 3 | version = "0.1.0" |
| 4 | description = "Rust bindings for QEMU/hwcore" |
| 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 | glib-sys.workspace = true |
| 17 | hwcore-sys = { path = "../../bindings/hwcore-sys" } |
| 18 | qemu_macros = { path = "../../qemu-macros" } |
| 19 | common = { path = "../../common" } |
| 20 | bql = { path = "../../bql" } |
| 21 | qom = { path = "../../qom" } |
| 22 | chardev = { path = "../../chardev" } |
| 23 | migration = { path = "../../migration" } |
| 24 | util = { path = "../../util" } |
| 25 | |
| 26 | [lints] |
| 27 | workspace = true |