Initial commit.

Signed-off-by: Andreas Widen <aw@luflow.net>
This commit is contained in:
Andreas Widen 2026-07-27 17:57:03 +02:00
commit a4a5c7daa5
Signed by: hfsoulz
GPG key ID: 5B85F9B5F576A667
1389 changed files with 241399 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[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"] }