MarcusGrass
MarcusGrass
Making the library a bit more up to date with common dependencies. Unsure whether special testing is required for the cli. Added a feature-gate to cli but kept it as...
- [x] Tested on all platforms changed - [x] Added an entry to `CHANGELOG.md` if knowledge of this change could be valuable to users - [x] ~~Updated documentation to reflect...
I wrote a WM and got a [bug report of weird scrolling behaviour using alacritty](https://github.com/MarcusGrass/pgwm/issues/1). The issue: Alacritty receives and acts upon input that should be grabbed. What I believe...
Hi I'm trying to run an onnx-model that uses the Einsum operator as described here https://github.com/onnx/onnx/blob/main/docs/Operators.md#Einsum added to onnx v12, which is currently unimplemented here in Tract, is implementing that...
Hello, There's a specific case where audience is supplied but empty, which I think should be treated as the same as audience not being supplied. Ie: ```json { "iss": ...,...
# Multithreaded parallelism Closes https://github.com/rust-lang/rustfmt/issues/6091 This is non-trivial because when internals can run threaded, eagerly printing cannot happen, messages have to be passed back through buffers. Even that would be...
Hi, I've been rummaging around this repo for a bit lately, getting a bit more familiar with the code by looking at some bugs. What I really like working with...
Fixes https://github.com/rust-lang/rustfmt/issues/6052 The cause of the issue is when there's an ` = ` type assignment with the generics that overflows a line. The budget given to `def.rewrite` is too...
Fixes https://github.com/rust-lang/rustfmt/issues/6059. It just needed the same caveat for binary exprs. It was already implemented for unaries so `2. .. 4.` worked but not `4. / 3. .. 5.` for...
Fixes https://github.com/rust-lang/rustfmt/issues/6060 This was a bit tricky. When the inner item is multiline, identation-count before the actual inner item start throws off the line count. In the usual case, the...