backie/Cargo.toml

25 lines
740 B
TOML
Raw Normal View History

2021-05-30 08:35:00 +00:00
[package]
name = "fang"
version = "0.6.0"
2021-05-30 08:35:00 +00:00
authors = ["Ayrat Badykov <ayratin555@gmail.com>"]
2021-06-24 10:15:10 +00:00
description = "Background job processing library for Rust"
repository = "https://github.com/ayrat555/fang"
2021-05-30 08:35:00 +00:00
edition = "2018"
license = "MIT"
2021-06-24 10:15:10 +00:00
readme = "README.md"
rust-version = "1.62"
2021-05-30 08:35:00 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-11-30 07:31:11 +00:00
diesel = { version = "1.4", features = ["postgres", "serde_json", "chrono", "uuidv07", "r2d2"] }
2021-06-12 12:59:09 +00:00
diesel-derive-enum = { version = "1", features = ["postgres"] }
2021-11-30 07:31:11 +00:00
dotenv = "0.15"
2021-06-06 08:44:46 +00:00
uuid = { version = "0.8", features = ["v4"] }
chrono = "0.4"
2022-06-04 19:24:56 +00:00
serde_json = "1"
typetag = "0.2"
2021-11-30 07:31:11 +00:00
log = "0.4"
2022-06-04 19:24:56 +00:00
serde = { version = "1", features = ["derive"] }
thiserror = "1.0"