identity_credential/sd_jwt_vc/
mod.rs

1// Copyright 2020-2024 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4mod builder;
5mod claims;
6mod error;
7/// Additional metadata defined by the SD-JWT VC specification
8/// such as issuer's metadata and credential type metadata.
9pub mod metadata;
10mod presentation;
11/// Resolver trait.
12pub mod resolver;
13mod status;
14#[cfg(test)]
15pub(crate) mod tests;
16mod token;
17
18pub use builder::*;
19pub use claims::*;
20pub use error::Error;
21pub use error::Result;
22pub use presentation::*;
23pub use resolver::Resolver;
24pub use status::*;
25pub use token::*;