-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (33 loc) · 953 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "wahoo"
version = "0.1.0"
edition = "2021"
description = "Static site generator based on Tera templating engine"
repository = "https://github.com/aspectron/wahoo"
license = "MIT OR Apache-2.0"
[dependencies]
ahash = "0.8.7"
async-std = "1.12.0"
cfg-if = "1.0.0"
clap = { version = "4.1.4", features = ["derive"] }
console = "0.15.5"
convert_case = "0.6.0"
duct = "0.13.6"
futures = "0.3.26"
globset = "0.4.10"
home = "0.5.4"
notify = {version="5.1.0"}
notify-debouncer-mini = {version="0.2.1", default-features = false}
pulldown-cmark = "0.9.2"
regex = "1.7.1"
serde = { version = "1.0.152" , features = ["derive"] }
serde_json = {version="1.0.91", features=["preserve_order"]}
tera = "1.17.1"
thiserror = "1.0.38"
tide = "0.16.0"
tide-websockets = "0.4.0"
tokio = { version = "1.25.0", features = ["full"] }
toml = {version = "0.7.1", features = ["preserve_order"]}
walkdir = "2.3.2"
workflow-core = "0.10.3"
workflow-i18n = "0.3.10"