omry-archiving 0.17.1

Archiving abstractions for the Omry project.
Documentation
//! Data structures and helper functions for flora's data archiving functionality
//! Note: This crate does not deal with anything directly related to search or DB operations.

/// Module for documents to be stored in the flora archive.
pub mod document;

pub mod record;

#[cfg(feature = "bincode")]
pub use bincode;
#[cfg(feature = "serde")]
pub use serde;

#[cfg(feature = "marshal")]
pub mod marshal;

pub use document::Document;

#[cfg(feature = "marshal")]
pub use marshal::Marshal;

pub use record::{Record, RecordMeta, RecordParams, ToRecord, datetime::ClientDateTimeRecord};