rskit-storage-gcs 0.2.0-alpha.3

Google Cloud Storage backend for rskit-storage
Documentation
1
2
3
4
5
6
7
8
9
10
//! Google Cloud Storage backend for [`rskit_storage`].
//!
//! This crate implements [`rskit_storage::store::FileStore`] without adding Google Cloud dependencies to the core storage crate.
//! Importing it has no side effects; applications call [`register`] with the registry they own.

#![warn(missing_docs)]

mod store;

pub use store::{Config, register};