Diggory Hardy

Results 97 issues of 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: ![bidi-FF](https://user-images.githubusercontent.com/134893/131882554-dd27cbb6-07ac-4045-90d6-150c7b160806.png) Resvg renders like this: ![bidi-resvg](https://user-images.githubusercontent.com/134893/131882621-74889570-8e22-453b-b575-02abe5d5efe5.png) KAS-text renders like this: ![bidi-kas-text](https://user-images.githubusercontent.com/134893/131882754-12ff3159-4bf5-4c47-83ba-68496b7fc314.png) And QT renders like this: ![bidi-qt](https://user-images.githubusercontent.com/134893/131882809-e1ec6eba-6c7d-46e4-ab64-3f4ffde12106.png) Bonus: Libreoffice: ![bidi-libreoffice](https://user-images.githubusercontent.com/134893/131882949-f99e6bb0-d6f8-4a40-b9fc-4af7f178d573.png) 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...