ishikari 0.1.1

Atomic, transaction-safe job queueing for Rust applications. Backed by PostgreSQL. Features include reliable background job execution, queue management, retry mechanisms, and flexible backoff strategies.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "ishikari"
version = "0.1.1"
authors = ["Sonny Scroggin <sonny@scrogg.in>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Atomic, transaction-safe job queueing for Rust applications. Backed by PostgreSQL. Features include reliable background job execution, queue management, retry mechanisms, and flexible backoff strategies."
readme = "README.md"
license = "MIT"
repository = "https://github.com/scrogson/ishikari"

[lib]
name = "ishikari"
path = "src/lib.rs"

[[example]]
name = "common"
path = "examples/common.rs"

[[example]]
name = "producer"
path = "examples/producer.rs"

[[example]]
name = "worker"
path = "examples/worker.rs"

[dependencies.anyhow]
version = "1.0.75"

[dependencies.async-trait]
version = "0.1.74"

[dependencies.chrono]
version = "0.4.31"
features = ["serde"]

[dependencies.figment]
version = "0.10.12"
features = [
    "env",
    "yaml",
]

[dependencies.futures]
version = "0.3.29"

[dependencies.ishikari-macros]
version = "0.1.1"

[dependencies.rand]
version = "0.8.5"

[dependencies.serde]
version = "1.0.193"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.108"

[dependencies.sqlx]
version = "0.8"
features = [
    "migrate",
    "runtime-tokio",
    "tls-rustls",
    "postgres",
    "chrono",
    "json",
]

[dependencies.tokio]
version = "1.34.0"
features = ["full"]

[dependencies.tracing]
version = "0.1.40"

[dependencies.tracing-subscriber]
version = "0.3.18"

[dependencies.typetag]
version = "0.2.13"