Wren Etheredge
Wren Etheredge
[Nord theme](https://www.nordtheme.com/) based on the [gruvbox](https://github.com/okraits/j4-make-config/blob/master/themes/gruvbox) template
This is my take on Vim's get ascii (ga) / get utf8 (g8) command. This works on graphemes not characters, so it correctly handles things like emoji with skin tone...
Also removed `just` from the file types list as `just` does not recognize that. https://github.com/casey/just#quick-start, the 5th non-code paragraph
Currently, inherited dependencies get ignored. For example, the [`blackbox`](https://github.com/wetheredge/blackbox/blob/183faf7d02dc4f33bfcc66e39b777dd3ac58d669/blackbox/Cargo.toml) and [`blackbox_decode`](https://github.com/wetheredge/blackbox/blob/183faf7d02dc4f33bfcc66e39b777dd3ac58d669/cli/Cargo.toml) crates in https://github.com/wetheredge/blackbox inherit `tracing` from the root, but it is missing from https://deps.rs/repo/github/wetheredge/blackbox. **Docs:** - https://doc.rust-lang.org/cargo/reference/workspaces.html#the-dependencies-table - https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#inheriting-a-dependency-from-a-workspace...
### Submission Checklist 📝 - [x] I have updated existing examples or added new ones (if applicable). - [x] I have used `cargo xtask fmt-packages` command to ensure that all...
Very similar to #1110. `#[ram(zeroed)]` allows creating values that break safety invariants. ```rust #![no_std] #![no_main] use core::hint; use core::num::NonZeroU8; use esp_backtrace as _; use esp_hal::prelude::*; #[ram(rtc_fast, zeroed)] static NON_ZERO: NonZeroU8...