69 releases (9 breaking)

0.15.43 Apr 1, 2024
0.15.41 Feb 29, 2024
0.15.40 Dec 30, 2023
0.15.27 Nov 28, 2023
0.6.1 Nov 8, 2022

#157 in Unix APIs

Download history 53/week @ 2023-12-22 45/week @ 2023-12-29 64/week @ 2024-01-05 26/week @ 2024-01-12 57/week @ 2024-01-19 17/week @ 2024-01-26 27/week @ 2024-02-02 67/week @ 2024-02-09 53/week @ 2024-02-16 323/week @ 2024-02-23 116/week @ 2024-03-01 64/week @ 2024-03-08 31/week @ 2024-03-15 19/week @ 2024-03-22 311/week @ 2024-03-29 69/week @ 2024-04-05

438 downloads per month
Used in 5 crates (2 directly)

Apache-2.0…

635KB
18K SLoC

c-gull

A libc implementation in Rust

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

c-gull is a libc implementation. It is an implementation of the ABI described by the libc crate.

It is implemented in terms of crates written in Rust, such as c-scape, rustix, origin, libm, realpath-ext, tz-rs, printf-compat, num-complex, and posix-regex.

Currently it only supports *-*-linux-gnu ABIs, though other ABIs could be added in the future. And currently this mostly focused on features needed by Rust programs, so it doesn't have all the C-idiomatic things like qsort yet, but they could be added in the future.

The goal is to have very little code in c-gull itself, by factoring out all of the significant functionality into independent crates with more Rust-idiomatic APIs, with c-gull just wrapping those APIs to implement the C ABIs.

This is currently highly experimental, incomplete, and some things aren't optimized.

c-gull's two modes

c-gull has two main cargo features: "take-charge" and "coexist-with-libc". One of these must be enabled.

In "take-charge" mode, c-gull takes charge of the process, handling program startup (via Origin) providing malloc (via c-scape), and other things. This requires some additional setup; see the c-gull-example example crate for more details.

In "coexist-with-libc" mode, c-gull can be used as a drop-in (partial) libc replacement, provided you're using nightly Rust. To use it, just change your typical libc dependency in Cargo.toml to this:

libc = { version = "<c-gull version>", package = "c-gull", features = ["coexist-with-libc"] }

and c-gull will replace as many of the system libc implementation with its own implementations as it can. In particular, it can't replace malloc or any of the pthread functions in this configuration, but it can replace many other things. See the libc-replacement example for more details.

Dependencies

~10–20MB
~328K SLoC