-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
52 lines (46 loc) · 1.48 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "jail"
version = "0.3.0"
authors = ["Fabian Freyer <fabian.freyer@physik.tu-berlin.de>"]
description = "FreeBSD jail library"
license = "BSD-3-Clause"
repository = "https://github.com/fubarnetes/libjail-rs"
documentation = "https://docs.rs/jail"
keywords = ["freebsd", "jail", "container", "chroot"]
categories = ["os::unix-apis", "api-bindings"]
readme = "README.md"
rust-version = "1.80"
exclude = [ ".cirrus.yml", ".github", ".gitignore", ".travis.yml", "ci" ]
edition = "2018"
[lib]
name = "jail"
path = "src/lib.rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = [
"x86_64-unknown-freebsd",
"i686-unknown-freebsd",
]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "fubarnetes/libjail-rs", branch = "master" }
is-it-maintained-issue-resolution = { repository = "fubarnetes/libjail-rs" }
is-it-maintained-open-issues = { repository = "fubarnetes/libjail-rs" }
[features]
serialize = ["serde", "serde_json", "rctl/serialize"]
[dependencies]
bitflags = "2.6.0"
byteorder = "1.4.3"
libc = "0.2.155"
log="0.4.8"
sysctl = ">=0.5.4, < 0.7"
nix = { version = "0.29.0", default-features = false, features = ["socket"] }
rctl = "0.3.0"
strum_macros = "0.26.0"
serde = { version="1.0.113", features = ["derive"], optional=true}
serde_json = { version="1.0", optional=true }
thiserror = "1.0.32"
[dev-dependencies]
cli-table = { version="0.4", default-features=false, features=["derive"] }
pretty_env_logger = "0.5"