Josh Stone
Josh Stone
OK -- `cargo tree -i ahash -e features` may help you track that down!
If there's an ELF `DT_SONAME` tag, then there absolutely is an expectation of a stable ABI. Sometimes it's `libfoo.so.MAJOR`, but it could be any ABI stamp committed to long ago,...
This is still unstable, right? What exactly are we wanting to promise in relnotes? e.g. This still warns if the feature gate is not enabled: [playground](https://play.rust-lang.org/?version=beta&mode=debug&edition=2021&gist=928efa649a01ae416e3141d8643c7ae9) ```rust //#![feature(result_ffi_guarantees)] extern "C"...
FWIW, `rayon` also uses a private `Try` for its public methods like `try_fold`. You're welcome to copy it: https://github.com/rayon-rs/rayon/blob/5876c80e1208c0aae60092ddfa690a71709e326d/src/iter/mod.rs#L3388 (and `rayon` doesn't have the same constraints for wanting to avoid...
Hi - I'm unfamiliar with how meta-rust works, but I was pointed here to see if I could help... > rustc --target arm-openbmc-linux-gnueabi That's not a builtin target upstream --...
@galmasi I think your suggestion was already applied in commit 20d0e6f5e23516bcda097dfb96349798f44b5cc7.
I can help with changes in this repo, but I don't have access to `hamming`.
Sure -- that also uses its own `align_to`, but I think we just use the standard [`slice::align_to`](https://doc.rust-lang.org/std/primitive.slice.html#method.align_to) now.
> I agree that it's usually better to have a std rather than no-std feature. I chose to do it this way so that libm would only be included for...
Published!