-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
44 lines (39 loc) · 1.39 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
[package]
name = "blades"
version = "0.6.0"
authors = ["Maroš Grego <[email protected]>"]
edition = "2021"
description = "Blazing fast dead simple static site generator"
repository = "https://github.com/grego/blades"
keywords = ["website", "site", "generator"]
categories = ["command-line-utilities", "web-programming"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://getblades.org"
[dependencies]
ramhorns = "^1.0.1"
arrayvec = { version = "0.7", features = ["serde"] }
beef = { version = "0.5", features = ["impl_serde"]}
serde = { version = "^1.0.126", features = ["derive"] }
chrono = { version = "^0.4.19", features = ["std", "serde"], default-features = false }
fnv = "1.0"
hashbrown = { version = "0.15", features = ["inline-more", "serde", "raw-entry"], default-features = false }
pulldown-cmark = { version = "0.12", default-features = false, features = ["html"] }
cmark-syntax = "^0.6"
# Cargo doesn't support binary-only dependencies yet.
toml = { version = "0.5.9", optional = true }
thiserror = { version = "2", optional = true }
serde_json = { version = "1", optional = true }
serde-cmd = { version = "0.1.3", optional = true }
[features]
bin = ["toml", "thiserror", "serde_json", "serde-cmd"]
mathml = ["cmark-syntax/latex2mathml"]
default = ["bin", "mathml"]
[profile.release]
lto = true
opt-level = 3
strip = "debuginfo"
panic = "abort"
codegen-units = 1
[profile.bench]
lto = true