dpp-vc 0.14.1

W3C Verifiable Credentials, did:web documents and status lists for Odal Node
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Minimal JSON-LD context builder for DPP passport payloads.
//!
//! Intentionally small and flat: three cohesive functions (build/frame/strip
//! the `@context` envelope), not a growing vocabulary layer. If this module
//! starts accumulating per-vocabulary mapping logic, split it then — until
//! then, one file is the right size.

mod context;
#[cfg(test)]
mod tests;

pub use context::{
    REMOTE_CONTEXTS, context_value, frame_passport, passport_context, strip_context,
};