-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (42 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
40
41
42
43
44
45
46
47
48
[package]
name = "siberau_actix"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#SQL Related Dependencies
actix = "0.13.0"
actix-web = { version = "4.2.1", features = ["rustls-0_21"]}
dotenv = "0.15.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.86"
sqlx = { version = "0.7.1", features = ["runtime-async-std-native-tls", "postgres"] }
#Auth Related Dependencies
actix-web-httpauth = "0.8.1"
argon2 = "0.5.2"
hmac = "0.12.1"
jwt = "0.16.0"
sha2 = "0.10.6"
actix-cors = "0.6.4"
lettre = "0.11.0"
rand = "0.8.5"
chrono = "0.4.31"
#Filemanager Related Dependencies
tokio = { version = "1.28.2", features = ["full"] }
sysinfo = "0.29.2"
walkdir = "2.3.3"
fuzzy-matcher = "0.3.7"
rayon = "1.7.0"
dirs = "5.0.1"
notify = "6.0.1"
serde_bencode = "0.2.3"
zstd = "0.13.0"
lazy_static = "1.4.0"
open = "5.0.0"
thiserror = "1.0.40"
actix-files = "0.6.2"
actix-multipart = "0.6.1"
futures = "0.3.28"
#TLS
rustls = "0.21"
rustls-pemfile = "1"