tabularium 0.1.5

Markdown-oriented document store library (SQLite + Tantivy)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! JSON-RPC client (`reqwest`) for tabularium servers.
//!
//! This module is only available with the **`client`** Cargo feature.
//!
//! ## Application error codes
//!
//! See [`crate::jsonrpc_codes`] (e.g. [`crate::jsonrpc_codes::DUPLICATE_RESOURCE`] for conflicts).

mod client;

pub use client::{
    Client, DocumentBody, DocumentMetaRow, GrepLineRow, ListedEntryRow, SearchHitRow, ServerTest,
    StatRow, WcRow,
};