~dfg/lx

A WIP no_std Rust crate to use Linux system calls.
Bump version to 0.4.0
Split net module by family
Add write_all to call write until the whole buffer is written

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~dfg/lx
read/write
git@git.sr.ht:~dfg/lx

You can also use your local clone with git send-email.

A Rust `no_std` library to use userspace Linux ABI designed to have no overhead,
but still be safe when possible by leveraging Rust's type system.

The code must be carefully organized such that someone who has not read it yet
can quickly guess what a file corresponds to, or where something is implemented,
and how it works: it must be hackable without reading lots of context.

An implication is that the style must remain coherent across the code base, to
make the organization predictable.

Code duplication must be avoided, but only when the duplicated piece of code
makes sense as a whole, and has a descriptive name that fits well enough.