-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (34 loc) · 1022 Bytes
/
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 = "axum-middleware-example"
version = "0.1.0"
authors = ["SiddheshKanawade <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.5.13"
axum-macros = "0.2.3"
futures = "0.3.5"
failure = "0.1.8"
serde = "1.0.116"
async-std = "1.10.0"
serde_derive = "1.0.116"
serde_json = "1.0.57"
derive_more = "0.99.10"
diesel = { version = "1.4.5", features = ["postgres","r2d2", "chrono"] }
diesel_migrations = "1.4.0"
dotenv = "0.15.0"
env_logger = "0.9.0"
http = "0.2.8"
http-body = "0.4.5"
log = "0.4.11"
jsonwebtoken = "8.1.0"
bcrypt = "0.13.0"
csv = "1.1.3"
walkdir = "2.3.1"
tower = { version = "0.4", features = ["full"] }
diesel-adapter = "0.9.0"
bytes = "1.1.0"
uuid = {version = "1.1.2", features = ["v4"] }
chrono = { version = "0.4.18", features = ["serde"] }
tokio = { version = "1.17.0", features = [ "full" ] }
axum-casbin-auth = {git = "https://github.com/casbin-rs/axum-casbin-auth"}