rusmes-loadtest 0.1.2

Multi-protocol load testing tool for RusMES — concurrent SMTP, IMAP, and JMAP load generation with HDR histogram latency reporting and interactive TUI dashboard
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Protocol clients for load testing

pub mod imap;
pub mod jmap;
pub mod pop3;
pub mod smtp;

pub use imap::ImapClient;
pub use jmap::JmapClient;
pub use pop3::Pop3Client;
pub use smtp::SmtpClient;