did-pkarr 0.0.0

PKARR based Decentralized Identifiers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `did:pkarr` - [Decentralized Identifiers] using
//! [Public Key Addressable Resource Record][pkarr]s.
//!
//! [did]: https://www.w3.org/TR/did-1.0/
//! [pkarr]: https://github.com/Pubky/pkarr

pub mod dids;
pub mod doc;
#[cfg(any(feature = "dht", feature = "http"))]
pub mod io;

pub use crate::dids::DidPkarr;
pub use crate::doc::DidPkarrDocument;

pub use pkarr;

#[cfg(any(feature = "dht", feature = "http"))]
pub use crate::io::{Client, PkarrClientBlockingExt, PkarrClientExt};