master
toml 25 lines 471 Bytes
Raw
1 [package]
2 name = "util-sys"
3 version = "0.1.0"
4 description = "Rust sys bindings for QEMU/util"
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
20 [lints]
21 workspace = true
22
23 [package.metadata.bindgen]
24 header = "wrapper.h"
25 rustified-enum = ["module_init_type", "QEMUClockType"]