From 8df88d2c427de33b856461bb0df63f96e665a295 Mon Sep 17 00:00:00 2001 From: ddidderr Date: Thu, 4 Aug 2022 20:32:44 +0200 Subject: [PATCH] build: musl static binary + native + strip --- .cargo/config.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..dc191ce --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +[build] +target = "x86_64-unknown-linux-musl" +rustflags = "-C target-cpu=native -C strip=symbols"