1//! tj-core: append-only event log + derived SQLite state for Task Journal. 2 3#![deny(rust_2018_idioms)] 4 5pub mod classifier; 6pub mod db; 7pub mod event; 8pub mod pack; 9pub mod paths; 10pub mod project_hash; 11pub mod storage;