-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (38 loc) · 1.04 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
37
38
39
[package]
name = "fws"
version = "0.1.0"
edition = "2021"
[dependencies]
diesel = { version = "2.1.0", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"] }
diesel-async = { version = "0.4.1", features = ["postgres"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
dotenv = "0.15.0"
uuid = { version = "1.4.1", features = ["serde", "v4"] }
chrono = { version = "0.4.26", features = ["serde"] }
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
serde_yaml = "0.9.34"
thiserror = "1.0.44"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = "0.1"
jsonwebtoken = "9.3.0"
actix-web = "4.0"
env_logger = "0.11.5"
bcrypt = "0.15.1"
log = "0.4.22"
futures = "0.3.30"
aes = "0.7"
block-modes = "0.8"
block-padding = "0.2"
hex = "0.4.1"
rand = "0.8.5"
actix-cors = "0.6.4"
lazy_static = "1.4.0"
reqwest = { version = "0.12.5", features = ["json", "blocking", "multipart"] }
tempfile = "3.10.0"
async-stream = "0.3"
bytes = "1.0"
regex = "1.11.0"
mime_guess = "2.0.4"
url = "2.4.1"
base64 = "0.22.1"