mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
32 lines
685 B
TOML
32 lines
685 B
TOML
[package]
|
|
name = "system-sys"
|
|
version = "0.1.0"
|
|
description = "Rust sys bindings for QEMU/system"
|
|
publish = false
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
glib-sys = { workspace = true }
|
|
common = { path = "../../common" }
|
|
migration-sys = { path = "../migration-sys" }
|
|
util-sys = { path = "../util-sys" }
|
|
qom-sys = { path = "../qom-sys" }
|
|
hwcore-sys = { path = "../hwcore-sys" }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.bindgen]
|
|
header = "wrapper.h"
|
|
rustified-enum = ["device_endian"]
|
|
additional-files = ["system/memory.*"]
|