Results 207 comments of Jasper

This seems to affect all OSes, not just Windows? Why not publish images for Linux?

I think that if this is made built-in functionality in cargo, only the `crate` clone method should be included. The other methods seem to assume that the `repository` key in...

Any ideas for the equivalent workaround when not using cross? aarch64-unknown-linux-musl is the host as well as the target here (CI build in an Alpine container) and I'm hitting this...

Thanks! this particular codebase has to use a gated feature so going back to `stable` isn't an option for now.

I just noticed that the `libc` crate is in the dependency tree (transitively), and it seems to be the source of the duplicate symbols when I try to use the...

Yes, very likely. I've hit similar issues with outline atomics with C/C++ code on aarch64-unknown-linux-musl, which are fixed with `CFLAGS=-mno-outline-atomics`. See for example rust-lang/git2-rs#706

I tried to use this workaround: `RUSTFLAGS="-C target-feature=-outline-atomics"` But it doesn't change anything. Is it because `+outline-atomics` is added *after* `-C target-feature` is processed [here](https://github.com/rust-lang/rust/pull/83655/files#diff-9f3bfd2fdc228dcb1b352082a7ebc39b19c8bea15b73141f72d9f5021aa3c66cR420)?

@npalm that's `terraform show`, this issue is about `terraform state show`

This feature is necessary for running a Monero node in any environment where the IP that outbound traffic will be SNAT'ed to differs from the IP that inbound traffic should...