2018-12-09 16:55:36 +01:00
|
|
|
[package]
|
|
|
|
name = "simple-auth-server"
|
2022-02-02 02:45:20 +01:00
|
|
|
version = "1.0.0"
|
2022-02-02 02:43:51 +01:00
|
|
|
edition = "2021"
|
2018-12-09 16:55:36 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-02 21:33:43 +01:00
|
|
|
actix-identity.workspace = true
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-session = { workspace = true, features = ["cookie-session"] }
|
2023-03-14 04:11:49 +01:00
|
|
|
actix-web.workspace = true
|
2020-09-12 17:49:45 +02:00
|
|
|
|
2023-07-09 01:56:56 +02:00
|
|
|
chrono.workspace = true
|
2023-01-02 21:38:03 +01:00
|
|
|
derive_more.workspace = true
|
2022-09-11 00:33:09 +02:00
|
|
|
diesel = { version = "2", features = ["postgres", "r2d2", "uuid", "chrono"] }
|
2023-10-29 02:17:49 +02:00
|
|
|
dotenvy.workspace = true
|
2022-12-30 17:25:40 +01:00
|
|
|
env_logger.workspace = true
|
2023-03-14 04:11:49 +01:00
|
|
|
log = "0.4"
|
2022-09-11 17:14:07 +02:00
|
|
|
once_cell = "1"
|
2019-07-18 13:55:14 +02:00
|
|
|
r2d2 = "0.8"
|
2023-10-29 02:08:45 +02:00
|
|
|
rust-argon2 = "2"
|
2023-01-02 21:35:11 +01:00
|
|
|
serde_json.workspace = true
|
2023-03-14 04:11:49 +01:00
|
|
|
serde.workspace = true
|
2024-07-07 04:26:40 +02:00
|
|
|
sparklepost = "0.5"
|
2024-07-07 03:51:12 +02:00
|
|
|
time.workspace = true
|
2024-06-05 06:10:46 +02:00
|
|
|
uuid.workspace = true
|