mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00

This avoids the repeated ".0" when using the Interrupt struct. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
26 lines
593 B
TOML
26 lines
593 B
TOML
[package]
|
|
name = "pl011"
|
|
version = "0.1.0"
|
|
authors = ["Manos Pitsidianakis <manos.pitsidianakis@linaro.org>"]
|
|
description = "pl011 device model for QEMU"
|
|
resolver = "2"
|
|
publish = false
|
|
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
bilge = { version = "0.2.0" }
|
|
bilge-impl = { version = "0.2.0" }
|
|
bits = { path = "../../../bits" }
|
|
qemu_api = { path = "../../../qemu-api" }
|
|
qemu_api_macros = { path = "../../../qemu-api-macros" }
|
|
|
|
[lints]
|
|
workspace = true
|