master
toml 25 lines 558 Bytes
Raw
1 [package]
2 name = "chardev"
3 version = "0.1.0"
4 description = "Rust bindings for QEMU/chardev"
5 resolver = "2"
6 publish = false
7
8 authors.workspace = true
9 edition.workspace = true
10 homepage.workspace = true
11 license.workspace = true
12 repository.workspace = true
13 rust-version.workspace = true
14
15 [dependencies]
16 glib-sys = { workspace = true }
17 chardev-sys = { path = "../bindings/chardev-sys" }
18 common = { path = "../common" }
19 bql = { path = "../bql" }
20 migration = { path = "../migration" }
21 qom = { path = "../qom" }
22 util = { path = "../util" }
23
24 [lints]
25 workspace = true