krafna 0.5.6

Krafna is a terminal-based alternative to Obsidian's Dataview plugin, allowing you to query your Markdown files using standard SQL syntax.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod data_fetcher;
pub mod executor;
pub mod parser;
pub mod peekable_deque;
pub mod serializer;

// Re-export important items from submodules
pub use data_fetcher::fetch_data;
pub use parser::{ExpressionElement, FieldValue, Function, FunctionArg, Query};
pub use peekable_deque::PeekableDeque;