samotop 0.13.2

SMTP server and library built on async-std
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "parser-peg")]
pub use samotop_parser::*;
#[cfg(feature = "parser-nom")]
pub use samotop_parser_nom::*;

#[cfg(feature = "parser-peg")]
pub use samotop_parser::SmtpParserPeg as SmtpParser;
#[cfg(all(feature = "parser-nom", not(feature = "parser-peg")))]
pub use samotop_parser_nom::SmtpParserNom as SmtpParser;

pub use samotop_core::smtp::Parser;
pub use samotop_core::smtp::*;