[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "chrono", "uuid", "json"]
version = "0.8"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
features = ["v4", "serde"]
version = "1.0"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"
[[example]]
name = "mysql_example"
path = "examples/mysql_example.rs"
[[example]]
name = "postgres_example"
path = "examples/postgres_example.rs"
[features]
default = []
mysql = ["sqlx/mysql"]
postgres = ["sqlx/postgres"]
[lib]
name = "hammerwork"
path = "src/lib.rs"
[package]
authors = ["CodingAnarchy <noreply@codinganarchy.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous", "concurrency"]
description = "A database-driven job queue for Rust with Postgres and MySQL support"
documentation = "https://docs.rs/hammerwork"
edition = "2021"
homepage = "https://github.com/CodingAnarchy/hammerwork"
keywords = ["database", "job-queue", "async", "postgres", "mysql"]
license = "MIT"
name = "hammerwork"
readme = "README.md"
repository = "https://github.com/CodingAnarchy/hammerwork"
version = "0.1.0"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"