forked from firecracker-microvm/firecracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (26 loc) · 714 Bytes
/
Cargo.toml
File metadata and controls
34 lines (26 loc) · 714 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 = "firecracker"
version = "0.16.0"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
[dependencies]
chrono = ">=0.4"
clap = "=2.27.1"
api_server = { path = "api_server" }
fc_util = { path = "fc_util" }
jailer = { path = "jailer" }
logger = { path = "logger" }
mmds = { path = "mmds" }
seccomp = { path = "seccomp" }
vmm = { path = "vmm" }
[target.'cfg(target_arch = "x86_64")'.dependencies]
backtrace = {version = "0.3", features = ["libunwind", "libbacktrace"], default-features = false}
[dev-dependencies]
tempfile = ">=3.0.2"
[profile.dev]
panic = "abort"
[profile.release]
lto = true
panic = "abort"
[features]
vsock = ["api_server/vsock", "jailer/vsock"]
[workspace]