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

28 lines
666 B
TOML
Raw Normal View History

[package]
name = "simple-auth-server"
version = "0.1.0"
authors = ["mygnu <tech@hgill.io>"]
2019-03-29 21:43:03 +01:00
edition = "2018"
workspace = ".."
[dependencies]
2019-04-23 20:23:46 +02:00
actix = { version = "0.8.1", features = ["http"] }
2019-03-30 17:12:42 +01:00
actix-rt = "0.2.2"
2019-05-12 20:58:26 +02:00
actix-web = "1.0.0-beta.4"
actix-files = "0.1.0-beta.4"
2019-03-29 21:43:03 +01:00
bcrypt = "0.2.1"
chrono = { version = "0.4.6", features = ["serde"] }
diesel = { version = "1.3.3", features = ["postgres", "uuid", "r2d2", "chrono"] }
dotenv = "0.13.0"
2019-03-29 21:43:03 +01:00
derive_more = "0.14"
env_logger = "0.6.0"
2019-04-23 20:23:46 +02:00
jsonwebtoken = "6.0.0"
2019-03-29 21:43:03 +01:00
futures = "0.1.25"
r2d2 = "0.8.3"
serde_derive="1.0.80"
serde_json="1.0"
serde="1.0"
sparkpost = "0.5.2"
uuid = { version = "0.6.5", features = ["serde", "v4"] }