note-to-self-lib 0.1.0

Shared data model, crypto, and sync types for note-to-self.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod crypto;
pub mod model;
pub mod sync;

pub use crypto::{
    auth_token, checksum, decode_bytes, derive_journal_key, derive_keys, encode_bytes, open, seal,
    DerivedKeys,
};
pub use model::{
    extract_tags, Attachment, Entry, EntryKind, Hlc, HlcState, Manifest, ManifestEntry, Priority,
    TodoMeta,
};
pub use sync::{dirty_entries, SyncBlob, SyncRequest, SyncResponse};