fang 0.11.0

Background job processing library for Rust
Documentation
// Here you should put all the backends based on sqlx library
#[cfg(any(
    feature = "asynk-postgres",
    feature = "asynk-mysql",
    feature = "asynk-sqlite"
))]
pub mod backend_sqlx;

pub mod async_queue;
pub mod async_runnable;
pub mod async_worker;
pub mod async_worker_pool;

// Here you should put all the backends.
#[cfg(any(
    feature = "asynk-postgres",
    feature = "asynk-mysql",
    feature = "asynk-sqlite"
))]
pub use {async_queue::*, async_runnable::AsyncRunnable, async_worker::*, async_worker_pool::*};