dodo 0.3.1

Basic persistence library designed to be a quick and easy way to create a persistent storage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Prelude. Re-exports most used structs and traits.

#[doc(no_inline)]
pub use crate::{Collection, Cursor, Entity, Index};
#[cfg(feature = "directory")]
#[doc(no_inline)]
pub use crate::Directory;
#[cfg(feature = "json")]
#[doc(no_inline)]
pub use crate::JsonSerializer;
#[cfg(feature = "yaml")]
#[doc(no_inline)]
pub use crate::YamlSerializer;