-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (39 loc) · 1.07 KB
/
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
35
36
37
38
39
40
[package]
name = "rustyink"
version = "0.2.1"
edition = "2021"
description = "Blazing fast static site generator"
authors = ["Arjun Komath <arjunkomath@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "/~https://github.com/arjunkomath/RustyInk"
keywords = ["static", "site", "generator"]
[dependencies]
anyhow = "1.0.71"
async-recursion = "1.0.4"
axum = "0.6.18"
chrono = "0.4.26"
clap = { version = "4.3.1", features = ["derive"] }
config = "0.13.3"
directories = "5.0.1"
fs_extra = "1.3.0"
futures-util = "0.3.28"
handlebars = "4.3.7"
html-minifier = "4.0.0"
md-5 = "0.10.5"
notify = "6.0.1"
notify-debouncer-mini = "0.4.1"
owo-colors = "3.5.0"
pulldown-cmark = "0.9.3"
rayon = "1.7.0"
regex = "1.8.3"
reqwest = { version = "0.11.18", features = ["json", "blocking"] }
serde = "1.0.163"
serde_json = { version = "1.0.96", features = ["preserve_order"] }
serde_yaml = "0.9.21"
sitewriter = "1.0.1"
slugify = "0.1.0"
tokio = { version = "1.28.2", features = ["full"] }
tokio-tungstenite = "0.20.1"
toml = "0.8.1"
tower-http = { version = "0.4.0", features = ["fs", "trace"] }
walkdir = "2.3.3"