Plecra
Plecra
@yaahc Here's the output for me: . It doesn't look like it's a problem with `color-backtrace`, rather the frame wasn't included in the `Backtrace` in the first place. I filed...
Ah, that was some poor wording on my part - I still have the issue on my PC, I just couldn't get anything similar running the test on my Windows...
I had access to the computer again today, and it looks like the msvc 2015 version was the latest once I had installed, [and rustc typically uses 2017](https://github.com/alexcrichton/cc-rs/blob/88c3a69b27a931b474e98c79eee9589216d6b3bd/src/windows_registry.rs#L587-L633). I'm installing...
The problem isn't resolved using VS2019. Here's the output of `cargo build --example usage -vv`: https://pastebin.com/raw/LgfNW1En And the binary: https://drive.google.com/file/d/1ErpB0bgW36uMQgyHUPFCluGLcVa7TLD8/view?usp=sharing
That's a shame. If there's anything I can tell you about my environment, I'd be happy to help - I don't really know where to start myself. Since it seems...
I doubt it... I'll add a test
And in case I misunderstood - the mangled `__UTF16_LIT_PREFIX_THAT_SHOULD_NEVER_CLASH_WITH_OUTER_SCOPE_UTF8` name is still in a small, internal scope. The actual logic is now two layers deep
Ah, CI is failing on the `checked_sub` not being stable in 1.46.0. Bummer. I'll revert that
This seems like a good idea. Imo it'd be better to mirror the `Box` "raw" API, since it's closer to the model that `minivec` would be used for. So I'd...
`MiniVec` whole purpose is to be able to be passed as a single pointer, mirroring the guarantee that `Box` gives about using its pointers in FFI. As the thing that...