iroh-dns 1.0.3

DNS-based endpoint discovery for iroh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! DNS-based endpoint discovery for iroh.
//!
//! This crate contains the core types for publishing and resolving iroh endpoint
//! information via DNS, using the [pkarr](https://pkarr.org) signed packet format.
#![deny(missing_docs, rustdoc::broken_intra_doc_links, unreachable_pub)]
#![cfg_attr(not(test), deny(clippy::unwrap_used))]

#[cfg(any(target_os = "android", doc))]
mod android;
mod attrs;
#[cfg(not(wasm_browser))]
pub mod dns;
pub mod endpoint_info;
pub mod pkarr;

#[cfg(any(target_os = "android", doc))]
pub use android::install_android_jni_context;
pub use attrs::{EncodingError, IROH_TXT_NAME, ParseError};