headgate-testkit 0.1.0

A policy-aware distributed job queue with PostgreSQL, MySQL, and Redis backends.
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 = "2024"
name = "headgate-testkit"
version = "0.1.0"
authors = ["The headgate Authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A policy-aware distributed job queue with PostgreSQL, MySQL, and Redis backends."
homepage = "https://github.com/mujhtech/headgate"
readme = "README.md"
keywords = [
    "job-queue",
    "distributed-systems",
    "postgresql",
    "redis",
    "mysql",
]
categories = [
    "asynchronous",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mujhtech/headgate"

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

[[test]]
name = "database_mysql"
path = "tests/database_mysql.rs"

[[test]]
name = "database_postgres"
path = "tests/database_postgres.rs"

[[test]]
name = "database_redis"
path = "tests/database_redis.rs"

[[test]]
name = "memstore"
path = "tests/memstore.rs"

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

[dependencies.headgate-core]
version = "0.1.0"

[dependencies.headgate-migrate]
version = "0.1.0"

[dependencies.mysql_async]
version = "0.35"
features = ["minimal"]
default-features = false

[dependencies.redis]
version = "0.27"
features = [
    "tokio-comp",
    "connection-manager",
]

[dependencies.tokio]
version = "1"
features = ["rt"]

[dependencies.tokio-postgres]
version = "0.7"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "time",
]