-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
49 lines (45 loc) · 964 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
42
43
44
45
46
47
48
49
[package]
name = "bracket"
version = "0.11.0"
description = "Fast and correct handlebars-compatible template engine"
authors = ["muji <muji@tmpfs.org>"]
edition = "2018"
repository = "https://github.com/uwe-app/bracket"
license = "MIT OR Apache-2.0"
readme = "README.md"
[dependencies]
thiserror = "^1.0"
logos = "0.11.4"
log = { version = "^0.4", optional = true }
serde = "^1.0"
serde_json = "^1.0"
unicode-width = "^0.1"
dyn-clone = "^1.0"
self_cell= "0.10.0"
[dev-dependencies]
pretty_env_logger = "0.4"
[features]
default = ["helpers", "fs", "links"]
helpers = [
"log-helper",
"json-helper",
"logical-helper",
"lookup-helper",
"each-helper",
"with-helper",
"conditional-helper",
"comparison-helper",
]
log-helper = ["log"]
json-helper = []
logical-helper = []
lookup-helper = []
each-helper = []
with-helper = []
conditional-helper = []
comparison-helper = []
#stream = []
fs = []
links = []
[package.metadata.docs.rs]
all-features = true