master
toml 28 lines 561 Bytes
Raw
1 [package]
2 name = "chardev-sys"
3 version = "0.1.0"
4 description = "Rust sys bindings for QEMU/chardev"
5 publish = false
6
7 authors.workspace = true
8 edition.workspace = true
9 homepage.workspace = true
10 license.workspace = true
11 repository.workspace = true
12 rust-version.workspace = true
13
14 [lib]
15 path = "lib.rs"
16
17 [dependencies]
18 glib-sys = { workspace = true }
19 common = { path = "../../common" }
20 qom-sys = { path = "../qom-sys" }
21 util-sys = { path = "../util-sys" }
22
23 [lints]
24 workspace = true
25
26 [package.metadata.bindgen]
27 header = "wrapper.h"
28 rustified-enum = ["QEMUChrEvent"]