syscalls-rust 0.1.4

Linux syscalls for rust
Documentation
## Linux Syscalls 
This is the library for linux syscalls all are the signatures and data types.

## Install

Using cargo 

```bash
cargo add syscalls-rust
```
or<br>

using cargo.toml

```toml

[dependencies.syscalls-rust]
version = "0.1.4" # latest version
features = ["x64_86"] # This is the support for 64 bit systems
```

# Features

There are only available feature is 'x64_86'

You can add the features using Cargo.toml file:

```toml

[dependencies.syscalls-rust]
version = "0.1.4" # latest version
features = ["x64_86"] # This is the support for 64 bit systems
```


## Cargo.toml

Well You can see Cargo.toml and check yourself which features is now available

<!-- update this every time cargo.toml update -->

```toml
[package]
name = "syscalls-rust"
license-file = "LICENSE"
readme = "README.md"
description = "Linux syscalls for rust"
keywords = ["linux", "syscalls", "c", "kernel"]
repository = "https://github.com/CodeOfSomnath/linux-syscalls"
version = "0.1.4"
edition = "2024"



[features]
default = ["x64_86"]
x64_86 = []

[dependencies]

```


## Contribution

If you want to contribute to this project you are welcome.<br>
You can make a pull request to contribute to this library.