-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 954 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 954 Bytes
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
[package]
name = "kismesis"
description = "A static site generator with plugins and a custom markup language."
license-file = "LICENSE.md"
version = "0.5.0"
edition = "2021"
repository = "https://github.com/lilith-in-starlight/kismesis"
[dependencies]
colored = { version = "2.1.0", optional = true }
extism = { version = "1.0.0", optional = true }
extism-pdk = { version = "1.2.0", optional = true }
htmlize = "1.0.3"
serde = { version = "1.0.195", features=["derive"], optional = true }
serde_json = { version = "1.0.111", features = ["unbounded_depth"] , optional = true }
termsize = { version = "0.1.6", optional = true }
[features]
serde = ["dep:serde", "dep:serde_json"]
plugins = ["dep:extism", "serde"]
reporting = ["dep:colored", "dep:termsize"]
pdk = ["serde", "dep:extism-pdk"]
[profile.dev]
lto="off"
[lints.clippy]
enum_glob_use = "warn"
pedantic = {level="warn", priority=-1}
nursery = {level="warn", priority=-1}
unwrap_used = "warn"