-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "api"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async
tokio = { version = "1.19.2", features = ["full"] }
async-trait = "0.1.56"
# Database
sqlx = { version = "0.6.3", features = [
"runtime-tokio-rustls",
"postgres",
"json",
"time",
"chrono",
"uuid"
] }
fred = { version = "5.1.0", features = ["subscriber-client", "serde-json"] }
# HTTP
axum = { version = "0.6.0-rc.4", features = ["ws", "headers"] }
reqwest = { version = "0.11", features = ["json"] }
# Serde
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.81"
serde_repr = "0.1.8"
serde_with = { version = "1.14.0", features = ["json"] }
uuid = { version = "1.0", features = ["serde", "v4"] }
# Logging
log = "0.4.17"
env_logger = "0.9.0"
# Security
tower-http = { version = "0.3.0", features = ["cors", "compression-full"] }
rust-argon2 = "1.0.0"
governor = "0.4.2"
validator = { version = "0.15", features = ["derive"] }
# Utility
dotenv = "0.15.0"
lazy_static = "1.4.0"
once_cell = "1.12.0"
nanoid = "0.4.0"
bitflags = "1.3.2"
regex = "1.5.6"
quick-error = "2.0.1"
futures = "0.3"
ctor = "0.1.22"
rs-snowflake = "0.6.0"
chrono = { version = "0.4.19", features = ["serde"] }
inter-struct = "0.2.0"
dashmap = "5.4.0"
rmp-serde = "1.1.1"
lazy-regex = "2.3.0"
# Docs
opg = { git = "https://github.com/abdulrahman1s/opg", rev = "0a9f7f8c791d522fc9bd25bda8e63cb4f270ecc8", features = ["chrono"] }