[package]
edition = "2021"
name = "graphile_worker_runtime"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async runtime compatibility package for graphile_worker"
homepage = "https://docs.rs/graphile_worker_runtime"
documentation = "https://docs.rs/graphile_worker_runtime"
readme = "README.md"
keywords = []
categories = []
license-file = "LICENSE.md"
repository = "https://github.com/leo91000/graphile_worker_rs"
[features]
default = ["runtime-tokio"]
runtime-async-std = ["dep:async-std"]
runtime-tokio = ["dep:tokio"]
[lib]
name = "graphile_worker_runtime"
path = "src/lib.rs"
[dependencies.async-channel]
version = "2.5.0"
[dependencies.async-lock]
version = "3.4.2"
[dependencies.async-std]
version = "1.13.2"
optional = true
[dependencies.event-listener]
version = "5.4.1"
[dependencies.futures]
version = "0.3.32"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"time",
]
optional = true