master
toml 26 lines 573 Bytes
Raw
1 [package]
2 name = "tests"
3 version = "0.1.0"
4 description = "Rust integration tests for QEMU"
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 common = { path = "../common" }
17 chardev = { path = "../chardev" }
18 hwcore = { path = "../hw/core" }
19 migration = { path = "../migration" }
20 util = { path = "../util" }
21 bql = { path = "../bql" }
22 qom = { path = "../qom" }
23 system = { path = "../system" }
24
25 [lints]
26 workspace = true