File: Cargo.toml.orig

package info (click to toggle)
rust-capctl 0.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296 kB
  • sloc: makefile: 2
file content (34 lines) | stat: -rw-r--r-- 750 bytes parent folder | download
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
[package]
name = "capctl"
version = "0.2.4"
edition = "2018"

description = "A pure-Rust interface to prctl() and Linux capabilities."
readme = "README.md"
authors = ["cptpcrd"]
license = "MIT"
categories = ["os::linux-apis"]
keywords = ["prctl", "capabilities"]
repository = "https://github.com/cptpcrd/capctl"

[features]
default = ["std"]

std = []

[dependencies]
libc = { version = "0.2", default-features = false }
cfg-if = "1.0"
bitflags = "1.3"

serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }

sc = { version = "0.2", optional = true }

[dev-dependencies]
serde_test = "1.0"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
rustc-args = ["--cfg", "docsrs"]