blueprint-stores 0.2.0-alpha.2

Storage providers for Tangle Blueprints
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Storage providers for the Blueprint SDK
//!
//! ## Features
#![doc = document_features::document_features!()]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc(
    html_logo_url = "https://cdn.prod.website-files.com/6494562b44a28080aafcbad4/65aaf8b0818b1d504cbdf81b_Tnt%20Logo.png"
)]

pub mod error;
pub use error::Error;

#[cfg(feature = "local")]
pub use blueprint_store_local_database as local_database;