-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1.17 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
[package]
name = "fullstack-axum"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.4"
chrono = "0.4.33"
config = "0.14.0"
garde = { version = "0.18.0", features = ["derive", "url"] }
hyper-util = { version = "0.1.2", features = ["client-legacy"] }
minijinja = { version = "1.0.12", features = ["loader"] }
polars = { version = "0.36.2", features = ["lazy", "csv", "dtype-date", "json", "serde-lazy", "strings", "timezones"] }
rand = "0.8.5"
serde = { version = "1.0.195", features = ["derive"] }
serde_derive = "1.0.196"
serde_json = "1.0.111"
sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio"] }
tokio = { version = "1.35.1", features = ["full"] }
tower = { version = "0.4.13", features = ["util", "tracing"] }
tower-http = { version = "0.5.1", features = ["fs", "trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
ureq = { version = "2.9.4", features = ["json"] }
url = "2.3.1"
uuid = { version = "1.7.0", features = ["v4"] }
[dev-dependencies]
http-body-util = "0.1.0"
pretty_assertions = "1.4.0"
rstest = "0.18.2"