88 releases

0.6.4 Jan 17, 2024
0.6.3 Dec 18, 2023
0.6.2 Nov 30, 2023
0.5.0 Jul 31, 2023
0.0.18 Jul 30, 2021

#62 in Unix APIs

Download history 1205371/week @ 2023-12-23 1837208/week @ 2023-12-30 2335225/week @ 2024-01-06 2480241/week @ 2024-01-13 2557331/week @ 2024-01-20 2692010/week @ 2024-01-27 2630605/week @ 2024-02-03 2539395/week @ 2024-02-10 2557360/week @ 2024-02-17 2701716/week @ 2024-02-24 2612790/week @ 2024-03-02 2495097/week @ 2024-03-09 2527715/week @ 2024-03-16 2475014/week @ 2024-03-23 2492357/week @ 2024-03-30 2071152/week @ 2024-04-06

9,971,383 downloads per month
Used in 19,329 crates (9 directly)

Apache-2.0…

8MB
221K SLoC

linux-raw-sys

Generated bindings for Linux's userspace API

Github Actions CI Status zulip chat crates.io page docs.rs docs

This crate contains bindgen-generated bindings for Linux's userspace API.

This is primarily of interest if you want to make raw system calls directly, which is tedious and error prone and not necessary for most use cases. For a minimal type-safe, memory-safe, and I/O-safe API to the Linux system calls built on these bindings, see the rustix crate.

The full bindings are quite large, so they've been split up into modules and cargo features. By default, general and errno are enabled, which provide most things needed by general-purpose code.

To regenerate the generated bindings, run cargo update && cd gen && cargo run --release.

Similar crates

This is similar to linux-sys, except the bindings are generated offline, rather than in a build.rs, making downstream builds simpler. And, this crate has bindings for more headers, as well as supplementary definitions not exported by Linux's headers but nonetheless needed by userspace.

Minimum Supported Rust Version (MSRV)

This crate currently works on the version of [Rust on Debian stable], which is currently Rust 1.63. This policy may change in the future, in minor version releases, so users using a fixed version of Rust should pin to a specific version of this crate.

Dependencies