-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 802 Bytes
/
Cargo.toml
File metadata and controls
22 lines (20 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "pg-queue"
version = "0.1.0"
edition = "2021"
description = "PostgreSQL job queue, pub/sub, and cache using SKIP LOCKED and LISTEN/NOTIFY"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sub0xdai/pg-queue"
readme = "README.md"
keywords = ["postgresql", "queue", "pubsub", "cache", "async"]
categories = ["database", "asynchronous"]
[dependencies]
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio", "json", "chrono", "uuid"] }
tokio = { version = "1", features = ["rt", "time"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }