Skip to main content

Crate armybox

Crate armybox 

Source
Expand description

§Armybox - A #[no_std] BusyBox Clone

Armybox provides Unix utilities in a tiny, #[no_std] compatible binary. It uses only libc for system calls and alloc for heap allocation.

§Features

  • Truly #[no_std]: No standard library dependency
  • Tiny binary: ~74KB release, ~33KB with UPX compression
  • Embedded-ready: Works on systems without full std support

Modules§

applets
Native no_std applet implementations
io
Low-level I/O primitives using libc
sys
System utilities and helpers

Functions§

applet_count
Get applet count
is_applet
Check if an applet exists
run_applet
Run an applet by name

Type Aliases§

AppletFn
Applet function type