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
This commit is contained in:
a-kenji 2022-04-04 20:19:36 +02:00 committed by GitHub
parent b82d9c67db
commit cf3f3f4b5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,4 +8,4 @@
[toolchain] [toolchain]
channel = "1.57.0" channel = "1.57.0"
components = ["rustfmt", "clippy", "rust-analysis"] components = ["rustfmt", "clippy", "rust-analysis"]
targets = ["wasm32-wasi"] targets = ["wasm32-wasi", "x86_64-unknown-linux-musl"]