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
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(any(feature = "cl", feature = "cl_native"))]
macro_rules! cl_type {
    ($ident:ident) => {
        $crate::anoncreds_clsignatures::$ident
    };
}

#[cfg(not(any(feature = "cl", feature = "cl_native")))]
macro_rules! cl_type {
    ($ident:path) => {
        serde_json::Value
    };
}