2023-08-16 12:02:23 +00:00
|
|
|
[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"] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
actix-web = "4"
|
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
|
|
|
libinjection = "0.3.2"
|
|
|
|
sha2 = "0.10.2"
|
|
|
|
pbkdf2 = { version = "0.12", features = ["simple"] }
|
|
|
|
env_logger = "0.10"
|
|
|
|
log = "0.4"
|
|
|
|
clap = { version = "4.3.21", features = ["derive"] }
|
2023-08-16 16:05:54 +00:00
|
|
|
actix-web-httpauth = "0.8.0"
|
2023-08-17 19:09:30 +00:00
|
|
|
sqlx = { version = "0.7.1", features = ["runtime-tokio", "postgres", "chrono"] }
|
2023-08-16 17:27:22 +00:00
|
|
|
uuid = { version = "1.4.1", features = ["v4"] }
|
2023-08-16 22:24:29 +00:00
|
|
|
chrono = "0.4"
|
2023-08-16 23:10:01 +00:00
|
|
|
mail-send = "0.4.0"
|
|
|
|
regex = "1.9.3"
|