xref: /openbmc/qemu/rust/qemu-api/Cargo.toml (revision 2e1cacfb)
1[package]
2name = "qemu_api"
3version = "0.1.0"
4edition = "2021"
5authors = ["Manos Pitsidianakis <manos.pitsidianakis@linaro.org>"]
6license = "GPL-2.0-or-later"
7readme = "README.md"
8homepage = "https://www.qemu.org"
9description = "Rust bindings for QEMU"
10repository = "https://gitlab.com/qemu-project/qemu/"
11resolver = "2"
12publish = false
13keywords = []
14categories = []
15
16[dependencies]
17
18[features]
19default = []
20allocator = []
21
22# Do not include in any global workspace
23[workspace]
24
25[lints.rust]
26unexpected_cfgs = { level = "warn", check-cfg = ['cfg(MESON)', 'cfg(HAVE_GLIB_WITH_ALIGNED_ALLOC)'] }
27