-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 883 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 = "htmx-intro"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.20", features = ["headers", "json"] }
tokio = { version = "1.31.0", features = ["full"] }
tracing = "0.1.37"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
tower-http = { version = "0.4.3", features = ["fs", "compression-br", "trace"] }
tower = "0.4.13"
sqlx = { version = "0.7.1", features = ["runtime-tokio", "uuid", "postgres"] }
rand = "0.8.5"
shuttle-axum = "0.24.0"
shuttle-runtime = "0.24.0"
shuttle-static-folder = "0.24.0"
shuttle-shared-db = { version = "0.24.0", features = ["postgres"] }
anyhow = "1.0.75"
webauthn-rs = "0.4.8"
uuid = "1.4.1"
askama = { version = "0.12.0", features = ["with-axum", "serde-json"] }
askama_axum = "0.3.0"