#extension #core #corelib

no-std r-ex

Zero-bloat Rust core library extensions

2 stable releases

1.0.1 Nov 7, 2022
1.0.0 Nov 6, 2022

#154 in No standard library

Download history 146/week @ 2023-12-09 151/week @ 2023-12-16 313/week @ 2023-12-23 220/week @ 2023-12-30 292/week @ 2024-01-06 156/week @ 2024-01-13 170/week @ 2024-01-20 221/week @ 2024-01-27 169/week @ 2024-02-03 156/week @ 2024-02-10 171/week @ 2024-02-17 286/week @ 2024-02-24 349/week @ 2024-03-02 257/week @ 2024-03-09 217/week @ 2024-03-16 217/week @ 2024-03-23

1,079 downloads per month
Used in 2 crates

MIT license

14KB
294 lines

r-ex

Github Crates.io Codacy grade Crates.io

Zero-bloat Rust core library extensions that improve the experience of using the Rust's type system in everyday tasks.

Highlights

  • Zero bloat. Each extension sits behind its own feature flag, and no features are enabled by default.

  • Zero risk. Any feature that may panic or uses unsafe code has -unsafe added to its feature name.

  • Zero feature interdependencies. Each extension is standalone, and compatible with all the others, so that they can be freely mixed and matched.

  • Zero external dependencies.

  • No-std. This project focuses exclusively on the core library. Would you like to see a similar project for the standard library? Let me know.

  • Stable Rust only.

  • 100% code coverage.

Examples

Copy between arrays

With r-ex (code never panics):

let mut buf = [0u8; 4];

buf
    .carved_mut()?          // automatically select range
    .copy_from(&[1, 2]);    // type-safe & size-safe copy never panics
                            // buf = [1, 2, 0, 0]

Without r-ex (can panic):

let mut buf = [0u8; 4];

buf
    .get_mut(0..2)?             // explicitly specify range
    .copy_from_slice(&[1, 2]);  // copy_from_slice panics if sizes mismatch
                                // buf = [1, 2, 0, 0]

Write a big-endian value to a buffer at offset

With r-ex:

fn write_big_endian(dest: &mut [u8], offset: usize, val: u32) {
    dest.carve_mut(offset)? // automatically select range
        .set_be(val);       // supports big-endian and little-endian values; never panics
}

Without r-ex:

fn write_big_endian(dest: &mut [u8], offset: usize, val: u32) {
    dest.get_mut(offset..offset + core::mem::size_of_val(&val))?    // explicitly specify range
        .copy_from_slice(&val.to_be_bytes())                        // copy_from_slice can panic
}

Motivation

The Rust core library is awesome. It's clear, concise, non-bloated. This is what we like it for, and we'd all like to keep it this way. And yet, we often find ourselves writing utils or misc modules with a handful of small, general-purpose extensions to the core library. Sometime these few dozen lines make for the most genius, powerful, or useful code in the whole project. To think that these moments of brilliance and ingenuity sit buried down in some internal module, unexposed to the public, is saddening.

This is where the r-ex project comes in. It is home to these little but precious core library extensions that would otherwise remain unnoticed.

Contributor guidelines

Pull requests are welcome. Please make sure your contribution adheres to the Principles section above.

No runtime deps

Features