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