-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (51 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "cuteness"
version = "0.9.10"
edition = "2021"
license = "GPL-3.0"
description = "Cute static site (+ server) generator with a bunch of plugins"
homepage = "https://github.com/blyxyas/cuteness"
readme = "README.md"
keywords = ["cuteness", "web", "site", "generator", "codegen"]
categories = ["web-programming"]
include = [
"Cargo.toml",
"Cargo.lock",
"README.md",
"src/*",
"defaults/*",
"assets/*",
]
exclude = [".idea/*"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
[dependencies]
anyhow = "1.0.70"
blake3 = "1.3.3"
clap = { version = "4.1.13", features = ["derive"] }
document-features = "0.2.7"
emojis = "0.5.2"
handlebars = { version = "4.3.6", features = ["dir_source"] }
home = "0.5.4"
lazy_static = "1.4.0"
pulldown-cmark = { version = "0.9.2" }
regex = "1.7.3"
rustc-hash = "2.0.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
toml = "0.7.3"
walkdir = "2.3.3"
yaml-front-matter = "0.1.0"
# FIXME: Change this to a configuration option
[features]
default = ["sass"]
#! ### Features
## Enables using *[Sass](https://sass-lang.com/)* as a preprocessor. It will preprocess your `.sass` files in `src/static` before copying them to the output directory.
##
## As a side effect, it also enables the configuration option `sassbin`[^2]
##
## [^2]: The option `sassbin` indicates the name of the Sass preprocessor binary. *(default: `sass`)*
sass = []