-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (26 loc) · 964 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
[package]
name = "rust-plus-htmx-playground"
version = "0.1.0"
edition = "2021"
authors = ["Mike Moolenaar <[email protected]>"]
repository = "https://github.com/MikeMoolenaar/RATH-stack"
[dependencies]
axum = { version = "0.8.1", features = ["form", "macros"] }
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6", features = ["fs","set-header"] }
serde = { version = "1.0.217", features = ["derive"] }
chrono = "0.4.39"
dotenv = "0.15.0"
tower = "0.5.2"
tower_governor = "0.6.0"
tower-sessions = "0.14.0"
tower-sessions-libsql-store = "0.4.0"
tower-livereload = "0.9.5"
minijinja = { version = "2.6.0", features = ["loader", "v_htmlescape", "multi_template"] }
# axum-htmx = "0.6.0"
# Can be removed once https://github.com/robertwayne/axum-htmx/pull/25 is merged
axum-htmx = { git = "https://github.com/kakalos12/axum-htmx.git" }
argon2 = "0.5.3"
time = "0.3.37"
libsql = "0.6.0"
html-minifier = "5.0.0"