Kenny Strawn

Results 29 comments of Kenny Strawn

Performing some exhaustive tests when attempting to resolve #9451 revealed that #9521 is likely a duplicate of it, all thanks to a very specific panic message that shows when an...

What we need at the very least is something like `target.’cfg(all(target-os = “none”))’.build-std` because that’s really what `build-std` is meant for: bare metal targets. That would fix #9451 in particular,...

Submitted rust-lang/cargo#10084 as a fix for the showstopper that you mention — rearranges some code around so that the `-Zbuild-std` check waits until **after** `generate_targets()` is already run. Although rustfmt...

I would make the point that `target.runner` isn’t *as* critical as `build-std` in Cargo.toml because it can already be set in `.vscode/settings.json` which allows you to just click the “Run”...

Posted a [video](https://youtu.be/lPjoQc822pQ) to my YouTube channel explaining how to get the VS Code option up and running as an alternative just in case the team decides not to move...

Alright, since I kind of figured out how to design a logger on my own without the need for Edition 3-Post-3, I've decided to publish my own logger as a...

> yo was wondering how long we got till the publishing of edition 3? There is an [edition-3](https://github.com/phil-opp/blog_os/tree/edition-3) repository branch but it hasn’t been updated since January 27 (and I...

Been 3 months since this — how’s progress on the third edition coming along? Is the source code to it open yet at least, seeing as though writing it will...

Per comments on that post I’ve encountered the exact same problem. Not sure why at all.

There is a platform-agnostic [bitfield crate](https://crates.io/crates/bitfield) that definitely would be worth integrating into Rust itself if that’s what it takes to implement this.