backie/Cargo.toml

31 lines
904 B
TOML
Raw Permalink Normal View History

2021-05-30 08:35:00 +00:00
[package]
name = "backie"
2023-03-14 15:41:46 +00:00
version = "0.6.0"
2023-03-04 18:07:17 +00:00
authors = [
2023-03-05 00:19:35 +00:00
"Rafael Caricio <rafael@caricio.com>",
2023-03-04 18:07:17 +00:00
]
2023-03-12 17:38:54 +00:00
description = "Background task processing for Rust applications with Tokio, Diesel, and PostgreSQL."
2023-03-12 17:42:12 +00:00
keywords = ["async", "background", "task", "jobs", "queue"]
2023-03-12 17:38:54 +00:00
repository = "https://github.com/rafaelcaricio/backie"
2022-07-17 06:10:32 +00:00
edition = "2021"
2021-05-30 08:35:00 +00:00
license = "MIT"
2021-06-24 10:15:10 +00:00
readme = "README.md"
2023-03-04 18:07:17 +00:00
rust-version = "1.67"
2021-05-30 08:35:00 +00:00
[dependencies]
2021-06-06 08:44:46 +00:00
chrono = "0.4"
2021-11-30 07:31:11 +00:00
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
uuid = { version = "1.1", features = ["v4", "serde"] }
2023-03-05 00:19:35 +00:00
async-trait = "0.1"
2023-03-09 15:59:45 +00:00
futures = "0.3"
2023-03-05 00:19:35 +00:00
diesel = { version = "2.0", features = ["postgres", "serde_json", "chrono", "uuid"] }
diesel-derive-newtype = "2.0.0-rc.0"
2023-03-05 00:19:35 +00:00
diesel-async = { version = "0.2", features = ["postgres", "bb8"] }
tokio = { version = "1.25", features = ["rt", "time", "macros"] }
2023-03-11 16:49:23 +00:00
[dev-dependencies]
itertools = "0.10"