[package]
edition = "2024"
rust-version = "1.85"
name = "zorto"
version = "0.23.1"
authors = ["Cody <cody@dkdc.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The AI-native static site generator (SSG) with executable code blocks"
homepage = "https://github.com/dkdc-io/zorto"
readme = "README.md"
keywords = [
"static-site",
"cms",
"markdown",
"tera",
]
categories = [
"command-line-utilities",
"web-programming",
]
license = "MIT"
repository = "https://github.com/dkdc-io/zorto"
resolver = "2"
[features]
app = ["dep:zorto-app"]
default = [
"embed-python",
"search",
"webapp",
"theme-zorto",
"theme-dkdc",
"theme-default",
"theme-ember",
"theme-forest",
"theme-ocean",
"theme-rose",
"theme-slate",
"theme-midnight",
"theme-sunset",
"theme-mint",
"theme-plum",
"theme-sand",
"theme-arctic",
"theme-lime",
"theme-charcoal",
]
embed-python = ["zorto-core/embed-python"]
python = ["zorto-core/python"]
search = ["zorto-core/search"]
theme-arctic = ["zorto-core/theme-arctic"]
theme-charcoal = ["zorto-core/theme-charcoal"]
theme-default = ["zorto-core/theme-default"]
theme-dkdc = ["zorto-core/theme-dkdc"]
theme-ember = ["zorto-core/theme-ember"]
theme-forest = ["zorto-core/theme-forest"]
theme-lime = ["zorto-core/theme-lime"]
theme-midnight = ["zorto-core/theme-midnight"]
theme-mint = ["zorto-core/theme-mint"]
theme-ocean = ["zorto-core/theme-ocean"]
theme-plum = ["zorto-core/theme-plum"]
theme-rose = ["zorto-core/theme-rose"]
theme-sand = ["zorto-core/theme-sand"]
theme-slate = ["zorto-core/theme-slate"]
theme-sunset = ["zorto-core/theme-sunset"]
theme-zorto = ["zorto-core/theme-zorto"]
webapp = ["dep:zorto-webapp"]
[lib]
name = "zorto"
path = "src/lib.rs"
[[bin]]
name = "zorto"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dialoguer]
version = "0.11"
[dependencies.notify]
version = "7"
[dependencies.notify-debouncer-mini]
version = "0.5"
[dependencies.open]
version = "5"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"sync",
"fs",
]
[dependencies.zorto-app]
version = "0.23.1"
optional = true
[dependencies.zorto-core]
version = "0.23.1"
default-features = false
[dependencies.zorto-webapp]
version = "0.23.1"
optional = true
[dev-dependencies.tempfile]
version = "3"