-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (34 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
46
[package]
name = "gaps-notifier-api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Http framework
axum = "0.7.4"
# Async
tokio = { version = "1", features = ["full"] }
# Protocol Handler
tower = { version = "0.4", features = ["util", "timeout"] }
tower-http = { version = "0.5.0", features = ["add-extension", "trace"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
#Serialization and Deserialization
serde = { version = "~1.0.193", features = ["derive"] }
serde_json = { version = "~1.0.108" }
# Discord
webhook = "2.1.2"
redis = { version = "0.24.0", features = ["tokio-comp", "aio", "connection-manager"] }
chrono = "0.4.34"
#jwt
jsonwebtoken = "9.2.0"
once_cell = "1.8"
# uuid
[dependencies.uuid]
version = "1.7.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]