From 2fd346d4771164a15555ab4ffcfba8051b714c6c Mon Sep 17 00:00:00 2001 From: Guus Waals <_@guusw.nl> Date: Wed, 29 Oct 2025 19:31:50 +0800 Subject: [PATCH] Add additional build configurations --- .cargo/config.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..601a39b --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,9 @@ +[profile.small] +inherits = "release" +opt-level = "z" +codegen-units = 1 +lto = true + +[profile.extra-small] +inherits = "small" +panic = "abort"