From: Matthew Fennell Date: Tue, 14 Oct 2025 19:02:08 +0100 Subject: Strip all symbols, not just debuginfo This is to fix the debug-file-with-no-debug-symbols lintian warning. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 09d9bd9..d59a544 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,6 @@ crate-type = ["cdylib"] [dependencies] pyo3 = "=0.26.0" + +[profile.release] +strip = true