[package]
edition = "2021"
name = "statica-cli"
version = "0.47.5"
authors = ["statica"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A blazingly fast static site generator that builds on just HTML"
homepage = "https://github.com/statica/statica"
documentation = "https://docs.rs/statica-cli"
readme = "README.md"
keywords = [
"ssg",
"static-site",
"html",
"cli",
]
categories = [
"command-line-utilities",
"web-programming",
]
license = "MIT"
repository = "https://github.com/statica/statica"
[[bin]]
name = "statica"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.7"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.local-ip-address]
version = "0.6"
[dependencies.notify]
version = "6"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.statica]
version = "0.47.5"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
"net",
"signal",
]
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.5"
features = ["fs"]
[build-dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[build-dependencies.clap_mangen]
version = "0.2"