blob: 2e5fb195271f6a8e22dbd2184e4dc70acbd93fd5 (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
edition = "2018"
name = "handlebars"
version = "3.5.5"
authors = ["Ning Sun <sunng@pm.me>"]
description = "Handlebars templating implemented in Rust."
homepage = "https://github.com/sunng87/handlebars-rust"
documentation = "https://docs.rs/crate/handlebars/"
readme = "README.md"
keywords = ["handlebars", "templating", "web"]
categories = ["template-engine"]
license = "MIT"
repository = "https://github.com/sunng87/handlebars-rust"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "handlebars"
path = "src/lib.rs"
[[bin]]
name = "handlebars-cli"
path = "src/cli.rs"
[[bench]]
name = "bench"
harness = false
[dependencies.log]
version = "0.4.0"
[dependencies.pest]
version = "2.1.0"
[dependencies.pest_derive]
version = "2.1.0"
[dependencies.quick-error]
version = "2.0"
[dependencies.rhai]
version = "0.18.1"
features = ["sync", "serde"]
optional = true
[dependencies.serde]
version = "1.0.0"
[dependencies.serde_json]
version = "1.0.39"
[dependencies.walkdir]
version = "2.2.3"
optional = true
[dev-dependencies.criterion]
version = "0.3"
[dev-dependencies.env_logger]
version = "0.7.1"
[dev-dependencies.maplit]
version = "1.0.0"
[dev-dependencies.pprof]
version = "0.3.13"
features = ["flamegraph", "protobuf"]
[dev-dependencies.serde_derive]
version = "1.0.75"
[dev-dependencies.tempfile]
version = "3.0.0"
[features]
default = []
dir_source = ["walkdir"]
no_logging = []
script_helper = ["rhai"]
[badges.maintenance]
status = "actively-developed"
|