mirror of
https://github.com/qemu/qemu.git
synced 2026-04-23 22:54:54 +00:00
This inverts the dependency from hwcore to system, replacing it with a dependency from system to hwcore. It also matches how hw/core/sysbus.h is part of the system-sys crate, and hw/core/sysbus.c is part of system_ss on the C side. This fixes a linker error in hwcore integration tests on msys2. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
27 lines
581 B
TOML
27 lines
581 B
TOML
[package]
|
|
name = "system"
|
|
version = "0.1.0"
|
|
description = "Rust bindings for QEMU/system"
|
|
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" }
|
|
system-sys = { path = "../bindings/system-sys" }
|
|
bql = { path = "../bql" }
|
|
hwcore = { path = "../hw/core" }
|
|
migration = { path = "../migration" }
|
|
qom = { path = "../qom" }
|
|
util = { path = "../util" }
|
|
glib-sys.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|