-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (34 loc) · 1.15 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "actix-middleware-example"
version = "0.1.0"
authors = ["Hackerchai <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
http = "0.2.1"
actix = "0.13.0"
actix-rt = "2.7.0"
actix-web = "4.1.0"
actix-service = "2.0.2"
actix-cors = "0.6.1"
futures = "0.3.5"
failure = "0.1.8"
serde = "1.0.116"
serde_derive = "1.0.116"
serde_json = "1.0.57"
derive_more = "0.99.10"
chrono = { version = "0.4.18", features = ["serde"] }
diesel = { version = "1.4.5", features = ["postgres","r2d2", "chrono"] }
diesel_migrations = "1.4.0"
dotenv = "0.15.0"
env_logger = "0.9.0"
log = "0.4.11"
jsonwebtoken = "8.1.0"
bcrypt = "0.13.0"
csv = "1.1.3"
walkdir = "2.3.1"
diesel-adapter ="0.9.0"
uuid = {version = "1.1.2", features = ["v4"] }
# UPDATE AFTER LATEST RELEASE OF actix-casbin and actix-casbin-auth to CRATE.IO
actix-casbin-auth = {git = "https://github.com/casbin-rs/actix-casbin-auth", default-features = false, features = [ "runtime-tokio" ]}
actix-casbin= {git = "https://github.com/casbin-rs/actix-casbin.git", default-features = false, features = [ "runtime-tokio" ]}