1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

23 lines
524 B
TOML
Raw Normal View History

[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"
[dependencies]
2022-02-25 21:07:22 +00:00
actix-web = "4"
2022-03-04 16:28:40 +00:00
actix-identity = "0.4"
2020-09-12 16:49:45 +01:00
2022-03-06 00:15:16 +00:00
chrono = { version = "0.4", features = ["serde"] }
derive_more = "0.99.5"
2022-07-09 22:54:51 +01:00
diesel = { version = "1.4", features = ["postgres", "uuidv07", "r2d2", "chrono"] }
2020-04-08 01:18:52 +09:00
dotenv = "0.15"
2022-03-06 00:15:16 +00:00
env_logger = "0.9"
r2d2 = "0.8"
2022-03-06 00:15:16 +00:00
rust-argon2 = "1"
lazy_static = "1.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sparkpost = "0.5"
2022-07-09 22:54:51 +01:00
uuid = { version = "0.8", features = ["v4", "serde"] }
2022-03-06 00:15:16 +00:00
time = "0.3"