forked from firecracker-microvm/firecracker
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 730 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
[package]
name = "jailer"
version = "1.16.0-dev"
authors = ["Amazon Firecracker team <firecracker-devel@amazon.com>"]
edition = "2024"
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
[features]
tracing = ["log-instrument", "utils/tracing"]
[dependencies]
libc = "0.2.184"
log-instrument = { path = "../log-instrument", optional = true }
regex = { version = "1.12.3", default-features = false, features = ["std"] }
thiserror = "2.0.18"
vmm-sys-util = "0.15.0"
utils = { path = "../utils" }
[lints]
workspace = true