api/Cargo.toml

28 lines
836 B
TOML
Raw Permalink Normal View History

[package]
name = "nerdcult_api"
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.29", features = ["macros", "rt-multi-thread", "sync"] }
tokio-stream = { version = "0.1.3", features = ["sync"] }
anyhow = "1.0"
actix-web = "4"
serde = { version = "1.0.183", features = ["derive"] }
libinjection = "0.3.2"
sha2 = "0.10.2"
env_logger = "0.10"
log = "0.4"
actix-web-httpauth = "0.8.0"
sqlx = { version = "0.7.1", features = ["runtime-tokio", "postgres", "chrono"] }
uuid = { version = "1.4.1", features = ["v4"] }
chrono = "0.4"
mail-send = "0.4.0"
2023-08-23 16:16:36 +00:00
regex = "1.9.3"
argon2 = "0.5.2"
base64 = "0.21.3"
2023-12-07 14:37:42 +00:00
reqwest = { version = "0.11.22", default-features = false, features = ["stream", "rustls"] }
futures-util = "0.3.29"