-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (61 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
66 lines (61 loc) · 1.6 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "rustyll"
version = "0.1.0"
edition = "2021"
description = "A fast Jekyll-compatible static site generator written in Rust"
authors = ["Rustyll Team"]
[features]
default = []
tls = ["dep:tokio-rustls"]
[dependencies]
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
liquid = "0.26"
liquid-core = "0.26"
liquid-lib = { version = "0.26", features = ["stdlib"] }
walkdir = "2.4.0"
fs_extra = "1.3"
frontmatter = "0.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
toml = "0.8"
chrono = "0.4"
gray_matter = "0.2"
notify = { version = "8.0", features = ["serde"] }
axum = { version = "0.8", features = ["tracing"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["fs", "compression-gzip", "compression-br", "trace", "cors"] }
tokio = { version = "1.32", features = ["full"] }
tokio-rustls = { version = "0.26", optional = true }
hyper = { version = "1.1", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["server", "server-auto", "tokio"] }
tower-service = "0.3"
rustls = "0.23"
rustls-pemfile = "2.2"
mime_guess = "2.0"
glob = "0.3"
rayon = "1.8"
log = "0.4"
simple_logger = "5.0"
futures-core = "0.3"
futures-util = "0.3"
# For syntax highlighting and markdown
comrak = "0.39"
syntect = "5.1"
html-escape = "0.2"
regex = "1.10.3"
# For utility functions
urlencoding = "2.1"
slug = "0.1"
serde_json = "1.0"
csv = "1.1"
yaml-front-matter = "0.1.0"
yaml-rust = "0.4.5"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
panic = "abort"
strip = true
debug = false