master
toml 28 lines 673 Bytes
Raw
1 [package]
2 name = "migration-sys"
3 version = "0.1.0"
4 description = "Rust sys bindings for QEMU/migration"
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 util-sys = { path = "../util-sys" }
21
22 [lints]
23 workspace = true
24
25 [package.metadata.bindgen]
26 header = "wrapper.h"
27 bitfield-enum = ["MigrationPolicy", "MigrationPriority", "VMStateFlags"]
28 blocklist-function = ["vmstate_register_ram", "vmstate_register_ram_global", "vmstate_unregister_ram"]