commit 570f44de7f09b6e6228717fbde3434130eb2da18 parent c2a3bef6303f400b8ab27d0ba17a3fe5cbfec228 Author: egor-achkasov <eaachkasov@gmail.com> Date: Mon, 9 Mar 2026 13:53:37 +0000 Enable LTO and strip symbols in release Diffstat:
| M | Cargo.toml | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml @@ -4,6 +4,10 @@ description = "Download threads from arhivach." version = "0.1.0" edition = "2024" +[profile.release] +lto = true +strip = "symbols" + [lib] path = "src/lib/lib.rs"