dbq 0.1.0

Job queueing and processing library with queues stored in Postgres 9.5+
Documentation
[package]
name = "dbq"
version = "0.1.0"
license = "MIT"
description = "Job queueing and processing library with queues stored in Postgres 9.5+"
authors = ["Dan Gallagher <dgllghr@fastmail.com>"]
edition = "2018"

[dependencies]
chrono = "0.4"
crossbeam-channel = "0.3"
env_logger = { version = "0.6", optional = true }
log = "0.4"
num_cpus = "1.0"
postgres = { version = "0.15", features = ["with-serde_json", "with-chrono"] }
serde = "1.0"
serde_json = "1.0"

[features]
integration_tests = ["env_logger"]