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
32 lines (25 loc) · 636 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 636 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 = "firecracker"
version = "0.11.0"
authors = ["Amazon firecracker team <firecracker-devel@amazon.com>"]
[dependencies]
backtrace = {version = "0.3", features = ["libunwind", "libbacktrace"], default-features = false}
chrono = ">=0.4"
clap = "=2.27.1"
serde_json = ">=1.0.9"
api_server = { path = "api_server" }
jailer = { path = "jailer" }
logger = { path = "logger"}
mmds = { path = "mmds" }
vmm = { path = "vmm" }
fc_util = { path = "fc_util" }
[dev-dependencies]
tempfile = ">=3.0.2"
[profile.dev]
panic = "abort"
[profile.release]
lto = true
panic = "abort"
[features]
vsock = ["api_server/vsock"]
[workspace]