]> luflow.net public git repositories - flow-web.git/blob - Cargo.toml
Initial commit.
[flow-web.git] / Cargo.toml
1 [package]
2 name = "flow-web"
3 version = "0.1.0"
4 edition = "2024"
5 authors = ["Andreas Widen <aw@luflow.net>"]
6 description = "flow-web is a program that will allow you to generate a static website."
7 license = "AGPL-3.0-or-later"
8 repository = "https://luflow.net/git-repos/flow-web.git"
9 readme = "README.md"
10 documentation = "https://luflow.net/git-repos/flow-web.git"
11 keywords = ["static", "site", "generator"]
12 exclude = [".github", "/ci/*", "*.log"]
13
14 [dependencies]
15 async-recursion = "1.1.1"
16 chrono = "0.4.45"
17 fern = "0.7.1"
18 humantime = "2.3.0"
19 log = "0.4.32"
20 markdown = "1.0.0"
21 regex = "1.12.4"
22 rich_rust = "0.2.1"
23 sailfish = "0.11.1"
24 tokio = { version = "1.52.3", features = ["macros", "fs", "io-util", "rt-multi-thread"] }