From 9f0b60c7a0441464dcdeadce9581b6eecc834e18 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 19 Jun 2024 17:34:13 +0800 Subject: [PATCH] rust: disable incremental build for release build so that the release build is reproducible. a reproduciable helps developers to perform postmortem debugging. Fixes #19225 Signed-off-by: Kefu Chai Closes scylladb/scylladb#19374 --- rust/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 6d5b1136dd..000152a39f 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -34,6 +34,7 @@ incremental = false [profile.rust-release] inherits = "release" debug = true +incremental = false [profile.rust-coverage] inherits = "dev"