diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 000000000..025120425 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,16 @@ +[build] +rustflags = [ + "-C", "strip=symbols", + "-C", "codegen-units=1", + "-C", "opt-level=3" +] + +[profile.release] +debug = false +lto = "fat" +panic = "abort" +codegen-units = 1 +incremental = false + +[env] +SOURCE_DATE_EPOCH = { value = "0", force = true } \ No newline at end of file