1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/auth/simple-auth-server/Cargo.toml

23 lines
517 B
TOML
Raw Normal View History

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