-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 997 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
33
34
35
[package]
name = "axvmconfig"
version = "0.2.2"
edition = "2021"
authors = [
"Keyang Hu <keyang.hu@qq.com>",
"Mingxian Su <aarkegz@gmail.com>",
]
keywords = ["axvisor", "config", "toml"]
repository = "https://github.com/arceos-hypervisor/axvmconfig"
description = "A simple VM configuration tool for ArceOS-Hypervisor."
license = "Apache-2.0"
[features]
default = ["std"]
std = ["dep:clap", "dep:env_logger", "dep:schemars"]
[lib]
name = "axvmconfig"
path = "src/lib.rs"
[[bin]]
name = "axvmconfig"
path = "src/main.rs"
[dependencies]
axerrno = "0.2.0"
clap = {version = "4.5.23", optional = true, features = ["derive"]}
enumerable = {version = "1.2", default-features = false}
env_logger = {version = "0.11.3", optional = true}
log = "0.4.21"
schemars = {version = "1.1.0", optional = true}
serde = {version = "1.0.204", default-features = false, features = ["derive"]}
serde_repr = "0.1"
toml = {version = "0.9.5", default-features = false, features = ["serde", "parse", "display"]}