Merge branch 'master' into v2_lib

This commit is contained in:
Julien Cretin
2020-10-23 17:20:19 +02:00
2 changed files with 687 additions and 0 deletions

View File

@@ -345,14 +345,18 @@
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
#[macro_use]
extern crate alloc;
#[macro_use]
mod bitfield;
mod buffer;
mod format;
mod storage;
mod store;
pub use self::buffer::{BufferCorruptFunction, BufferOptions, BufferStorage};
pub use self::storage::{Storage, StorageError, StorageIndex, StorageResult};
pub use self::store::{StoreError, StoreResult};