-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (29 loc) · 865 Bytes
/
Cargo.toml
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
36
[package]
name = "ajobqueue"
version = "0.1.0"
edition = "2021"
[lib]
name = "ajobqueue"
[features]
postgres = ["sqlx"]
[workspace]
members = ["macro"]
[dependencies]
ajobqueue-macro = { path = "macro" }
async-channel = "1.6.1"
async-trait = "0.1.56"
chrono = "0.4.19"
erased-serde = "0.3.21"
indoc = "1.0.6"
serde = { version = "1.0.140", features = ["derive"] }
serde_json = "1.0.82"
thiserror = "1.0.31"
tokio = { version = "1.20.0", features = ["rt", "macros", "sync", "time", "rt-multi-thread"] }
typetag = { git = "https://github.com/jess-sol/typetag", branch = "next" }
# typetag = "0.2.1"
ulid = { version = "1.0.0", features = ["serde", "uuid"] }
# Postgres
sqlx = { version = "0.6.1", features = ["runtime-tokio-native-tls", "postgres", "chrono", "json", "uuid", "migrate"], optional = true }
log = "0.4.17"
[dev-dependencies]
env_logger = "0.9.0"