From 1a8a1b4b079ab0effa20576602d96aaf80236787 Mon Sep 17 00:00:00 2001 From: Ben Brown Date: Sat, 27 Jan 2024 16:32:16 +1100 Subject: [PATCH] Increase optimisation in release mode, drop .idea folder --- bestool/.gitignore | 1 + bestool/.idea/.gitignore | 8 -------- bestool/.idea/bestool.iml | 11 ----------- bestool/.idea/modules.xml | 8 -------- bestool/.idea/vcs.xml | 6 ------ bestool/Cargo.toml | 5 +++++ 6 files changed, 6 insertions(+), 33 deletions(-) create mode 100644 bestool/.gitignore delete mode 100644 bestool/.idea/.gitignore delete mode 100644 bestool/.idea/bestool.iml delete mode 100644 bestool/.idea/modules.xml delete mode 100644 bestool/.idea/vcs.xml diff --git a/bestool/.gitignore b/bestool/.gitignore new file mode 100644 index 0000000..9f11b75 --- /dev/null +++ b/bestool/.gitignore @@ -0,0 +1 @@ +.idea/ diff --git a/bestool/.idea/.gitignore b/bestool/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/bestool/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/bestool/.idea/bestool.iml b/bestool/.idea/bestool.iml deleted file mode 100644 index c254557..0000000 --- a/bestool/.idea/bestool.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/bestool/.idea/modules.xml b/bestool/.idea/modules.xml deleted file mode 100644 index 70cf243..0000000 --- a/bestool/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/bestool/.idea/vcs.xml b/bestool/.idea/vcs.xml deleted file mode 100644 index 6c0b863..0000000 --- a/bestool/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/bestool/Cargo.toml b/bestool/Cargo.toml index 380c073..e92ec7b 100644 --- a/bestool/Cargo.toml +++ b/bestool/Cargo.toml @@ -12,3 +12,8 @@ thiserror = "1.0.50" tracing = "0.1.40" tracing-subscriber = "0.3.18" crc = "3.0.1" + + +[profile.release] +lto = "fat" +build-override.codegen-units = 1