Skip to main content

dkp_core/
lib.rs

1pub mod config;
2pub mod domain;
3pub mod error;
4pub mod okf;
5pub mod pack;
6pub mod procedures;
7pub mod registry;
8#[cfg(feature = "search")]
9pub mod search;
10pub mod trust;
11pub mod types;
12pub mod validate;
13
14pub use domain::{derive_and_validate_domain_slug, slugify_domain};
15pub use error::{DkpError, DkpResult};
16pub use pack::loader::Pack;
17pub use types::manifest::Manifest;