[package] name = "jobq" version = "0.1.0" authors = ["cetra3 "] license = "MIT/Apache-2.0" description = "A Background Job Queue using Tokio, PostgreSQL & ZeroMQ" edition = "2018" repository = "https://github.com/cetra3/jobq" readme = "README.md" [dependencies] tokio-postgres = { version = "0.5.3", features = ["with-chrono-0_4", "with-uuid-0_8", "with-serde_json-1"]} futures = "0.3.4" tokio = { version = "0.2.13", features = ["full"] } anyhow = "1.0.27" structopt = "0.3.12" pretty_env_logger = "0.2" log = "0.4.8" serde = "1.0.105" serde_json = "1.0.48" serde_cbor = "0.11.1" serde_derive = "1.0.105" uuid = { version = "0.8.1", features = ["serde", "v4"] } chrono = "0.4.11" tmq = "0.2.0" postgres-types = { version = "0.1", features = ["derive"] } async-trait = "0.1.24"