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

27 lines
759 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]
2020-09-12 17:49:45 +02:00
actix-web = "3"
actix-identity = "0.3"
2020-04-29 20:21:47 +02:00
# FIXME: Specify the commit hash to use bindgen v0.50.
argonautica = { git = "https://github.com/bcmyers/argonautica", rev = "67fc8d8d7d67696cd8ca7a59b92531f06b089212" }
chrono = { version = "0.4.6", features = ["serde"] }
2019-12-07 18:59:24 +01:00
derive_more = "0.99.0"
2020-09-12 17:49:45 +02:00
diesel = { version = "1.4.5", features = ["postgres", "uuidv07", "r2d2", "chrono"] }
2020-04-07 18:18:52 +02:00
dotenv = "0.15"
env_logger = "0.7"
2019-12-07 18:59:24 +01:00
futures = "0.3.1"
r2d2 = "0.8"
2020-09-12 17:49:45 +02:00
lazy_static = "1.4.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"] }
2020-09-12 17:49:45 +02:00
time = "0.2"