backie/Cargo.toml

23 lines
710 B
TOML
Raw Normal View History

2021-05-30 08:35:00 +00:00
[package]
name = "fang"
2021-08-22 18:29:27 +00:00
version = "0.4.1"
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"
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]
diesel = { version = "1.4.6", features = ["postgres", "serde_json", "chrono", "uuidv07", "r2d2"] }
2021-06-12 12:59:09 +00:00
diesel-derive-enum = { version = "1", features = ["postgres"] }
2021-06-05 11:39:19 +00:00
dotenv = "0.15.0"
2021-06-06 08:44:46 +00:00
uuid = { version = "0.8", features = ["v4"] }
chrono = "0.4"
serde_json = "1.0"
2021-06-20 08:10:02 +00:00
typetag = "0.1"
2021-06-23 05:32:35 +00:00
log = "0.4.0"
2021-06-20 08:10:02 +00:00
serde = { version = "1.0", features = ["derive"] }