1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/simple-auth-server/Cargo.toml

25 lines
624 B
TOML
Raw Normal View History

[package]
name = "simple-auth-server"
2019-12-07 18:59:24 +01:00
version = "2.0.0"
authors = ["mygnu <tech@hgill.io>"]
2019-03-29 21:43:03 +01:00
edition = "2018"
workspace = ".."
[dependencies]
2019-12-20 17:30:26 +01:00
actix-identity = "0.2.0"
2019-12-25 17:48:33 +01:00
actix-web = "2.0.0"
2019-12-15 18:07:17 +01:00
actix-rt = "1.0.0"
argonautica = "0.2.0"
chrono = { version = "0.4.6", features = ["serde"] }
2019-12-07 18:59:24 +01:00
derive_more = "0.99.0"
2020-03-28 02:47:54 +01:00
diesel = { version = "1.4.2", features = ["postgres", "uuidv07", "r2d2", "chrono"] }
dotenv = "0.14.1"
env_logger = "0.6"
2019-12-07 18:59:24 +01:00
futures = "0.3.1"
r2d2 = "0.8"
lazy_static = "1.3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sparkpost = "0.5.2"
2020-03-28 02:47:54 +01:00
uuid = { version = "0.8", features = ["serde", "v4"] }