Skip to content

Commit 6749649

Browse files
committed
v0.4.4
1 parent 63a4620 commit 6749649

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
mail-parser 0.4.4
2+
================================
3+
- Support for multi-line headers.
4+
- Text and HTML message body preview.
5+
- Improved support for raw headers.
6+
17
mail-parser 0.4.3
28
================================
39
- Mbox file parsing support (issue #11) conforming to the [QMail specification](http://qmail.org/qmail-manual-html/man5/mbox.html).

Cargo.lock

+1-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mail-parser"
33
description = "Fast and robust e-mail parsing library for Rust"
4-
version = "0.4.3"
4+
version = "0.4.4"
55
edition = "2018"
66
authors = [ "Stalwart Labs <hello@stalw.art>"]
77
license = "Apache-2.0 OR MIT"
@@ -14,7 +14,6 @@ readme = "README.md"
1414
[dependencies]
1515
encoding_rs = {version="0.8", optional=true}
1616
serde = { version = "1.0", features = ["derive"], optional=true}
17-
serde_bytes = { version = "0.11", optional=true}
1817

1918
[dev-dependencies]
2019
serde_yaml = "0.8"
@@ -24,7 +23,7 @@ bincode = "1.3.3"
2423
[features]
2524
default = ["serde_support", "full_encoding"]
2625
full_encoding = ["encoding_rs"]
27-
serde_support = ["serde", "serde_bytes"]
26+
serde_support = ["serde"]
2827

2928
[profile.bench]
3029
debug = true

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7
169169
println!("{}", serde_yaml::to_string(&message).unwrap());
170170
```
171171

172-
More examples available under the [examples](examples) directory.
172+
More examples available under the [examples](examples) directory. Please note that this library does not support building e-mail messages as this functionality is provided separately by the [`mail-builder`](https://crates.io/crates/mail-builder) crate.
173173

174174
## Testing, Fuzzing & Benchmarking
175175

0 commit comments

Comments
 (0)