-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
description = "Resumable state machine based Postgres tasks"
edition = "2021"
license = "MIT"
name = "pg_task"
repository = "https://github.com/imbolc/pg_task"
version = "1.0.0"
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["std", "serde"] }
code-path = "0.4"
num_cpus = "1"
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
source-chain = "0.1"
sqlx = { version = "0.9", features = [
"json",
"chrono",
"postgres",
"runtime-tokio",
"tls-rustls",
"uuid",
] }
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt", "sync", "time"] }
tracing = "0.1"
uuid = { version = "1", features = ["v4"] }
[dev-dependencies]
anyhow = "1"
dotenv = "0.15"
tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }