| Crates.io | no-op |
| lib.rs | no-op |
| version | 0.1.0 |
| created_at | 2025-02-14 18:40:38.512543+00 |
| updated_at | 2025-02-14 18:40:38.512543+00 |
| description | A minimal no-op Rust binary optimized for fast startup. |
| homepage | https://github.com/SauersML/no-op |
| repository | https://github.com/SauersML/no-op |
| max_upload_size | |
| id | 1555883 |
| size | 6,987 |
no‑op is a minimal Rust binary that literally does nothing.
main() function that does nothing.panic = "abort", opt-level = "z", LTO, and a single codegen unit) to produce a fast‑startup executable.To build the binary in release mode, run:
cargo build --release
This will create an optimized executable in the target/release directory.
Since the program does nothing, running it will immediately exit with status 0:
./target/release/no-op
See benchmarks (after building) with:
cargo test --release -- --nocapture