⚙️cybics/crystal/rs.md

Rust with everything dynamically-sized removed. no heap. no Vec. no String. no unbounded recursion. every value has a known size at compile time. every loop has a known bound

the hidden truth: every u64 in Rs is secretly a word — type tag 0x01 — which is secretly a field element with a range constraint. the programmer writes conventional-looking systems code, but every operation is field-compatible. the Addressed type derive emits Hemera CIDs natively — commitment interface is baked into the type system

Rust        → full language, heap, strings, anything
  ↓ restrict
Rs          → strict subset, bounded, looks like systems code
  ↓ reveal
Trident     → same restrictions, but the field is visible

Rs and Trident share the Goldilocks field processor substrate but present opposite mental models. a byte programmer thinks in registers and bit patterns. a field programmer thinks in algebraic constraints. same representation, opposite intent

.rs file  → parser (Rust subset) → TIR → TASM / backend
.tri file → parser (Trident)     → TIR → TASM / backend
                                    ↑
                              same IR, same value tower

see cyb/languages for the complete language set. see cyb/multiproof for the proving architecture

Homonyms

rs
Rs: Safer, Faster, Field-First Rust > *Rust treats bytes as machine integers. Rs treats bytes as elements of F_p. This single shift makes determinism, addressing, and bounded computation natural rather than enforced.* Rs is a minimal, strict superset of Rust for building systems where every byte is…
soft3/hemera/rs
rs
soft3/nox/rs
rs
cyb/prysm/rs
rs
neural/eidos/rs
rs
soft3/tru/rs
rs
soft3/bbg/rs
rs
neural/inf/rs
inf/rs — the inf engine the Rust implementation of inf, written from scratch per .claude/plans/stage3-engine.md. the core language is complete and tested; the nox lowering reaches stage 3 for the expression layer. cozo/ is the gitignored study/oracle fork (excluded from this workspace). crates |…
neural/rune/rs
rs
warriors/trisha/rs
rs
soft3/zheng/rs
rs
soft3/strata/jali/rs
rs
cyb/prysm/molecules/rs
rs
soft3/strata/genies/rs
rs
soft3/strata/nebu/rs
rs
cyb/prysm/system/rs
rs
soft3/strata/kuro/rs
rs
cyb/prysm/atoms/rs
rs
soft3/strata/trop/rs
rs

Graph