caps 0.3.4

A pure-Rust library to work with Linux capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate caps;
use caps::runtime;

#[test]
fn test_ambient_supported() {
    runtime::ambient_set_supported().unwrap();
}

#[test]
fn test_all_supported() {
    assert_eq!(runtime::all_supported(), caps::all());
}