iroh_mainline_content_discovery/
lib.rs

1//! A library for discovering content using the mainline DHT.
2//!
3//! This library contains the protocol for announcing and querying content, as
4//! well as the client side implementation and a few helpers for p2p quinn
5//! connections.
6#[cfg(feature = "client")]
7mod client;
8pub mod protocol;
9#[cfg(feature = "client")]
10pub use client::*;
11#[cfg(feature = "tls-utils")]
12pub mod tls_utils;