mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
705 B
TOML
29 lines
705 B
TOML
[package]
|
|
name = "qemu_api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Manos Pitsidianakis <manos.pitsidianakis@linaro.org>"]
|
|
license = "GPL-2.0-or-later"
|
|
readme = "README.md"
|
|
homepage = "https://www.qemu.org"
|
|
description = "Rust bindings for QEMU"
|
|
repository = "https://gitlab.com/qemu-project/qemu/"
|
|
resolver = "2"
|
|
publish = false
|
|
keywords = []
|
|
categories = []
|
|
|
|
[dependencies]
|
|
qemu_api_macros = { path = "../qemu-api-macros" }
|
|
|
|
[build-dependencies]
|
|
version_check = "~0.9"
|
|
|
|
[features]
|
|
default = []
|
|
allocator = []
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(MESON)', 'cfg(HAVE_GLIB_WITH_ALIGNED_ALLOC)',
|
|
'cfg(has_offset_of)'] }
|