mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-26 22:20:19 +00:00
245003a5d4
* create static site generation helpers in the router crate * work on integrating static site generation into fullstack * move ssg into a separate crate * integrate ssg with the launch builder * simplify ssg example * fix static_routes for child routes * move CLI hot reloading websocket code into dioxus-hot-reload * fix some unused imports * use the same hot reloading websocket code for fullstack * fix fullstack hot reloading * move cli hot reloading logic into the hot reload crate * ssg example working with dx serve * add more examples * fix clippy * fix formatting * fix hot reload doctest imports * fix axum imports * don't run server doc tests * Fix hot reload websocket doc examples
17 lines
440 B
TOML
17 lines
440 B
TOML
[package]
|
|
name = "github-pages-static-generation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus = { workspace = true, features = ["static-generation", "router"] }
|
|
tower = { workspace = true, features = ["util"] }
|
|
tracing-subscriber = "0.3.18"
|
|
|
|
[features]
|
|
default = []
|
|
server = ["dioxus/axum"]
|
|
web = ["dioxus/web"]
|