From 392a752976f1a9f723af7683af45247d81a445f2 Mon Sep 17 00:00:00 2001 From: ddidderr Date: Wed, 14 Feb 2024 23:36:56 +0100 Subject: [PATCH] remove .cargo, disable lto for faster compilation during testing --- .cargo/config.toml | 2 -- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml deleted file mode 100644 index 68ed7d3..0000000 --- a/.cargo/config.toml +++ /dev/null @@ -1,2 +0,0 @@ -[build] -rustflags = ["-C", "target-cpu=native", "-C", "strip=symbols"] diff --git a/Cargo.toml b/Cargo.toml index 3987df7..8b51796 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ clap = {version = "4", features = ["derive"]} rand = {version = "0.8"} [profile.release] -lto = true +lto = false debug = false strip = true panic = "unwind"