backie/Cargo.toml

36 lines
905 B
TOML
Raw Normal View History

2021-05-30 08:35:00 +00:00
[package]
2023-03-05 00:19:35 +00:00
name = "frango"
version = "0.1.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-05 00:19:35 +00:00
description = "Async background job processing library with Diesel and Tokio"
repository = "https://code.caric.io/rafaelcaricio/frango"
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
[lib]
doctest = false
2021-05-30 08:35:00 +00:00
[dependencies]
cron = "0.12"
2021-06-06 08:44:46 +00:00
chrono = "0.4"
hex = "0.4"
2021-11-30 07:31:11 +00:00
log = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha2 = "0.10"
2022-06-04 19:24:56 +00:00
thiserror = "1.0"
typed-builder = "0.12"
typetag = "0.2"
uuid = { version = "1.1", features = ["v4"] }
2023-03-05 00:19:35 +00:00
async-trait = "0.1"
async-recursion = "1"
diesel = { version = "2.0", features = ["postgres", "serde_json", "chrono", "uuid"] }
diesel-derive-enum = { version = "2.0.1", features = ["postgres"] }
diesel-async = { version = "0.2", features = ["postgres", "bb8"] }
tokio = { version = "1.25", features = ["rt", "time", "macros"] }