remax-backend-rs/Cargo.toml

31 lines
1.2 KiB
TOML

[package]
name = "remax-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenvy = "0.15.6"
dotenvy_macro = "0.15.1"
tokio = {version = "1.20.1", features = ["full"]}
reqwest = { version = "0.11.11", features = ["rustls-tls", "json", "blocking"], default-features = false }
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" ] }
dotenv = { version = "0.15.0" }
actix-web = {version = "4.1.0"}
actix-cors = "0.6.2"
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
actix-web-utils = { git = "https://git.franklinblanco.dev/franklinblanco/actix-web-utils.git" }
err = { git = "https://git.franklinblanco.dev/franklinblanco/err.git" }
dev-dtos = { git = "https://git.franklinblanco.dev/franklinblanco/dev-dtos.git" }
dev-communicators = { git = "https://git.franklinblanco.dev/franklinblanco/dev-communicators.git" }
dev-macros = { git = "https://git.franklinblanco.dev/franklinblanco/dev-macros.git" }
remax-types = { path = "../remax-types", features = ["sqlx"]}