web5_rust/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
mod error;
pub use error::Error;

mod common;
mod ed25519;
pub mod dids;

#[cfg(not(feature = "dwn"))]
mod dwn;

#[cfg(feature = "dwn")]
pub mod dwn;

#[cfg(feature = "agent")]
pub mod agent;

pub extern crate simple_database;

#[cfg(test)]
mod tests;