summaryrefslogtreecommitdiffstats
path: root/rust-toolchain.toml
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2022-05-22 12:48:34 +0200
committerGitHub <noreply@github.com>2022-05-22 12:48:34 +0200
commitd26773070449504177ad1cfd94f0fcd120e4e9d8 (patch)
treedc6b4b7925070defe1ad3f23dce62ef840550222 /rust-toolchain.toml
parentaff1214d1ee078714b694ff3e845d2365f59cf35 (diff)
build: strip debug symbols (#1177)
* build: strip debug symbols Stripping the symbols for the release build drops binary size currently by 20% and the plugin binaries by up to 50%. Alternative: Keep the debug symbols also on releases * bump(rust): `1.58.0` -> `1.59.0` * chore: bump MSRV `1.56` -> `1.59` Needed for cargos strip-debug feature
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r--rust-toolchain.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index e37283b00..8c323d524 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -1,5 +1,5 @@
# This file is updated by `update-toolchain.sh`
[toolchain]
-channel = "1.58.0"
+channel = "1.59.0"
components = ["rustfmt", "clippy", "rust-analysis"]
targets = ["wasm32-wasi", "x86_64-unknown-linux-musl"]