Hello, it looks like the s390x-musl image doesn't have installed std
Here's a simple test reproducing the issue:
$ cargo init test-crate && cd test-crate
Creating binary (application) package
note: see more `Cargo.toml` keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
$ docker run --rm -it -v "$PWD":/home/rust/src messense/rust-musl-cross:s390x-musl cargo build
Compiling test-crate v0.1.0 (/home/rust/src)
error[E0463]: can't find crate for `std`
|
= note: the `s390x-unknown-linux-musl` target may not be installed
= help: consider building the standard library from source with `cargo build -Zbuild-std`
For more information about this error, try `rustc --explain E0463`.
error: could not compile `test-crate` (bin "test-crate") due to 1 previous error
Hello, it looks like the s390x-musl image doesn't have installed std
Here's a simple test reproducing the issue: