-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 876 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
[package]
name = "rust-actix-rest-api-boilerplate"
version = "0.2.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.0.0-beta.15"
actix-cors = "0.6.0-beta.6"
actix-http = "3.0.0-beta.15"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
config = "0.11"
slog = "2.7.0"
slog-term = "2.8.0"
slog-async = "2.7.0"
slog-json = "2.4.0"
chrono = { version = "0.4", features = ["serde"] }
sqlx = { version = "0.5", features = ["runtime-actix-native-tls", "uuid", "postgres", "chrono", "json"] }
uuid = { version = "0.8", features = ["v4", "serde"] }
redis = { version = "0.21", features = ["tokio-comp"] }
mobc = "0.7"
regex = "1"
futures = "0.3"
md5 = "0.7"
sha2 = "0.10"
jsonwebtoken = "7"
aes = "0.7"
block-modes = "0.8"
base64 = "0.13"
rand = "0.8"
bytebuffer = "0.2"