|
|
|
|
|
by fleventynine
227 days ago
|
|
The Rust standard library in its default config should not be used if you care about code size (std is compiled with panic/fmt and backtrace machinery on by default). no_std has no visible deps besides memcpy/memset, and is comparable to bare metal C. |
|
Zig on the other hand does lazy evaluation and tree shaking so you can include a few features of the std library without a big concern.