-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (37 loc) · 963 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
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "auth_api"
version = "0.1.0"
authors = ["Lzyct <hey.mudassir@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.8.0"
actix-rt = "2.10.0"
serde_json = "1.0.120"
env_logger = "0.11.3"
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
jsonwebtoken = "9.3.0"
base64 = "0.22.1"
derive_more = "0.99.18"
cargo-watch = "8.5.2"
diesel_migrations = "2.2.0"
bcrypt = "0.15.1"
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1.38", features = ["full"] }
[dependencies.diesel]
version = "2.2.1"
features = ["postgres", "r2d2", "uuid", "chrono"]
[dependencies.serde]
version = "1.0.204"
features = ["derive"]
[dependencies.chrono]
version = "0.4.38"
features = ["serde"]
[dependencies.uuid]
version = "1.10.0"
features = ["serde", "v4"]
[dependencies.validator]
version = "0.18.1"
features = ["derive"]