graphile_worker_database 0.1.3

Database driver abstraction for graphile_worker
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 = "graphile_worker_database"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Database driver abstraction for graphile_worker"
homepage = "https://docs.rs/graphile_worker"
documentation = "https://docs.rs/graphile_worker"
readme = "README.md"
keywords = [
    "jobs",
    "queue",
    "postgres",
    "worker",
]
categories = [
    "asynchronous",
    "database",
]
license = "MIT"
repository = "https://github.com/leo91000/graphile_worker_rs"

[features]
default = ["driver-sqlx"]
driver-sqlx = ["sqlx"]
driver-tokio-postgres = [
    "deadpool-postgres",
    "tokio",
    "tokio-postgres/runtime",
    "tokio-stream",
]
runtime-async-std = ["sqlx?/runtime-async-std"]
runtime-tokio = [
    "sqlx?/runtime-tokio",
    "tokio-postgres?/runtime",
]
tls-native-tls = ["sqlx?/tls-native-tls"]
tls-rustls = ["sqlx?/tls-rustls"]

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

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

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

[dependencies.deadpool-postgres]
version = "0.14.1"
optional = true

[dependencies.futures]
version = "0.3.32"

[dependencies.serde_json]
version = "1.0.149"

[dependencies.sqlx]
version = "0.8.6"
features = [
    "chrono",
    "postgres",
    "json",
    "macros",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.52.3"
features = [
    "rt",
    "sync",
]
optional = true

[dependencies.tokio-postgres]
version = "0.7.17"
features = [
    "array-impls",
    "with-chrono-0_4",
    "with-serde_json-1",
]
optional = true
default-features = false

[dependencies.tokio-stream]
version = "0.1.18"
features = ["sync"]
optional = true

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