-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 798 Bytes
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 = "auth-service"
authors = ["smokingplaya", "riverfallmc"]
version = "0.1.5"
edition = "2021"
[dependencies]
anyhow = "1.0.95"
axum = "0.8.1"
data-encoding = "2.7.0"
adjust = "0.1.26"
dotenv = "0.15.0"
env_logger = "0.11.6"
hashbrown = "0.15.2"
hex = "0.4.3"
jsonwebtoken = "9.3.0"
lazy_static = "1.5.0"
log = "0.4.22"
rand = "0.8.5"
serde_json = "1.0.135"
sha2 = "0.10.8"
[dependencies.totp-rs]
version = "5.6.0"
features = ["qr"]
[dependencies.reqwest]
version = "0.12.12"
features = ["json"]
[dependencies.tokio]
version = "1.42.0"
features = ["full"]
[dependencies.chrono]
version = "0.4.39"
features = ["serde"]
[dependencies.diesel]
version = "2.2.0"
features = ["postgres", "r2d2", "chrono", "serde_json"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]