gchdb 0.2.8

Provides a record abstraction for storing chat records extracted by different chat software, and provides full-text search feature
Documentation
#[macro_use]
extern crate diesel;
#[macro_use]
extern crate diesel_migrations;
#[macro_use]
extern crate tantivy;

mod adapter;
mod indexer;
mod schema;
mod types;
mod utils;

use types::*;
use utils::*;

pub use adapter::SqliteChatRecorder;
pub use indexer::ContentIndexer;
pub use types::{
    Attachments, Blob, ChatRecorder, ChatRecordError, MetadataMerger, Query, Record, RecordType,
};