co-didcomm 0.8.0

COKIT fork of didcomm-rs — DIDComm messaging v2 implementation with modern crypto and WASM support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "raw-crypto")]
mod encryption;
mod getters;
#[cfg(feature = "raw-crypto")]
mod receive;
mod serialization;
mod time;

#[cfg(feature = "raw-crypto")]
pub(crate) use encryption::*;
pub(crate) use getters::*;
#[cfg(feature = "raw-crypto")]
pub(crate) use receive::*;
pub(crate) use serialization::*;
pub(crate) use time::*;