-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "vmtest"
authors = ["Daniel Xu <dxu@dxuuu.xyz>"]
description = "Helps run your tests in virtual machines"
repository = "https://github.com/danobi/vmtest"
readme = "README.md"
version = "0.18.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.70.0"
[dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.26", features = ["derive", "string"] }
console = "0.15.5"
env_logger = "0.10.0"
itertools = "0.10.5"
log = "0.4.17"
qapi = { version = "0.14.0", features = ["qmp", "qga"] }
rand = "0.8.5"
regex = "1.7.1"
scopeguard = "1.1.0"
serde = "1.0.147"
serde_derive = "1.0.147"
tempfile = "3.5.0"
tinytemplate = "1.2.1"
toml = "0.5.9"
[dev-dependencies]
rexpect = "0.5"
rstest = "0.18.2"
test-log = "0.2.11"