this-me 0.1.7

Encrypted identity store CLI tool (this.me)
Documentation
1
2
3
4
5
6
7
8
9
10
// Storage-agnostic core API for this.me
// Exposes a generic Me<S: MeStore> over pluggable backends (Postgres, etc.)
pub mod model;
pub mod store;
pub mod me;
// Re-exports for ergonomic access from crate users:
// use this_me::core::{Me, MeStore, Entry, GetFilter};
pub use model::{Entry, GetFilter};
pub use store::MeStore;
pub use me::Me;