sys 0.0.1

Capability-based System Interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Capability-based System Interfaces
//!
//! This library provides _**Sys**tem Interfaces_ following a
//! **capability-based design**. It does not require any particular runtime,
//! but can optionally be combined with the Rust Standard Library.

#![no_std]

extern crate alloc;
extern crate core;

#[cfg(any(test, feature = "std"))]
extern crate std;

pub mod ffi;
pub mod linux;