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
|
# https://rust-lang.github.io/api-guidelines/checklist.html
[package]
name = "selinux"
description = "Flexible Mandatory Access Control for Linux"
version = "0.4.5" # Update version in `html_root_url`.
authors = ["Koutheir Attouchi <koutheir@gmail.com>"]
edition = "2021"
readme = "../README.md"
license = "MIT"
keywords = ["selinux", "security", "access-control", "linux", "filesystem"]
categories = ["api-bindings", "filesystem", "os", "os::linux-apis"]
documentation = "https://docs.rs/selinux"
homepage = "https://codeberg.org/koutheir/selinux.git"
repository = "https://codeberg.org/koutheir/selinux.git"
[dependencies]
thiserror = { version = "1.0" }
selinux-sys = { version = "0.6" }
libc = { version = "0.2" }
bitflags = { version = "2.6" }
once_cell = { version = "1.19" }
reference-counted-singleton = { version = "0.1" }
[dev-dependencies]
assert_matches = { version = "1.5" }
tempfile = { version = "3.10" }
serial_test = { version = "3.1" }
socketpair = { version = "0.19" }
|