edda-ledger 0.1.0

Append-only SQLite ledger with hash-chained events for Edda
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod blob_meta;
pub mod blob_store;
pub mod ledger;
pub mod lock;
pub mod paths;
pub mod sqlite_store;
pub mod tombstone;

pub use blob_meta::{BlobClass, BlobMetaEntry, BlobMetaMap, ClassChange};
pub use blob_store::{
    blob_archive, blob_get_path, blob_is_archived, blob_list, blob_list_archived,
    blob_put_classified, blob_remove, blob_size, BlobInfo,
};
pub use ledger::Ledger;
pub use lock::WorkspaceLock;
pub use paths::EddaPaths;
pub use sqlite_store::DecisionRow;
pub use tombstone::{append_tombstone, list_tombstones, make_tombstone, DeleteReason, Tombstone};