2024-05-22 12:24:15 +00:00
|
|
|
[package]
|
|
|
|
name = "dioxus-static-site-generation"
|
|
|
|
authors = ["Evan Almloff"]
|
|
|
|
version = { workspace = true }
|
|
|
|
edition = "2021"
|
|
|
|
description = "Static site generation for Dioxus"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
|
|
homepage = "https://dioxuslabs.com"
|
|
|
|
keywords = ["ui", "gui", "react", "ssg"]
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
dioxus-fullstack = { workspace = true }
|
|
|
|
dioxus-lib.workspace = true
|
|
|
|
dioxus-router = { workspace = true, features = ["fullstack"]}
|
2024-09-16 23:49:06 +00:00
|
|
|
dioxus-ssr = { workspace = true, optional = true }
|
|
|
|
dioxus-isrg = { workspace = true, optional = true }
|
2024-05-22 12:24:15 +00:00
|
|
|
axum = { workspace = true, features = ["ws", "macros"], optional = true }
|
|
|
|
tower-http = { workspace = true, features = ["fs"], optional = true }
|
|
|
|
dioxus-hot-reload = { workspace = true, features = ["serve"], optional = true }
|
|
|
|
dioxus-cli-config = { workspace = true, features = ["read-config"], optional = true }
|
|
|
|
dioxus-web = { workspace = true, features = ["hydrate"], optional = true }
|
|
|
|
tokio = { workspace = true, optional = true }
|
|
|
|
http = { workspace = true, optional = true }
|
|
|
|
tower = { workspace = true, features = ["util"], optional = true }
|
|
|
|
tracing.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
dioxus = { workspace = true }
|
2024-08-01 03:37:39 +00:00
|
|
|
criterion = { workspace = true }
|
2024-05-22 12:24:15 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2024-09-17 18:54:15 +00:00
|
|
|
server = ["dioxus-fullstack/server", "dioxus-router/ssr", "dep:dioxus-ssr", "dep:tokio", "dep:http", "dep:axum", "dep:tower-http", "dep:dioxus-hot-reload", "dep:dioxus-cli-config", "dep:tower", "dep:dioxus-isrg"]
|
2024-06-18 23:39:15 +00:00
|
|
|
web = ["dioxus-fullstack/web", "dioxus-router/web", "dep:dioxus-web"]
|
2024-05-28 20:05:55 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|