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
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,9 @@ Performance and memory safety were two important factors while designing _mail-p
27
27
-**High performance Base64 decoding** based on Chromium's decoder ([the fastest non-SIMD decoder](https://github.com/lemire/fastbase64)).
28
28
-**Fast parsing** of message header fields, character set names and HTML entities using [perfect hashing](https://en.wikipedia.org/wiki/Perfect_hash_function).
29
29
- Written in **100% safe** Rust with no external dependencies.
30
-
- Every function in the library has been [fuzzed](#testing-fuzzing--benchmarking) and
31
-
thoroughly [tested with MIRI](#testing-fuzzing--benchmarking).
32
-
-**Battle-tested** with millions of real-world e-mail messages dating from 1995 until today.
30
+
- Every function in the library has been [fuzzed](#testing-fuzzing--benchmarking) and thoroughly [tested with MIRI](#testing-fuzzing--benchmarking).
31
+
-**Battle-tested** with millions of real-world e-mail messages dating from 1995 until today.
32
+
-Used in production environments worldwide by [Stalwart Mail Server](https://github.com/stalwartlabs/mail-server).
Copy file name to clipboardExpand all lines: src/lib.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,9 @@
33
33
//! - **High performance Base64 decoding** based on Chromium's decoder ([the fastest non-SIMD decoder](https://github.com/lemire/fastbase64)).
34
34
//! - **Fast parsing** of message header fields, character set names and HTML entities using [perfect hashing](https://en.wikipedia.org/wiki/Perfect_hash_function).
35
35
//! - Written in **100% safe** Rust with no external dependencies.
36
-
//! - Every function in the library has been [fuzzed](#testing-fuzzing--benchmarking) and
37
-
//! thoroughly [tested with MIRI](#testing-fuzzing--benchmarking).
36
+
//! - Every function in the library has been [fuzzed](#testing-fuzzing--benchmarking) and thoroughly [tested with MIRI](#testing-fuzzing--benchmarking).
38
37
//! - **Battle-tested** with millions of real-world e-mail messages dating from 1995 until today.
38
+
//! - Used in production environments worldwide by [Stalwart Mail Server](https://github.com/stalwartlabs/mail-server).
0 commit comments