-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 883 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 883 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
[package]
name = "pgadmin-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.8"
tokio = { version = "1.0", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
askama = "0.14"
tower = "0.5"
tower-http = { version = "0.6", features = ["fs", "trace", "cors"] }
axum-extra = { version = "0.10", features = ["cookie"] }
sha2 = "0.10"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dotenvy = "0.15"
chrono = { version = "0.4", features = ["serde"] }
csv = "1.3"
uuid = { version = "1.6", features = ["v4", "serde"] }
governor = "0.6"
parking_lot = "0.12"
[dev-dependencies]
tokio-test = "0.4"
pretty_assertions = "1.4"
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"