backie/Cargo.toml

54 lines
1 KiB
TOML
Raw Normal View History

2021-05-30 08:35:00 +00:00
[package]
name = "fang"
version = "0.10.2"
2023-03-04 18:07:17 +00:00
authors = [
"Ayrat Badykov <ayratin555@gmail.com>",
"Pepe Márquez <pepe.marquezromero@gmail.com>",
"Rafael Caricio <rafael@caricio.com>"
]
2021-06-24 10:15:10 +00:00
description = "Background job processing library for Rust"
2023-03-04 18:07:17 +00:00
repository = "https://github.com/rafaelcaricio/fang"
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"] }
[dependencies.diesel]
version = "2.0"
features = ["postgres", "serde_json", "chrono", "uuid", "r2d2"]
[dependencies.diesel-derive-enum]
version = "2.0.1"
features = ["postgres"]
2023-03-04 18:07:17 +00:00
[dependencies.diesel-async]
version = "0.2"
features = ["postgres", "bb8"]
[dependencies.tokio]
version = "1.25"
features = ["rt", "time", "macros"]
[dependencies.async-trait]
version = "0.1"
[dependencies.async-recursion]
version = "1"