-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (32 loc) · 1.08 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
[package]
name = "conf-ops"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# web framework
rocket = { version = "0.5.0", features = ["secrets", "json", "uuid"] }
rocket_db_pools = { version = "0.1.0", features = ["diesel_mysql"] }
tokio = { version = "1", features = ["full"] }
# json
serde = { version = "1.0", features = ["derive"] }
# mysql
diesel = { version = "2.1.0", features = ["mysql", "chrono", "serde_json"] }
diesel_migrations = { version = "2.1.0", features = ["mysql"] }
diesel-async = { version = "0.4.1", features = ["mysql", "async-connection-wrapper", "deadpool", "tokio"]}
# uuid
uuid = { version = "1.7", features = ["v4"] }
# datetime
chrono = { version = "0.4", features = ["serde"] }
# email
lettre = { version = "0.11", features = ["smtp-transport", "native-tls", "tokio1", "tokio1-native-tls", "builder"] }
# jwt
jsonwebtoken = "9"
# hash
sha256 = { version = "1.5", features = ["async"] }
# image
image = "0.24"
# rate limiter
governor = "0.6.3"
# i18n
rust-i18n = "3"