sftse
sftse
before ``` impl X { fn x() {} } fn y() { match () { _ => y(), }; } ``` after ``` impl X { fn x() {} fn...
…hould be InlineBinary Fixes #70 This PR is independent of #68 but I can rebase on top of those changes if you want.
The inline images in this email are `PartType::Binary` instead of `PartType::InlineBinary`, is this intended behavior? ``` From: X To: Y Date: Mon, 13 Feb 2018 12:00:00 -0400 Subject: Example inline...
Fixes #67
When parsing the example ~~`legacy/034.eml`~~`legacy/032.eml` the returned parts are ``` html_body: [3, 4, 5], text_body: [2, 4, 5], attachments: [4, 5] ``` This seems at odds with [RFC8621](https://datatracker.ietf.org/doc/html/rfc8621#section-4.1.4) ```text o...
I need a way to reliably generate deterministic cfb files. It seems it suffices to be able to override the timestamps.
Was it intentional that `fn from_sparse` assumes cells are in `(row, col)` order? This test example demonstrates this is not always the case and OOM allocates due to an overflow....
This example exhibits strange behavior: `mail-parser` thinks it has a single attachment, although the only part of the email is `plain/text` and there is no multipart boundary. Thunderbird does a...