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-01-02 20:38:03 +00:00
|
|
|
chrono = { version = "0.4.20", features = ["serde"] }
|
|
|
|
derive_more.workspace = true
|
2022-09-10 23:33:09 +01:00
|
|
|
diesel = { version = "2", features = ["postgres", "r2d2", "uuid", "chrono"] }
|
2020-04-08 01:18:52 +09:00
|
|
|
dotenv = "0.15"
|
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"
|
2022-03-06 00:15:16 +00:00
|
|
|
rust-argon2 = "1"
|
2023-01-02 20:35:11 +00:00
|
|
|
serde_json.workspace = true
|
2023-03-14 03:11:49 +00:00
|
|
|
serde.workspace = true
|
2022-03-06 00:15:16 +00:00
|
|
|
sparkpost = "0.5"
|
|
|
|
time = "0.3"
|
2023-03-14 03:11:49 +00:00
|
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|