1
0
mirror of https://github.com/actix/examples synced 2024-11-24 14:53:00 +01:00
examples/database_interactions/simple-auth-server/Cargo.toml
2021-02-26 00:57:58 +00:00

26 lines
612 B
TOML

[package]
name = "simple-auth-server"
version = "2.0.0"
authors = ["mygnu <tech@hgill.io>"]
edition = "2018"
workspace = "../.."
[dependencies]
actix-web = "3"
actix-identity = "0.3"
chrono = { version = "0.4.6", features = ["serde"] }
derive_more = "0.99.0"
diesel = { version = "1.4.5", features = ["postgres", "uuidv07", "r2d2", "chrono"] }
dotenv = "0.15"
env_logger = "0.8"
futures = "0.3.1"
r2d2 = "0.8"
rust-argon2 = "0.8"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sparkpost = "0.5.2"
uuid = { version = "0.8", features = ["serde", "v4"] }
time = "0.2"