-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (38 loc) · 860 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
35
36
37
38
39
40
41
[package]
name = "staple"
description = "powerful static site generator"
version = "0.3.2"
authors = ["Kilerd Chan <[email protected]>"]
license = "MIT"
edition = "2018"
readme= "readme.md"
repository = "https://github.com/Kilerd/staple"
[dependencies]
structopt = "0.3.3"
tera = "1.5.0"
serde = "1.0.101"
serde_derive = "1.0.101"
toml = "0.5.6"
thiserror = "1.0.2"
pest = "2.1.2"
pest_derive = "2.1.0"
chrono = { version = "0.4.9", features = ["serde"] }
log = "0.4.8"
notify = "4.0.14"
actix-web = "1.0.8"
actix-files = "0.1.6"
actix = "0.8.3"
actix-web-actors = "1.0.2"
copy_dir = "0.1.2"
console = "0.9.1"
pulldown-cmark = { version = "0.6.1", default-features = false }
url = "2.1.0"
regex = "1.3.9"
itertools = "0.9.0"
serde_json = "1.0.56"
env_logger = "0.7.1"
fs2 = "0.4.3"
walkdir = "2.3.1"
colored = "2.0.0"
[dev-dependencies]
tempfile = "3.1.0"