-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 789 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
[package]
name = "snapshot-editor"
version = "1.15.0-dev"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
edition = "2024"
license = "Apache-2.0"
[[bin]]
name = "snapshot-editor"
bench = false
[features]
tracing = ["log-instrument", "fc_utils/tracing", "vmm/tracing"]
[dependencies]
clap = { version = "4.5.53", features = ["derive", "string"] }
displaydoc = "0.2.5"
fc_utils = { package = "utils", path = "../utils" }
libc = "0.2.178"
log-instrument = { path = "../log-instrument", optional = true }
semver = "1.0.27"
thiserror = "2.0.17"
vmm = { path = "../vmm" }
vmm-sys-util = "0.15.0"
[target.'cfg(target_arch = "aarch64")'.dependencies]
clap-num = "1.2.0"
[target.'cfg(target_arch = "x86_64")'.dependencies]
kvm-ioctls = "0.19.1"
[lints]
workspace = true