Format Cargo.toml

This commit is contained in:
Amanieu d'Antras
2022-01-11 13:34:50 +00:00
parent ee4de54240
commit be61078e4e
2 changed files with 5 additions and 3 deletions

View File

@@ -1,7 +1,10 @@
[package] [package]
name = "regalloc2" name = "regalloc2"
version = "0.0.1" version = "0.0.1"
authors = ["Chris Fallin <chris@cfallin.org>", "Mozilla SpiderMonkey Developers"] authors = [
"Chris Fallin <chris@cfallin.org>",
"Mozilla SpiderMonkey Developers",
]
edition = "2018" edition = "2018"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
description = "Backtracking register allocator inspired from IonMonkey" description = "Backtracking register allocator inspired from IonMonkey"
@@ -27,4 +30,3 @@ overflow-checks = true
default = [] default = []
checker = [] checker = []
fuzzing = ["arbitrary", "checker"] fuzzing = ["arbitrary", "checker"]

View File

@@ -54,4 +54,4 @@ doc = false
[profile.release] [profile.release]
debug = true debug = true
debug-assertions = true debug-assertions = true
overflow-checks = true overflow-checks = true