config.toml 308 B

1234567891011121314151617
  1. [build]
  2. target = "x86_64-unknown-uefi"
  3. [unstable]
  4. build-std = ["core", "compiler_builtins", "alloc", "panic_abort"]
  5. build-std-features = ["compiler-builtins-mem"]
  6. [profile.dev]
  7. incremental = true
  8. lto = 'thin'
  9. panic = 'abort'
  10. [profile.release]
  11. incremental = true
  12. lto = 'thin'
  13. opt-level = 0
  14. panic = 'abort'