Cranelift, a code-generation backend, has been made available as an optional component in the Rust nightly toolchain, allowing users to use it as an alternative to the existing LLVM backend. Cranelift is designed to generate code more quickly than LLVM, thanks to its stripped-down design and focus on speed of compilation rather than speed of the produced code. The article discusses the architecture and optimization techniques used in Cranelift, including its use of e-graphs to represent equivalence classes of intermediate representations. Initial benchmarks show promising results, with Cranelift reducing compile times by up to 40% compared to LLVM.