forked from firecracker-microvm/firecracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (23 loc) · 804 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
[package]
name = "jailer"
version = "1.11.0-dev"
authors = ["Amazon Firecracker team <[email protected]>"]
edition = "2021"
description = "Process for starting Firecracker in production scenarios; applies a cgroup/namespace isolation barrier and then drops privileges."
homepage = "https://firecracker-microvm.github.io/"
license = "Apache-2.0"
[[bin]]
name = "jailer"
bench = false
[dependencies]
libc = "0.2.164"
log-instrument = { path = "../log-instrument", optional = true }
nix = { version = "0.29.0", default-features = false, features = ["dir"] }
regex = { version = "1.11.1", default-features = false, features = ["std"] }
thiserror = "2.0.3"
vmm-sys-util = "0.12.1"
utils = { path = "../utils" }
[features]
tracing = ["log-instrument", "utils/tracing"]
[lints]
workspace = true