archimedes 0.4.0

High performance Rust/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ArchimedesError {
    #[error("Error occured while query: {0}")]
    SqlError(#[from] sqlx::Error),
    #[error("Error while serializing params: {0}")]
    JsonSerializeError(#[from] serde_json::Error),
}

pub type Result<T> = core::result::Result<T, ArchimedesError>;