2023-04-30 02:55:03 +00:00
|
|
|
[package]
|
|
|
|
name = "bl-backend"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = {version = "1.20.1", features = ["full"]}
|
|
|
|
chrono = "0.4.23"
|
|
|
|
chrono-tz = "0.8"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0.88"
|
|
|
|
sqlx = { version = "0.6.0", features = [ "runtime-tokio-rustls", "postgres", "chrono", "uuid", "offline" ] }
|
2023-04-30 18:32:34 +00:00
|
|
|
dotenvy = "0.15.6"
|
|
|
|
dotenvy_macro = "0.15.1"
|
2023-04-30 02:55:03 +00:00
|
|
|
actix-web = {version = "4.1.0"}
|
|
|
|
actix-cors = "0.6.2"
|
2023-04-30 18:32:34 +00:00
|
|
|
actix-web-lab = { version = "0.19.1", features = [ "spa" ]}
|
|
|
|
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }
|
2023-04-30 02:55:03 +00:00
|
|
|
|
|
|
|
actix-web-utils = { git = "https://git.franklinblanco.dev/franklinblanco/actix-web-utils.git" }
|
2023-04-30 18:32:34 +00:00
|
|
|
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
|
|
|
|
|
|
|
|
bl-types = { path = "../bl-types" }
|