diff options
| author | Micha White <botahamec@outlook.com> | 2022-10-20 20:39:44 -0400 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2022-10-20 20:39:44 -0400 |
| commit | 93347346e8bd8f7412ae03a0858dd307a1df2e0d (patch) | |
| tree | 17805956857c76b5fed3f47a821fcdf6141cf7a6 /.cargo | |
| parent | e337741969160603f06a7f2b30cda375eeef99fb (diff) | |
Moved files into workspace
Diffstat (limited to '.cargo')
| -rw-r--r-- | .cargo/Config.toml | 16 |
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 |
