Skip to content

Instantly share code, notes, and snippets.

@alexcrichton
Created October 18, 2017 16:07
Show Gist options
  • Save alexcrichton/15eab1f88bc0a83fc92e3b839d756285 to your computer and use it in GitHub Desktop.
Save alexcrichton/15eab1f88bc0a83fc92e3b839d756285 to your computer and use it in GitHub Desktop.
diff --git a/Cargo.toml b/Cargo.toml
index fa42fa7..4e155bd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,11 +6,11 @@ members = [
# The development profile, used for `cargo build`.
[profile.dev]
-opt-level = 0
-debug = true
-lto = false
-debug-assertions = true
-codegen-units = 2
+#opt-level = 0
+#debug = true
+#lto = false
+#debug-assertions = true
+#codegen-units = 2
# The testing profile, used for `cargo test`.
[profile.test]
@@ -22,12 +22,12 @@ codegen-units = 1
# The release profile, used for `cargo build --release`.
[profile.release]
-opt-level = 3
-debug = false
-lto = true
-debug-assertions = false
-codegen-units = 1
-panic = 'unwind'
+#opt-level = 3
+#debug = false
+#lto = true
+#debug-assertions = false
+#codegen-units = 1
+#panic = 'unwind'
# The benchmarking profile, used for `cargo bench`.
[profile.bench]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment