-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (25 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
32 lines (25 loc) · 767 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
29
30
31
32
[package]
name = "libscmp"
version = "0.2.0"
edition = "2018"
description = "A safe, sane Rust interface to libseccomp on Linux."
readme = "README.md"
authors = ["cptpcrd"]
license = "MIT"
categories = ["os::linux-apis"]
keywords = ["seccomp", "libseccomp"]
repository = "https://github.com/cptpcrd/libscmp"
links = "seccomp"
[features]
default = []
# Enable libseccomp v2.4.0+ features (and assume we will always run against libseccomp>=2.4.0)
libseccomp-2-4 = []
# Enable libseccomp v2.5.0+ features (and assume we will always run against libseccomp>=2.5.0)
libseccomp-2-5 = ["libseccomp-2-4"]
[dependencies]
libc = "0.2"
bitflags = "1.3"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
rustc-args = ["--cfg", "docsrs"]