-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (41 loc) · 983 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "autoswappr_backend"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "autoswappr_backend"
[dependencies]
axum = "0.7.9"
tokio = { version = "1.41.1", features = ["full"] }
reqwest = { version = "0.12.9", features = ["json"] }
tower-http = { version = "0.6.1", features = [
"trace",
"timeout",
"request-id",
"cors",
"normalize-path",
"fs",
] }
dotenvy = "0.15.7"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
tower = "0.5.1"
serde = { version = "1.0.215", features = ["derive"] }
anyhow = "1.0.93"
sqlx = { version = "0.8.2", features = [
"postgres",
"runtime-tokio-rustls",
"macros",
"migrate",
"chrono",
"json",
"uuid",
] }
hyper = "1.5.1"
uuid = { version = "1.11.0", features = ["v7", "serde"] }
serde_json = "1.0.133"
thiserror = "2.0.3"
time = { version = "0.3.36", features = ["formatting", "parsing"] }