-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
26 lines (25 loc) · 911 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
[package]
name = "root"
version = "0.1.0"
edition = "2021"
[dependencies]
async-graphql = { version = "7.0.15", features = ["chrono"] }
async-graphql-axum = "7.0.6"
axum = "0.8.1"
chrono = { version = "0.4.38", features = ["clock"] }
serde = { version = "1.0.188", features = ["derive"] }
sqlx = { version = "0.8.3", features = ["chrono", "postgres", "runtime-tokio"] }
tokio = { version = "1.28.2", features = ["default", "macros", "rt-multi-thread"] } # For async tests
hmac = "0.12.1"
sha2 = "0.10.8"
hex = "0.4.3"
tower-http = { version = "0.6.1", features = ["cors"] }
tower = "0.5.1"
chrono-tz = "0.10.1"
serde_json = "1.0"
reqwest = { version = "0.12.12", features = ["json"] }
config = "0.15"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "time", "fmt", "std"] }
dotenv = "0.15.0"
time = { version = "0.3.37", features = ["formatting"] }