Low-level, sans-I/O SMTP protocol implementation
Go to file
Zeeshan Ali 1065b44eef Use a char instead of single-char string
Fixes a clippy warning:

```
warning: single-character string constant used as pattern
  --> src/utils.rs:11:46
   |
11 |         escaped = Cow::Owned(escaped.replace("\"", "\\\""));
   |                                              ^^^^ help: try using a `char` instead: `'\"'`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
```
2022-10-07 18:21:10 +02:00
.github/workflows Run "scheduled.yml" only two times a week 2021-10-17 12:55:27 +02:00
examples Use a char instead of single-char string 2022-10-07 18:21:10 +02:00
fuzz Add `cargo fuzz` target for `command` parser (and serializer). 2021-05-24 17:27:35 +02:00
src Use a char instead of single-char string 2022-10-07 18:21:10 +02:00
tests Add traces from RFC 5321 (Appendix D. Scenarios) as tests. 2021-05-24 18:40:43 +02:00
.gitignore "Initial" commit. 2020-08-06 16:25:02 +02:00
Cargo.toml Bump version to 0.2.0. 2022-06-12 09:25:11 +02:00
LICENSE-APACHE License 2020-08-09 11:27:59 +02:00
LICENSE-MIT License 2020-08-09 11:27:59 +02:00
README.md Update README.md 2021-10-26 14:55:48 +02:00
SECURITY.md Update SECURITY.md 2022-02-15 21:56:02 +01:00
deny.toml Add "Unicode-DFS-2016" to allowed licenses in `deny.toml`. 2022-10-07 17:46:06 +02:00

README.md

CI Scheduled docs

SMTP Protocol

This crate provides some types and many parsers for SMTP. Many things are there, but it is still in a very rough state.

License

This crate is dual-licensed under Apache 2.0 and MIT terms.