[package]
edition = "2021"
name = "rusl"
version = "0.5.0"
build = false
exclude = ["test-files/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust linux interface layer"
homepage = "https://github.com/MarcusGrass/tiny-std"
documentation = "https://docs.rs/rusl"
readme = "Readme.md"
keywords = [
"ffi",
"bindings",
"operating",
"system",
"linux",
]
categories = [
"external-ffi-bindings",
"no-std",
"os",
]
license = "MPL-2.0"
repository = "https://github.com/MarcusGrass/tiny-std"
[features]
alloc = []
default = ["alloc"]
integration-test = []
[lib]
name = "rusl"
path = "src/lib.rs"
[[test]]
name = "sleep"
path = "tests/sleep.rs"
[[test]]
name = "spawn"
path = "tests/spawn.rs"
[dependencies.linux-rust-bindings]
version = "0.1.3"
features = ["all"]
[dependencies.sc]
version = "0.2.7"
[dev-dependencies]