criner 0.3.0

a platform for resumable mining of crates.io for knowledge and information
Documentation
#![allow(clippy::unneeded_field_pattern)]
#![deny(unsafe_code)]

#[macro_use]
extern crate lazy_static;

#[macro_use]
extern crate quick_error;

#[cfg(feature = "migration")]
pub mod migration;

pub mod error;
pub use error::{Error, Result};

pub mod export;
pub(crate) mod model;
pub(crate) mod persistence;
pub(crate) mod utils;

pub(crate) mod smol;

mod engine;

pub use engine::run;

pub use prodash;