-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 872 Bytes
/
Cargo.toml
File metadata and controls
34 lines (33 loc) · 872 Bytes
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
[package]
name = "flowrust_cms"
version = "4.1.0"
edition = "2024"
[dependencies]
actix-web = { version = "4", features = ["compress-gzip", "compress-brotli"] }
actix-files = "0.6"
tokio = { version = "1", features = ["full"] }
mongodb = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3"
dotenv = "0.15"
quick-xml = { version = "0.31", features = ["serialize"] }
tera = "1"
lazy_static = "1.4.0"
bcrypt = "0.15"
chrono = "0.4"
jsonwebtoken = "8"
actix-session = { version = "0.7", features = ["cookie-session"] }
actix-web-flash-messages = { version = "0.4", features = ["cookies"] }
url = "2"
reqwest = { version = "0.11", features = ["json"] }
urlencoding = "2.1"
uuid = { version = "1.0", features = ["v4"] }
image = "0.24"
webp = "0.2"
rand = "0.8"
html-escape = "0.2"
regex = "1.0"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.21"