indy-data-types 0.7.1

Common data types for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org).
Documentation
#[macro_use]
mod macros;

/// Credential definitions
pub mod cred_def;

/// Credential offers
pub mod cred_offer;

/// Credential requests
pub mod cred_request;

/// Credentials
pub mod credential;

/// Identity link secret
#[cfg(any(feature = "cl", feature = "cl_native"))]
pub mod link_secret;

/// Nonce used in presentation requests
pub mod nonce;

/// Presentation requests
pub mod pres_request;

/// Presentations
pub mod presentation;

/// Revocation registries
pub mod rev_reg;

/// Revocation registry definitions
pub mod rev_reg_def;

#[cfg(any(feature = "rich_schema", test))]
/// Rich schemas
pub mod rich_schema;

/// V1 credential schemas
pub mod schema;

pub mod wql;