generated from alecodes/base-template
wip: change assets handling to vite-rs
This commit is contained in:
parent
6cf98d1f1a
commit
adbade7411
26 changed files with 761 additions and 112 deletions
15
Cargo.toml
15
Cargo.toml
|
|
@ -3,6 +3,9 @@ name = "compendium"
|
|||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[features]
|
||||
bundled = []
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.8.1", features = ["macros"] }
|
||||
axum-htmx = { version = "0.7.0", features = ["auto-vary", "serde", "guards"] }
|
||||
|
|
@ -12,14 +15,15 @@ figment = { version = "0.10.19", features = ["env", "toml"] }
|
|||
mime_guess = "2.0.5"
|
||||
minijinja = { version = "2.7.0", features = ["loader"] }
|
||||
minijinja-embed = "2.7.0"
|
||||
minijinja-autoreload = "2.9.0"
|
||||
notify = "8.0.0"
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
sqlx = { version = "0.8.3", features = [
|
||||
"chrono",
|
||||
"derive",
|
||||
"json",
|
||||
"postgres",
|
||||
"runtime-tokio",
|
||||
"chrono",
|
||||
"derive",
|
||||
"json",
|
||||
"postgres",
|
||||
"runtime-tokio",
|
||||
] }
|
||||
thiserror = "2.0.11"
|
||||
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
|
||||
|
|
@ -27,6 +31,7 @@ tower-http = { version = "0.6.2", features = ["fs", "trace"] }
|
|||
tower-livereload = "0.9.6"
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||||
vite-rs = "0.1.0"
|
||||
|
||||
[build-dependencies]
|
||||
minijinja-embed = "2.7.0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue