Unfortunately, an example had to be compile-time disabled, since it relies on higher level crates (qdev, irq etc). The alternative is probably to move that code to an example in qemu-api or elsewere and make a link to it, or include_str. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Link: https://lore.kernel.org/r/20250827104147.717203-12-marcandre.lureau@redhat.com Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
23 lines
408 B
TOML
23 lines
408 B
TOML
[package]
|
|
name = "bql"
|
|
version = "0.1.0"
|
|
description = "Rust bindings for QEMU/BQL"
|
|
resolver = "2"
|
|
publish = false
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
migration = { path = "../migration" }
|
|
|
|
[features]
|
|
default = ["debug_cell"]
|
|
debug_cell = []
|
|
|
|
[lints]
|
|
workspace = true
|