Ingvar Stepanyan
Ingvar Stepanyan
I guess I can try to rebase my patches from earlier if they are not horribly outdated. I just figured those branches by others are more up-to-date :)
Just noticed @GPlaczek forked my wasi-enabled fork of coreutils into https://github.com/antmicro/coreutils/commits/wasi/, which should presumably be more up-to-date. @GPlaczek do you want to make a PR upstreaming those changes or should...
Even though I'm not doing cross-compilation, just using `target-cpu=native`, running into a similar issue on Windows (x86_64-pc-windows-msvc): ``` ... :35:1: error: unknown use of instruction mnemonic without a size suffix...
Ah, you're right, I thought it's coming from the parser in this crate. That just leaves passing the `--att` then, same as original issue.
Judging by other PRs CI status, quite a few of these errors are coming simply from new Rust version and would happen on main branch too. I guess that needs...
> It would be good if you could go through blame and find out why errors were disabled in the first place. In any case, if we don't find a...
> 2\. When there is `--fix`, `clippy` modifies the code and raises errors **only if it fails to fix**. I'd be happy with this described behaviour, but that's not what...
> Do you think it would be possible to develop this internally-tagged-assuming-tag-first mode outside of serde_derive? I'm planning to experiment with it outside of serde_derive first, yes, but later I...
Just checked (1) on my project where the issue was initially noticed, and it indeed looks promising for cases when the tag is the first in the map. Initially benchmark...
Results above are for `from_str` btw; additionally checked `from_reader` and that one went down from ~310ms with current `derive(Deserialize)` to ~140ms.