summaryrefslogtreecommitdiff
path: root/.cargo/Config.toml
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2022-10-20 20:39:44 -0400
committerMicha White <botahamec@outlook.com>2022-10-20 20:39:44 -0400
commit93347346e8bd8f7412ae03a0858dd307a1df2e0d (patch)
tree17805956857c76b5fed3f47a821fcdf6141cf7a6 /.cargo/Config.toml
parente337741969160603f06a7f2b30cda375eeef99fb (diff)
Moved files into workspace
Diffstat (limited to '.cargo/Config.toml')
-rw-r--r--.cargo/Config.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.cargo/Config.toml b/.cargo/Config.toml
new file mode 100644
index 0000000..32e1bdc
--- /dev/null
+++ b/.cargo/Config.toml
@@ -0,0 +1,16 @@
+[profile.small]
+opt-level = "z"
+inherits = "release"
+
+[profile.bm]
+lto = true
+inherits = "dev"
+
+[profile.release]
+lto = true
+strip = true
+codegen-units = 1
+panic = "abort"
+
+[profile.dev]
+opt-level = 1