identity_core/convert/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2020-2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Functionality for JSON conversion and Base de- and encoding.

pub use self::json::FmtJson;
pub use self::json::FromJson;
pub use self::json::ToJson;
pub use base_encoding::*;

mod base_encoding;
mod json;