xref: /qemu/rust/qemu-api/Cargo.toml (revision 96215036f47403438c7c7869b7cd419bd7a11f82)
1[package]
2name = "qemu_api"
3version = "0.1.0"
4authors = ["Manos Pitsidianakis <manos.pitsidianakis@linaro.org>"]
5description = "Rust bindings for QEMU"
6readme = "README.md"
7resolver = "2"
8publish = false
9
10edition.workspace = true
11homepage.workspace = true
12license.workspace = true
13repository.workspace = true
14rust-version.workspace = true
15
16[dependencies]
17qemu_api_macros = { path = "../qemu-api-macros" }
18anyhow = "~1.0"
19libc = "0.2.162"
20foreign = "~0.3.1"
21
22[features]
23default = ["debug_cell"]
24allocator = []
25debug_cell = []
26
27[lints]
28workspace = true
29