cory-core 0.1.2

Core domain logic for Cory: Bitcoin RPC adapter, ancestry graph builder, labels, and caching.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! BIP-329 label management for Cory.
//!
//! Provides in-memory label storage with three file kinds
//! (PersistentRw, PersistentRo, BrowserRw), JSONL serialisation,
//! and recursive directory loading.

mod jsonl;
mod pack;
mod store;
mod types;

pub use store::LabelStore;
pub use types::{Bip329Record, Bip329Type, LabelFile, LabelFileKind, LabelStoreError};