You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Improved API, now `Message::parse` returns `Option<Message>` to indicate when parsing was successful.
5
+
- Headers are now stored internally in a `HashMap` instead of `struct` fields.
6
+
- Added support for new RFCs:
7
+
-[RFC 2557 - MIME Encapsulation of Aggregate Documents, such as HTML (MHTML)](https://datatracker.ietf.org/doc/html/rfc2557)
8
+
-[RFC 2392 - Content-ID and Message-ID Uniform Resource Locators](https://datatracker.ietf.org/doc/html/rfc2392)
9
+
-[RFC 3282 - Content Language Headers](https://datatracker.ietf.org/doc/html/rfc3282)
10
+
-[RFC 3339 - Date and Time on the Internet: Timestamps](https://datatracker.ietf.org/doc/html/rfc3339)
11
+
12
+
mail-parser 0.2.1
13
+
================================
14
+
- Performance enhacements, now *mail-parser* is almost as fast as the `unsafe` 0.1 version.
15
+
16
+
mail-parser 0.2
17
+
================================
18
+
- Re-factoring to use **100% safe** Rust after a [discussion on Reddit](https://www.reddit.com/r/rust/comments/qkc5rk/fast_and_robust_email_parsing_library_for_rust/).
19
+
- Added `Message::is_empty`.
20
+
21
+
mail-parser 0.1.1
22
+
================================
23
+
- Bug-fixing after **fuzzing** the library.
24
+
25
+
mail-parser 0.1
26
+
================================
27
+
- Initial release with plenty of `unsafe` code to speed things up.
0 commit comments