Tiny Binaries

But can it run on a potato?...

Your entire portfolio — 22 pages, search engine, source code viewer, analytics dashboard, DCAA audit, govdocs — in an app smaller than a selfie.

Every binary. Measured. No Docker, no runtime, no cloud. One file per product. These are ARM aarch64 release builds compiled with opt-level='s', LTO, codegen-units=1, panic='abort', strip=true. Pure Rust.

Binary Size Leaderboard

#ProjectBinary SizeNotes
1call-shield48 KBZero deps, on-device call screening
2aptnomo312 KBAutonomous APT threat hunter — auto-kills cryptominers
3exopack313 KBTest framework — zero external test deps
4provenance-docs328 KBDocs + validation tooling
5whyyoulying505 KBFraud detection engine
6pocket-server1.01 MBStatic site server — your site on your phone
7any-gpu1.5 MBGPU tensor engine — AMD/NVIDIA/Intel/Apple via wgpu (bench example)
8illbethejudgeofthat2.5 MBLegal form builder + exhibit book
9ronin-sites4.0 MBMulti-tenant shop platform
10cochranblock8.4 MBThis site — right now, serving this page
11pixel-forge9.2 MBAI sprite generator + diffusion models
12kova~51.5 MBAugment engine + local LLM inference

Efficiency — KB per Function

Binary size divided by function count. Lower is tighter.

#ProjectFunctionsTypesLOCBinaryKB/fn
1pocket-server13259316 KB1 KB/fn
2exopack3271,559313 KB9 KB/fn
3whyyoulying21211,870505 KB23 KB/fn
4pixel-forge1843711,0329.2 MB51 KB/fn
5illbethejudgeofthat40446,2082.5 MB63 KB/fn
6cochranblock5573,4048.4 MB156 KB/fn

Build Profile

Cargo.toml — release profile used across all projects
[profile.release]
opt-level = 's'      # size-optimized, keeps performance
lto = true           # link-time optimization — whole-program
codegen-units = 1    # single codegen unit — best optimization
panic = 'abort'      # no unwinding overhead
strip = true         # remove debug symbols

No Docker. No container layers. No runtime interpreter. No JIT. The binary IS the app. Copy the file, run it, done.

Why This Matters

A 48 KB binary has a smaller attack surface than a Docker hello-world image (13 MB). A 8.4 MB binary replaces a cloud stack that downloads 500+ MB of node_modules. Every byte in these binaries was compiled from source — no vendored blobs, no pre-built shared libraries, no mystery code.

For federal procurement: SBOM is complete at build time. Every dependency is pinned in Cargo.lock. The binary is deterministic — same source, same output. Supply chain integrity by construction.

See All Repos LiveGovernment DocumentsDeploy With Us