24 lines
726 B
TOML
24 lines
726 B
TOML
[package]
|
|
name = "flow-web"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["Andreas Widen <aw@luflow.net>"]
|
|
description = "flow-web is a program that will allow you to generate a static website."
|
|
license = "AGPL-3.0-or-later"
|
|
repository = "https://luflow.net/git/hfsoulz/flow-web.git"
|
|
readme = "README.md"
|
|
documentation = "https://luflow.net/git/hfsoulz/flow-web.git"
|
|
keywords = ["static", "site", "generator"]
|
|
exclude = [".github", "/ci/*", "*.log"]
|
|
|
|
[dependencies]
|
|
async-recursion = "1.1.1"
|
|
chrono = "0.4.45"
|
|
fern = "0.7.1"
|
|
humantime = "2.3.0"
|
|
log = "0.4.32"
|
|
markdown = "1.0.0"
|
|
regex = "1.12.4"
|
|
rich_rust = "0.2.1"
|
|
sailfish = "0.11.1"
|
|
tokio = { version = "1.52.3", features = ["macros", "fs", "io-util", "rt-multi-thread"] }
|