-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (37 loc) · 980 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
[package]
authors = ["Moaz bin Mohamed Mokhtar <[email protected]>"]
edition = "2021"
name = "rust_training"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-cors = "0.6.1"
actix-identity = "0.4.0"
actix-service = "2.0.2"
actix-session = {version = "0.6.1", features = ["cookie-session"]}
actix-web = "4.0.1"
bcrypt = "0.12.0"
chrono = {version = "0.4.19", features = ["serde"]}
cookie = "0.16.0"
custom_error = "1.9.2"
derive_more = "0.99.17"
diesel = {version = "1.4.8", features = [
"uuidv07",
"postgres",
"r2d2",
"chrono",
]}
diesel_migrations = "1.4.0"
dotenv = "0.15.0"
env_logger = "0.9.0"
futures = "0.3.21"
jsonwebtoken = "8.0.1"
lettre = "0.9.6"
lettre_email = "0.9.4"
log = "0.4.14"
r2d2 = "0.8.9"
rand = "0.8.5"
random-string = "1.0.0"
serde = {version = "1.0.136", features = ["derive"]}
serde_json = "1.0.79"
uuid = {version = "0.8.2", features = ["serde", "v4"]}