1//! Modules with generic logic used by several modules. 2//! 3//! - [`bit_torrent`]: `BitTorrent` protocol related logic. 4//! - [`crypto`]: Encryption related logic. 5pub mod bit_torrent; 6pub mod crypto;