forked from firecracker-microvm/firecracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (28 loc) · 857 Bytes
/
Cargo.toml
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 = "firecracker"
version = "0.12.0"
authors = ["Amazon firecracker team <[email protected]>"]
[dependencies]
# Hardcoding `backtrace`'s version to work around unit test failure triggered by `autocfg` newly introduced dependency.
# Opened https://github.com/alexcrichton/backtrace-rs/issues/146.
backtrace = {version = "=0.3.9", features = ["libunwind", "libbacktrace"], default-features = false}
chrono = ">=0.4"
clap = "=2.27.1"
serde_json = ">=1.0.9"
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"
[features]
vsock = ["api_server/vsock"]
[workspace]