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
28 lines (22 loc) · 634 Bytes
/
Cargo.toml
File metadata and controls
28 lines (22 loc) · 634 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
[package]
name = "firecracker"
version = "0.18.0"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
[dependencies]
backtrace = {version = "0.3", features = ["libunwind", "libbacktrace", "std"], default-features = false}
clap = { version = ">=2.27.1", default-features = false}
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" }
[dev-dependencies]
tempfile = ">=3.0.2"
[profile.dev]
panic = "abort"
[profile.release]
lto = true
panic = "abort"
[workspace]