Skip to content

Instantly share code, notes, and snippets.

View Aceeri's full-sized avatar
💭
sand is everywhere

Aceeri Aceeri

💭
sand is everywhere
View GitHub Profile
@janhohenheim
janhohenheim / config.toml
Last active May 21, 2026 09:54
My global config.toml setup for ultra fast Rust compile times
[unstable]
codegen-backend = true
[profile.dev]
# Compile using cranelift for massively faster compilation
codegen-backend = "cranelift"
# If you want to attach a debugger, set `debug = true` instead
debug = "line-tables-only"
# Assuming we don't do `catch_unwind`, we can safely abort on panics for some extra perf
# but this often doesn't jive with dependencies, so uncomment this to check if your project still works with it