Rscrypto, pure-Rust crypto with industry leading public benches
Zero-deps Rust crypto with 1.61x benchmark wins over ring and rustls.
Zig Ethereum client library. Faster than alloy.rs on 20/26 benchmarks.
Zig comptime crypto library outperforms Rust's backed-by-Paradigm standard on 19/26 benchmarks.
Zig developers, Ethereum dapp builders, performance-critical blockchain applications
alloy.rs · ethers.js · web3.py
It covers ABI encoding, RLP, secp256k1 ECDSA, Keccak-256, BIP-32/39/44 HD wallets, ERC-20/721 wrappers, JSON-RPC (HTTP + WebSocket), ENS, EIP-712, and Multicall3.
The interesting part: it beats Paradigm's alloy.rs (Rust) on 19 out of 26 benchmarks. ABI encoding is 1.92x faster, u256 division is 4x faster, Keccak-256 is 1.37x faster. alloy.rs wins on secp256k1 signing (precomputed EC tables) and a few paths where Rust's sol! macro generates specialized code.
What made this possible is Zig's comptime -- function selectors and event topics are computed at compile time with zero runtime cost. The entire crypto stack (secp256k1, Keccak-256, BIP-32/39/44) is pure Zig.
Docs: https://ethzig.org Repo: https://github.com/StrobeLabs/eth.zig Benchmarks: https://github.com/StrobeLabs/eth.zig/blob/main/bench/RESULT...
Would love feedback, especially from Zig and Ethereum devs
Zero-deps Rust crypto with 1.61x benchmark wins over ring and rustls.
Aggregates validator downtime across SOL, ETH, SUI, and ATOM in one feed.
Zero CGO means cross-compile to Windows and macOS without external toolchains.
Karpathy's microgpt in C99, proves tiny coordinated models beat single large models on logic.
Pure Rust GDAL replacement ends C++ linking hell and enables WASM geospatial.
Pure Zig 3DS SDK with comptime IPC generation, but 3DS is EOL.