2021-04-17 19:57:30 +00:00
|
|
|
//! # PTTH
|
|
|
|
//!
|
|
|
|
//! PTTH is a set of tools for running HTTP servers that are disguised
|
|
|
|
//! as HTTP clients.
|
|
|
|
//!
|
|
|
|
//! This crate only contains integration tests. The other crates
|
|
|
|
//! fit into this dependency DAG:
|
|
|
|
//!
|
2021-04-17 22:35:37 +00:00
|
|
|
//! ```text
|
2021-04-17 19:57:30 +00:00
|
|
|
//! * ptth
|
|
|
|
//! |\
|
|
|
|
//! | * ptth_server
|
|
|
|
//! * | ptth_relay
|
|
|
|
//! |/
|
|
|
|
//! * ptth_core
|
|
|
|
//! ```
|
|
|
|
|
2020-10-30 23:18:42 +00:00
|
|
|
#[cfg (test)]
|
2020-11-26 23:33:10 +00:00
|
|
|
mod tests;
|