From cf3f3f4b5ef03d0efe85768f2ca57e049c73ab63 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Mon, 4 Apr 2022 20:19:36 +0200 Subject: [PATCH] add: `musl` target to `rust-toolchain` (#1294) Add `x86_64-unknown-linux-musl` target to `rust-toolchain`, so that people are able to build the e2e tests. Fixes #610 --- rust-toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain b/rust-toolchain index 3fae5c10..cc85da32 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -8,4 +8,4 @@ [toolchain] channel = "1.57.0" components = ["rustfmt", "clippy", "rust-analysis"] -targets = ["wasm32-wasi"] +targets = ["wasm32-wasi", "x86_64-unknown-linux-musl"]