Diggory Hardy
Diggory Hardy
I haven't been following the constant-evaluation work, but wanted to check that this is on the agenda? ```rust // for any T ... static mut X: Mutex = Mutex::new(None); ```
The docs for `ascii_case_insensitive` state: > NOTE: In the future, support for full Unicode case insensitivity may be added, but ASCII case insensitivity is comparatively much simpler to add. I...
So, for any application / library using multiple windows / render targets, it makes sense to track the draw queue and cache validation status per window, but it may still...
I was wondering why some fonts in my scan had unexpected family names (e.g. `DejaVu Sans Light` instead of `DejaVu Sans`)... according to the [Name ID docs](https://docs.microsoft.com/en-us/typography/opentype/spec/name), ID=1 is the...
Using standard DejaVu system fonts: ``` $ fc-list ... /usr/share/fonts/dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique ``` Properties detected by `fontdb`: name | family | style | weight | stretch | monospace | path...
Using [this SVG](https://upload.wikimedia.org/wikipedia/commons/9/9b/SVG_Test_TextAlign.svg), Firefox renders like this:  Resvg renders like this:  KAS-text renders like this:  And QT renders like this:  Bonus: Libreoffice:  The text is...
Creating a new issue because this is, in my opinion, probably the most commonly encountered and annoying to work around issue caused by no-orphan rules: ```rust struct NewType(T); impl From...
My Cargo config looks like this: ``` $ cd $HOME $ cat .cargo/config [build] target-dir = ".cache/cargo" ``` Cargo resolves this to `$HOME/.cache/cargo`. Interpretation of relative paths within config files...
## 🐛 Bug description Running `wasm-pack build` says `Finished release [optimized] target(s) in 0.00s` but does not terminate. Nothing further appears to happen until I press Ctrl-C. The following gets...