1//! `BitTorrent` [`InfoHash`] v1 type for Rust crates. 2 3#![allow(clippy::module_name_repetitions)] 4 5mod info_hash; 6 7pub use self::info_hash::{ConversionError, INFO_HASH_BYTES_LEN, InfoHash, fixture};