A blazingly fast and memory efficient memory allocator to be used in `no_std` environments.
A simple `no_std` allocator written in Rust that manages memory in fixed-size chunks/blocks. Useful for basic `no_std` binaries where you want to manage a heap of a few megabytes without complex features such as paging/page table management. Instead, this allocator gets a fixed/static memory region and allocates memory from there. This memory region can be contained inside the executable file that uses this allocator.
rustgym solutions
Implements Blake2b for `crypto_api`
An implementation of ChaCha20-IETF, Poly1305 and ChachaPoly-IETF for `crypto_api`
A port of D3/d3-geo
Tiny simple JSON parser/generator
Safe async runtime executor - ARCHIVED: Code moved to `safina` crate.
I'm at the buffer pool. I'm at the MPSC channel. I'm at the combination MPSC channel and buffer pool.
A lightweight, cross-platform Rust code profiling toolkit with zero overhead when disabled
Stalloc is a fast first-fit memory allocator that you can use to quickly speed up your Rust programs.
Lock-free concurrent hash map: elements never move after insertion, enabling lock-free reads