[package]
edition = "2024"
name = "hyperchad_docs_site"
version = "0.4.0"
authors = ["Braden Steffaniak"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HyperChad documentation site framework"
readme = "README.md"
keywords = [
"documentation",
"hyperchad",
"site",
]
categories = ["web-programming"]
license = "MPL-2.0"
repository = "https://github.com/MoosicBox/MoosicBox"
[features]
actix = ["hyperchad/renderer-html-actix"]
assets = ["hyperchad/renderer-assets"]
default = [
"assets",
"html",
"static-routes",
"vanilla-js",
]
fail-on-warnings = [
"hyperchad/fail-on-warnings",
"hyperchad_docs_config/fail-on-warnings",
]
html = ["hyperchad/renderer-html"]
static-routes = ["hyperchad/router-static-routes"]
vanilla-js = [
"html",
"hyperchad/renderer-vanilla-js",
"hyperchad/renderer-vanilla-js-plugin-actions-click",
"hyperchad/renderer-vanilla-js-plugin-actions-click-outside",
"hyperchad/renderer-vanilla-js-plugin-nav",
"hyperchad/renderer-vanilla-js-plugin-routing",
]
[lib]
name = "hyperchad_docs_site"
path = "src/lib.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"help",
"std",
"usage",
]
[dependencies.hyperchad]
version = "0.4.0"
features = [
"actions",
"actions-logic",
"app",
"color",
"markdown",
"markdown-syntax-highlighting",
"markdown-xss-protection",
"renderer",
"router",
"template",
"transformer",
"transformer-models",
]
default-features = false
[dependencies.hyperchad_docs_config]
version = "0.4.0"
default-features = false